:root {
  --ink: #211d1b;
  --ivory: #f7f4f0;
  --paper: #eee9e3;
  --blush: #d6949a;
  --deep-blush: #a75d68;
  --line: rgba(33, 29, 27, .17);
  --serif: 'Italiana', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --display: 'Manrope', Arial, sans-serif;
  --pad: clamp(1.5rem, 5vw, 5.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: var(--ink); font-family: var(--sans); font-size: 16px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 20; padding: .75rem 1rem; background: var(--ink); color: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: absolute; z-index: 5; top: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem var(--pad); color: var(--ivory); }
.brand { font: 1.6rem/1 var(--serif); letter-spacing: -.06em; white-space: nowrap; }
.brand span { font-family: var(--display); font-size: .55em; letter-spacing: .23em; text-transform: uppercase; vertical-align: middle; }
.main-nav { display: flex; gap: 2rem; font: 500 .68rem/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }
.main-nav a, .header-cta { transition: opacity .3s ease; }
.main-nav a:hover, .header-cta:hover { opacity: .66; }
.header-cta { border-bottom: 1px solid currentColor; padding-bottom: .3rem; font: 500 .68rem/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }

.hero { position: relative; min-height: min(810px, 100svh); display: grid; grid-template-columns: .9fr 1.1fr; align-items: end; overflow: hidden; background: var(--ink); color: var(--ivory); }
.hero-image { position: absolute; inset: 0 0 0 43%; overflow: hidden; background: #382d2a; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,17,16,.52), rgba(22,17,16,.06)); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 51% center; filter: saturate(.64) contrast(1.04); will-change: transform, opacity; }
.hero-copy { position: relative; grid-column: 1; padding: 9rem 1rem 10.5rem var(--pad); max-width: 650px; }
.eyebrow, .section-index { margin: 0 0 1.25rem; font: 500 .64rem/1.4 var(--display); letter-spacing: .2em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; }
h1 { margin-bottom: 1.75rem; font-size: clamp(3.8rem, 5.5vw, 6rem); line-height: .85; }
h1 em, h2 em { color: var(--blush); font-style: normal; }
.hero-heading span, .hero-heading em { display: inline-block; }
.hero-heading > span { white-space: nowrap; }
.hero-intro { max-width: 29rem; margin-bottom: 2rem; color: rgba(247,244,240,.8); font-size: .95rem; line-height: 1.75; }
.button { display: inline-flex; align-items: center; gap: 1.5rem; padding: 1.05rem 1.2rem 1.05rem 1.4rem; font: 600 .67rem/1 var(--display); letter-spacing: .14em; text-transform: uppercase; transition: transform .3s ease, background-color .3s ease, color .3s ease; }
.button svg, .service-bottom svg { width: 1.2rem; fill: none; stroke: currentColor; stroke-width: 1.3; }
.button:hover { transform: translateY(-3px); }
.button-dark { background: var(--ivory); color: var(--ink); }
.button-dark:hover { background: var(--blush); }
.scroll-cue { position: absolute; bottom: 2.4rem; right: var(--pad); display: flex; align-items: center; gap: .75rem; font: .58rem/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }
.scroll-cue span { width: 3rem; height: 1px; background: currentColor; }

.section-pad { padding: clamp(4.75rem, 6.5vw, 7.25rem) var(--pad); }
.manifesto { background: var(--paper); transition: background-color .65s ease; }
.manifesto-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; }
h2 { margin-bottom: 0; font-size: clamp(3.2rem, 6.2vw, 6.3rem); line-height: .91; }
.manifesto-text { padding-bottom: .4rem; font-size: 1rem; line-height: 1.8; }
.manifesto-text p + p { margin-top: 1.25rem; }

@media (min-width: 901px) {
  .manifesto-grid { grid-template-columns: 1.4fr .6fr; }
  .manifesto h2 { font-size: clamp(3.2rem, 5.2vw, 5.7rem); }
  .manifesto h2 .title-line { white-space: nowrap; }
}

.services { overflow: hidden; transition: background-color .65s ease; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 2rem; max-width: 1500px; margin: 0 auto 4.5rem; }
.section-heading > p { max-width: 21rem; margin: 0; line-height: 1.65; }
.services-helper { max-width: 23rem; }
.services-helper > p { max-width: 21rem; margin-bottom: 1rem; line-height: 1.65; }
.services-helper a { display: inline-block; font: 500 .66rem/1.55 var(--display); letter-spacing: .04em; }
.services-helper a span { border-bottom: 1px solid currentColor; }
.services-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; max-width: 1500px; margin: 0 auto; gap: clamp(1.25rem, 2vw, 2rem); }
.service-card { border-top: 1px solid var(--ink); }
.service-card:nth-child(even) { margin-top: 0; }
.service-image { position: relative; aspect-ratio: .73; overflow: hidden; background: var(--paper); }
.service-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .65s cubic-bezier(.2,.75,.3,1), filter .65s ease; }
.service-card:hover .service-image img { transform: scale(1.055); filter: saturate(.95); }
.service-image span { position: absolute; left: .85rem; bottom: .8rem; padding: .45rem .55rem; background: var(--ivory); font: 500 .55rem/1 var(--display); letter-spacing: .12em; text-transform: uppercase; }
.service-content { min-height: 15.75rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.25rem 0 0; }
h3 { margin-bottom: .6rem; font: 2rem/.95 var(--serif); letter-spacing: -.04em; }
.service-content p { color: rgba(33,29,27,.72); font-size: .85rem; line-height: 1.65; }
.service-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font: 500 .65rem/1 var(--display); letter-spacing: .08em; text-transform: uppercase; }
.service-bottom .flow-button { flex-shrink: 0; }
.service-bottom svg { width: .9rem; }

@media (min-width: 901px) {
  .service-content { min-height: auto; justify-content: flex-start; }
  .service-content > div:first-child { min-height: 7rem; }
  .service-bottom { margin-top: 3.25rem; }
}

.experience { display: grid; grid-template-columns: minmax(16rem, .76fr) minmax(0, 1.24fr); gap: clamp(2rem, 8vw, 9rem); align-items: center; background: var(--deep-blush); color: var(--ivory); transition: background-color .65s ease; }
.experience-copy { max-width: 31rem; }
.experience-copy h2 { margin-bottom: 1.7rem; }
.experience-copy h2 em { color: var(--ink); }
.experience-copy > p:not(.section-index) { max-width: 29rem; color: rgba(247,244,240,.86); line-height: 1.75; }
.studio-carousel { min-width: 0; max-width: 44rem; justify-self: end; width: 100%; user-select: none; }
.carousel-viewport { overflow: hidden; background: rgba(247,244,240,.12); }
.carousel-track { display: flex; touch-action: pan-y; transition: transform .55s cubic-bezier(.2,.75,.3,1); will-change: transform; }
.carousel-slide { flex: 0 0 100%; margin: 0; aspect-ratio: 4 / 5; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); transform: scale(1.055); transition: transform .7s cubic-bezier(.2,.75,.3,1), filter .7s ease; }
.carousel-slide.is-active img { filter: saturate(.9); transform: scale(1); }
.carousel-controls { display: grid; grid-template-columns: 2.5rem 1fr 2.5rem; align-items: center; gap: .8rem; margin-top: 1rem; }
.carousel-controls p { margin: 0; text-align: center; font: 500 .62rem/1 var(--display); letter-spacing: .16em; }
.carousel-controls p span:last-child { color: rgba(247,244,240,.55); }
.carousel-button { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border: 1px solid rgba(247,244,240,.72); border-radius: 50%; background: transparent; color: var(--ivory); cursor: pointer; transition: background-color .25s ease, color .25s ease; }
.carousel-button svg { width: .95rem; fill: none; stroke: currentColor; stroke-width: 1.3; }
.carousel-button-prev svg { transform: rotate(180deg); }
.carousel-button:hover { background: var(--ivory); color: var(--deep-blush); }
.carousel-navigation { display: grid; grid-template-columns: repeat(10, 1fr); gap: .3rem; margin-top: 1rem; }
.carousel-navigation button { position: relative; height: .16rem; margin: 0; padding: 0; border: 0; overflow: hidden; background: rgba(247,244,240,.28); cursor: pointer; }
.carousel-navigation button::after { position: absolute; inset: 0; background: var(--ivory); content: ''; transform: scaleX(0); transform-origin: left; transition: transform .55s cubic-bezier(.2,.75,.3,1); }
.carousel-navigation button[aria-selected="true"]::after { transform: scaleX(1); }
.carousel-hint { margin: .8rem 0 0; color: rgba(247,244,240,.7); font: 500 .56rem/1.5 var(--display); letter-spacing: .15em; text-align: right; text-transform: uppercase; }
figcaption { margin-top: .65rem; font: 500 .57rem/1 var(--display); letter-spacing: .15em; text-transform: uppercase; }

.gallery { transition: background-color .65s ease; }
.gallery-heading { margin-bottom: 3.5rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 3vw, 3rem); max-width: 1300px; margin: 0 auto; align-items: start; }
.gallery figure { margin: 0; }
.gallery figure:nth-child(2) { margin-top: 5rem; }
.gallery figure:nth-child(3) { margin-top: 1.8rem; }
.gallery figure:nth-child(4) { margin-top: -1.5rem; }
.gallery figure:nth-child(5) { margin-top: 3rem; }
.gallery figure:nth-child(6) { margin-top: -4rem; }
.gallery img { width: 100%; aspect-ratio: .75; object-fit: cover; filter: saturate(.8); transition: filter .5s ease; }
.gallery figure:hover img { filter: saturate(1); }
.gallery figcaption { color: var(--deep-blush); }
.gallery-instagram { display: flex; justify-content: center; margin-top: clamp(2.75rem, 5vw, 4.5rem); }

.location { background: var(--paper); }
.location-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; max-width: 1500px; margin: 0 auto; }
.location-link { flex-shrink: 0; }

.booking { position: relative; display: grid; place-items: center; min-height: 42rem; overflow: hidden; padding: 5rem var(--pad); background: var(--ink); color: var(--ivory); text-align: center; transition: background-color .65s ease; }
.booking-art { position: absolute; width: min(62vw, 52rem); aspect-ratio: 1; border: 1px solid rgba(214,148,154,.37); border-radius: 50%; transform: translate(22%, -16%); }
.booking-art::before, .booking-art::after { content: ''; position: absolute; border: 1px solid rgba(214,148,154,.25); border-radius: 50%; }
.booking-art::before { inset: 10%; }
.booking-art::after { inset: 22%; }
.booking-content { position: relative; z-index: 1; max-width: 57rem; }
.booking h2 { margin-bottom: 1.6rem; }
.booking-content > p:not(.eyebrow) { max-width: 29rem; margin: 0 auto 2rem; color: rgba(247,244,240,.75); line-height: 1.7; }
.button-light { background: var(--blush); color: var(--ink); }
.button-light:hover { background: var(--ivory); }

.flow-button {
  --flow-color: var(--ink);
  --flow-surface: var(--ink);
  --flow-hover-color: var(--ivory);
  --flow-border: rgba(33, 29, 27, .4);
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  overflow: hidden;
  isolation: isolate;
  padding: .7rem 1.6rem;
  border: 1.5px solid var(--flow-border);
  border-radius: 100px;
  background: transparent;
  color: var(--flow-color);
  cursor: pointer;
  font: 600 .67rem/1 var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .6s ease, border-radius .6s cubic-bezier(.23, 1, .32, 1), color .6s ease, transform .25s ease;
}
.flow-button__label, .flow-button__arrow { position: relative; z-index: 1; }
.flow-button__label { transform: translateX(-.72rem); transition: transform .8s ease; }
.flow-button__arrow { position: absolute; display: grid; place-items: center; width: 1rem; height: 1rem; transition: left .8s cubic-bezier(.34, 1.56, .64, 1), right .8s cubic-bezier(.34, 1.56, .64, 1), color .45s ease; }
.flow-button__arrow svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.4; }
.flow-button__arrow--left { left: -25%; }
.flow-button__arrow--right { right: 1rem; }
.flow-button__orb { position: absolute; z-index: 0; top: 50%; left: 50%; width: 1rem; height: 1rem; border-radius: 50%; background: var(--flow-surface); opacity: 0; transform: translate(-50%, -50%); transition: width .8s cubic-bezier(.19, 1, .22, 1), height .8s cubic-bezier(.19, 1, .22, 1), opacity .45s ease; }
.flow-button:hover, .flow-button:focus-visible { border-color: transparent; border-radius: .75rem; color: var(--flow-hover-color); }
.flow-button:hover { transform: translateY(-2px); }
.flow-button:hover .flow-button__label, .flow-button:focus-visible .flow-button__label { transform: translateX(.72rem); }
.flow-button:hover .flow-button__arrow--left, .flow-button:focus-visible .flow-button__arrow--left { left: 1rem; }
.flow-button:hover .flow-button__arrow--right, .flow-button:focus-visible .flow-button__arrow--right { right: -25%; }
.flow-button:hover .flow-button__orb, .flow-button:focus-visible .flow-button__orb { width: 16rem; height: 16rem; opacity: 1; }
.flow-button:focus-visible { outline: 2px solid var(--blush); outline-offset: 3px; }
.flow-button--light { --flow-color: var(--ivory); --flow-surface: var(--ivory); --flow-hover-color: var(--ink); --flow-border: rgba(247, 244, 240, .66); }
.flow-button--blush { --flow-color: var(--blush); --flow-surface: var(--blush); --flow-hover-color: var(--ink); --flow-border: rgba(214, 148, 154, .8); }
.flow-button--compact { min-height: 2.35rem; padding: .55rem 1rem; font-size: .56rem; letter-spacing: .1em; }
.flow-button--compact .flow-button__label { transform: translateX(-.48rem); }
.flow-button--compact .flow-button__arrow--right { right: .65rem; }
.flow-button--compact:hover .flow-button__label, .flow-button--compact:focus-visible .flow-button__label { transform: translateX(.48rem); }
.flow-button--compact:hover .flow-button__arrow--left, .flow-button--compact:focus-visible .flow-button__arrow--left { left: .6rem; }
.flow-button--header { min-height: 2.4rem; padding: .55rem 1rem; font-size: .56rem; letter-spacing: .1em; }
.flow-button--header .flow-button__label { transform: translateX(-.45rem); }
.flow-button--header .flow-button__arrow--right { right: .62rem; }
.flow-button--header:hover .flow-button__label, .flow-button--header:focus-visible .flow-button__label { transform: translateX(.45rem); }
.flow-button--header:hover .flow-button__arrow--left, .flow-button--header:focus-visible .flow-button__arrow--left { left: .58rem; }

.footer { display: flex; align-items: center; justify-content: space-between; padding: 2.5rem var(--pad); background: var(--ivory); }
.footer p { margin: 0; font: .6rem/1.4 var(--display); letter-spacing: .13em; text-transform: uppercase; }
.footer-address { margin: 0; font: normal .58rem/1.4 var(--display); letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.footer-actions, .footer-socials { display: flex; align-items: center; gap: .55rem; }
.footer-socials a, .footer-back { display: grid; place-items: center; width: 2rem; height: 2rem; border: 1px solid var(--ink); border-radius: 50%; transition: background-color .25s ease, color .25s ease, transform .25s ease; }
.footer-socials svg { width: .9rem; height: .9rem; fill: none; stroke: currentColor; stroke-width: 1.35; }
.footer-socials a:hover, .footer-back:hover { background: var(--ink); color: var(--ivory); transform: translateY(-2px); }

.reveal, .image-reveal { opacity: 1; transform: none; }
.title-line { display: block; }
.motion-ready .manifesto.chapter { background-color: var(--ivory); }
.motion-ready .services.chapter { background-color: var(--paper); }
.motion-ready .experience.chapter { background-color: var(--ivory); }
.motion-ready .gallery.chapter { background-color: var(--deep-blush); }
.motion-ready .booking.chapter { background-color: var(--ivory); }
.motion-ready .manifesto.chapter.is-visible { background-color: var(--paper); }
.motion-ready .services.chapter.is-visible, .motion-ready .gallery.chapter { background-color: var(--ivory); }
.motion-ready .experience.chapter { color: var(--ink); }
.motion-ready .experience.chapter.is-visible { background-color: var(--deep-blush); color: var(--ivory); }
.motion-ready .booking.chapter { color: var(--ink); }
.motion-ready .booking.chapter.is-visible { background-color: var(--ink); color: var(--ivory); }
.motion-ready .reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.3,1); }
.motion-ready .image-reveal { opacity: 0; transform: translateY(1rem); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.3,1); }
.motion-ready .reveal.is-visible, .motion-ready .image-reveal.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .heading-reveal .title-line { opacity: 0; transform: translateY(1.15em); transition: opacity .65s ease, transform .75s cubic-bezier(.2,.75,.3,1); }
.motion-ready .reveal.is-visible .heading-reveal .title-line { opacity: 1; transform: translateY(0); }
.motion-ready .reveal.is-visible .heading-reveal .title-line:nth-child(2) { transition-delay: .12s; }
.motion-ready .gallery .image-reveal:nth-child(2) { transition-delay: .07s; }
.motion-ready .gallery .image-reveal:nth-child(3) { transition-delay: .14s; }
.motion-ready .gallery .image-reveal:nth-child(4) { transition-delay: .05s; }
.motion-ready .gallery .image-reveal:nth-child(5) { transition-delay: .12s; }
.motion-ready .gallery .image-reveal:nth-child(6) { transition-delay: .19s; }
.motion-ready .hero-image img { opacity: 0; transform: scale(1.08); transition: opacity .8s ease, transform 1.25s cubic-bezier(.2,.75,.3,1); }
.motion-ready .hero-copy > * { opacity: 0; transform: translateY(1.25rem); transition: opacity .7s ease, transform .75s cubic-bezier(.2,.75,.3,1); }
.page-ready .hero-image img, .page-ready .hero-copy > * { opacity: 1; transform: translateY(0); }
.page-ready .hero-copy > :nth-child(1) { transition-delay: .12s; }
.page-ready .hero-copy > :nth-child(2) { transition-delay: .2s; }
.page-ready .hero-copy > :nth-child(3) { transition-delay: .3s; }
.page-ready .hero-copy > :nth-child(4) { transition-delay: .4s; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 760px; }
  .hero-image { inset: 0; }
  .hero-image::after { background: linear-gradient(90deg, rgba(22,17,16,.56), rgba(22,17,16,.82)); }
  .hero-copy { grid-column: 1; padding: 10rem var(--pad) 9rem; align-self: end; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 1.25rem; }
  .service-card:nth-child(even) { margin-top: 2.5rem; }
  .service-content { min-height: 12.5rem; }
  .experience { grid-template-columns: 1fr; }
  .experience-copy { max-width: none; }
  .studio-carousel { justify-self: start; max-width: 48rem; }
  .location-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 600px) {
  .site-header { min-height: 4.25rem; padding: .9rem var(--pad); }
  .site-header .brand { font-size: 1.35rem; }
  .header-cta { padding-bottom: .22rem; font-size: .58rem; }
  .hero { min-height: 680px; }
  .hero-image { inset: 0; }
  .hero-image img { object-position: 52% center; }
  .hero-copy { padding: 8rem var(--pad) 7.5rem; }
  h1 { font-size: clamp(2.35rem, 10.5vw, 3.6rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-note { display: none; }
  .scroll-cue { right: var(--pad); bottom: 1.8rem; }
  .manifesto-grid, .section-heading { grid-template-columns: 1fr; display: grid; gap: 2rem; }
  .section-heading { align-items: start; }
  .section-heading > p { max-width: 18rem; }
  .services-helper { max-width: 20rem; }
  .services-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-card:nth-child(even) { margin-top: 0; }
  .service-image { aspect-ratio: 1.08; }
  .service-content { min-height: auto; gap: 1.25rem; }
  .experience { gap: 3rem; }
  .studio-carousel { max-width: none; }
  .carousel-slide { aspect-ratio: .82; }
  .carousel-controls { grid-template-columns: 2.3rem 1fr 2.3rem; }
  .carousel-button { width: 2.3rem; height: 2.3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery figure:nth-child(n) { width: auto; margin-top: 0; }
  .gallery figure:nth-child(even) { margin-top: 2.25rem; }
  .location-heading { margin-bottom: 0; }
  .booking { min-height: 35rem; }
  .booking-art { width: 115vw; transform: translate(14%, -12%); }
  .footer { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 1.15rem .75rem; }
  .footer .brand { grid-column: 1; grid-row: 1; }
  .footer-actions { grid-column: 2; grid-row: 1; }
  .footer p, .footer-address { grid-column: 1 / -1; max-width: none; margin: 0; white-space: nowrap; }
  .footer p { font-size: .52rem; line-height: 1; letter-spacing: .09em; }
  .footer-address { font-size: .48rem; line-height: 1; letter-spacing: .025em; }
  .footer-actions { gap: .4rem; }
}

@media (min-width: 360px) and (max-width: 600px) {
  .heading-reveal .title-line { white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .motion-ready .reveal, .motion-ready .image-reveal { opacity: 1; transform: none; }
}
