:root {
  --ink: #11100e;
  --ink-soft: #1d1a17;
  --ivory: #f2eee6;
  --paper: #fbf8f1;
  --stone: #cfc6b8;
  --gold: #b99b67;
  --line: rgba(17, 16, 14, 0.16);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 1000; background: var(--paper); color: var(--ink); padding: 10px 14px; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 96px; padding: 0 clamp(24px, 4vw, 72px); display: flex; align-items: center; justify-content: space-between; color: #fff; transition: height .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease; }
.site-header.is-scrolled { height: 72px; background: rgba(251,248,241,.93); color: var(--ink); box-shadow: 0 1px 0 rgba(17,16,14,.1); backdrop-filter: blur(14px); }
.brand { display: inline-flex; flex-direction: column; line-height: 1; letter-spacing: .12em; }
.brand-main { font-family: var(--display); font-size: 26.4px; font-weight: 500; letter-spacing: .075em; }
.brand-sub { margin-top: 8px; font-size: 8.8px; letter-spacing: .28em; opacity: .76; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 11px; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.site-nav a { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: currentColor; transition: right .25s ease; }
.site-nav a:hover::after { right: 0; }
.nav-cta { border: 1px solid currentColor; padding: 10px 16px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; width: 24px; margin: 7px auto; background: currentColor; transition: transform .25s ease; }

.hero { position: relative; min-height: 100svh; color: #fff; display: grid; align-items: end; overflow: hidden; background: #0c1520; }
.hero-media { position: absolute; inset: 0; background-image: linear-gradient(180deg, rgba(6,13,23,.08), rgba(6,13,23,.16)), url("https://static.wixstatic.com/media/94eeba_4f54c79494d3416db9dc9bc4dd497242~mv2.png/v1/fill/w_1800%2Ch_1000%2Cal_c%2Cq_90%2Cenc_avif%2Cquality_auto/Screenshot%202025-06-03%20at%2012_28_56%E2%80%AFAM.png"); background-size: cover; background-position: center; transform: scale(1.04); animation: heroDrift 18s ease-out both; }
@keyframes heroDrift { from { transform: scale(1.1); } to { transform: scale(1.04); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,8,13,.72) 0%, rgba(5,8,13,.36) 48%, rgba(5,8,13,.06) 75%), linear-gradient(0deg, rgba(5,8,13,.52), transparent 45%); }
.hero-grain { position: absolute; inset: -50%; opacity: .06; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E"); animation: grain .22s steps(2) infinite; }
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(2%,-1%); } 50% { transform: translate(-1%,2%); } 75% { transform: translate(1%,1%); } 100% { transform: translate(-2%,-1%); } }
.hero-content { position: relative; z-index: 2; width: min(880px, calc(100% - 48px)); margin: 0 auto; padding: 190px 0 clamp(96px, 14vh, 150px); }
.eyebrow { margin: 0 0 22px; font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: .94; margin: 0; }
h1 { font-size: clamp(64px, 9vw, 134px); letter-spacing: -.035em; }
h1 em, h2 em { font-weight: 400; }
.hero-copy { max-width: 570px; margin: 34px 0 0; font-size: clamp(15px, 1.5vw, 20px); line-height: 1.55; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 38px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 23px; border: 1px solid transparent; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--paper); color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }
.hero-scroll { position: absolute; z-index: 2; right: clamp(24px, 4vw, 72px); bottom: 58px; display: flex; align-items: center; gap: 13px; font-size: 8px; letter-spacing: .25em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll i { width: 1px; height: 48px; background: rgba(255,255,255,.55); }

.credibility { background: var(--ink); color: #fff; padding: 25px clamp(24px,5vw,80px); display: flex; align-items: center; gap: clamp(30px,5vw,90px); }
.credibility > p { flex: 0 0 auto; margin: 0; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.54); }
.credibility-list { flex: 1; display: grid; grid-template-columns: repeat(5,1fr); align-items: center; gap: 22px; }
.credibility-list span { font-family: var(--display); font-size: clamp(17px,2vw,25px); text-align: center; color: rgba(255,255,255,.84); }

.section { padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 100px); }
.section-heading { display: grid; grid-template-columns: minmax(160px, .55fr) 1.35fr .85fr; gap: 40px; align-items: start; margin-bottom: clamp(60px,8vw,110px); }
.section-heading h2 { font-size: clamp(50px, 6.3vw, 94px); letter-spacing: -.028em; }
.section-heading > p:last-child { max-width: 430px; margin: 9px 0 0; color: #5e5952; }
.films { background: var(--paper); }
.film-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(48px,6vw,92px) clamp(28px,4vw,68px); align-items: start; }
.film-card { min-width: 0; }
.film-image { position: relative; width: 100%; padding: 0; overflow: hidden; border: 0; background: #d8d0c3; cursor: pointer; aspect-ratio: 16/10; }
.film-image img { height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.film-image:hover img { transform: scale(1.035); filter: saturate(.85); }
.play-pill { position: absolute; left: 18px; bottom: 18px; border: 1px solid rgba(255,255,255,.7); background: rgba(17,16,14,.28); color: #fff; backdrop-filter: blur(8px); padding: 9px 13px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.play-pill span { margin-right: 5px; font-size: 8px; }
.film-meta { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 22px; padding-top: 17px; }
.film-meta h3 { max-width: 620px; font-size: clamp(24px,2.25vw,34px); }
.film-meta p { margin: 0; white-space: nowrap; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: #716b63; }

.stills { background: var(--ink); color: #fff; }
.stills-heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: clamp(40px,8vw,140px); align-items: end; margin-bottom: clamp(55px,7vw,95px); }
.stills-heading h2 { max-width: 850px; font-size: clamp(52px,6.5vw,96px); letter-spacing: -.03em; }
.stills-heading > p { max-width: 440px; margin: 0 0 10px; color: rgba(255,255,255,.62); }
.stills .eyebrow { color: var(--gold); }
.stills-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr; gap: clamp(12px,1.8vw,28px); align-items: end; }
.still { position: relative; margin: 0; overflow: hidden; background: #171513; }
.still:first-child { aspect-ratio: 16/10; }
.still:nth-child(2), .still:nth-child(3) { aspect-ratio: 4/5; }
.still::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(0,0,0,.72)); pointer-events: none; }
.still img { height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.02); transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.still:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.02); }
.still figcaption { position: absolute; z-index: 1; left: 18px; right: 18px; bottom: 16px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.78); }

.approach { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 900px; background: var(--ivory); }
.approach-media { min-height: 720px; }
.approach-media img { height: 100%; object-fit: cover; object-position: center; filter: saturate(.92) contrast(1.01); }
.approach-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px,8vw,130px); }
.approach-copy h2 { max-width: 720px; font-size: clamp(50px,5.8vw,88px); letter-spacing: -.03em; }
.approach-copy > p:nth-of-type(2) { max-width: 590px; margin: 35px 0 50px; font-size: 17px; color: #5d574f; }
.principles { border-top: 1px solid var(--line); }
.principles > div { display: grid; grid-template-columns: 38px 1fr 1.2fr; gap: 22px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.principles span { font-size: 9px; color: #8c8174; }
.principles h3 { font-family: var(--sans); font-size: 11px; font-weight: 600; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.principles p { margin: 0; font-size: 13px; color: #6b645b; }

.collections { background: var(--ink-soft); color: #fff; }
.section-heading-centered { grid-template-columns: 1fr; max-width: 980px; margin-left: auto; margin-right: auto; text-align: center; }
.section-heading-centered > p:last-child { margin: 25px auto 0; color: rgba(255,255,255,.6); }
.collection-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid rgba(255,255,255,.16); }
.collection-card { position: relative; min-height: 670px; padding: clamp(35px,4vw,60px); border-right: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; }
.collection-card:last-child { border-right: 0; }
.collection-featured { background: #27231d; }
.collection-number { margin: 0 0 65px; font-size: 10px; color: rgba(255,255,255,.42); }
.collection-kicker { margin: 0 0 10px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.collection-card h3 { font-size: clamp(39px,3.7vw,57px); line-height: 1; }
.collection-description { min-height: 112px; margin: 24px 0 8px; color: rgba(255,255,255,.62); font-size: 14px; }
.collection-card ul { list-style: none; padding: 24px 0 28px; margin: 0 0 28px; border-top: 1px solid rgba(255,255,255,.14); }
.collection-card li { padding: 8px 0 8px 18px; position: relative; font-size: 13px; color: rgba(255,255,255,.82); }
.collection-card li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }
.collection-card .text-link { margin-top: auto; align-self: flex-start; }
.collection-guide { max-width: 780px; margin: 52px auto 0; padding: 30px; border: 1px solid rgba(255,255,255,.16); text-align: center; }
.collection-guide p { margin: 0 0 20px; color: rgba(255,255,255,.62); font-size: 13px; }
.button-guide { border-color: var(--gold); color: #fff; }
.button-guide:hover { background: var(--gold); color: var(--ink); }
.collection-note { margin: 28px 0 0; text-align: center; font-size: 11px; color: rgba(255,255,255,.48); }

.about { background: var(--paper); padding: clamp(100px,12vw,180px) clamp(24px,7vw,115px); }
.about-inner { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(60px,9vw,150px); align-items: center; }
.about-copy { max-width: 660px; }
.about-copy h2 { font-size: clamp(50px,6vw,90px); letter-spacing: -.03em; }
.about-lead { margin: 38px 0 18px; font-family: var(--display); font-size: clamp(25px,2.6vw,38px); line-height: 1.15; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: #5c564f; }
.about-copy .button { margin-top: 28px; }
.about-visual { position: relative; padding-left: 9%; }
.about-visual::before { content: ""; position: absolute; left: 0; bottom: 9%; width: 72%; height: 75%; border: 1px solid var(--gold); }
.about-visual img { position: relative; aspect-ratio: 4/5; object-fit: cover; object-position: center; filter: saturate(.92) contrast(1.03); }
.about-caption { position: relative; display: flex; justify-content: space-between; padding-top: 13px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; }

.experience { background: #e7e0d4; }
.experience .section-heading { grid-template-columns: .4fr 1.2fr; }
.experience-steps { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.experience-steps article { padding: 34px 30px 20px 0; border-right: 1px solid var(--line); min-height: 260px; }
.experience-steps article:not(:first-child) { padding-left: 30px; }
.experience-steps article:last-child { border-right: 0; }
.experience-steps span { font-size: 9px; color: #7d7469; }
.experience-steps h3 { margin-top: 58px; font-size: 31px; }
.experience-steps p { color: #645d55; font-size: 13px; }

.contact { position: relative; min-height: 940px; color: #fff; background: #15171a; overflow: hidden; }
.contact-image { position: absolute; inset: 0; background-image: url("https://static.wixstatic.com/media/94eeba_974280c4ce2d47068aaf7ed1314f1439~mv2.jpg/v1/fill/w_1800%2Ch_1200%2Cq_90%2Cenc_avif%2Cquality_auto/94eeba_974280c4ce2d47068aaf7ed1314f1439~mv2.jpg"); background-size: cover; background-position: center; filter: saturate(.58); }
.contact-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,13,14,.95) 0%, rgba(12,13,14,.82) 48%, rgba(12,13,14,.52) 100%); }
.contact-inner { position: relative; z-index: 2; min-height: 940px; padding: clamp(100px,12vw,170px) clamp(24px,7vw,115px); display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(60px,9vw,150px); }
.contact-intro h2 { font-size: clamp(53px,6.3vw,96px); letter-spacing: -.03em; }
.contact-intro > p:nth-of-type(2) { max-width: 520px; margin: 36px 0; color: rgba(255,255,255,.67); }
.contact-direct { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; font-family: var(--display); font-size: 22px; }
.contact-direct a { border-bottom: 1px solid rgba(255,255,255,.32); }
.inquiry-form { padding: clamp(32px,5vw,65px); background: rgba(10,10,10,.72); border: 1px solid rgba(255,255,255,.17); backdrop-filter: blur(14px); }
.field-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.inquiry-form label { display: block; margin-bottom: 22px; font-size: 9px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.64); }
.inquiry-form input, .inquiry-form textarea, .inquiry-form select { display: block; width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.34); border-radius: 0; padding: 12px 0 11px; background: transparent; color: #fff; outline: none; font-size: 15px; font-weight: 300; text-transform: none; letter-spacing: 0; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form select { color-scheme: dark; }
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { border-bottom-color: #fff; }
.form-submit { width: 100%; border: 0; margin-top: 8px; }
.form-note { margin: 15px 0 0; font-size: 10px; line-height: 1.5; color: rgba(255,255,255,.45); }

.site-footer { background: #0e0d0c; color: #fff; padding: 75px clamp(24px,6vw,100px) 28px; }
.footer-brand { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 45px; }
.footer-brand .brand-main { font-size: clamp(30px,4vw,62px); }
.footer-brand p { max-width: 330px; margin: 0; color: rgba(255,255,255,.55); font-size: 12px; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 50px; max-width: 700px; margin: 55px 0; }
.footer-links > div { display: flex; flex-direction: column; gap: 8px; }
.footer-links p { margin: 0 0 10px; font-size: 8px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.footer-links a { font-family: var(--display); font-size: 23px; color: rgba(255,255,255,.84); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); }

.lightbox { width: min(1200px, 94vw); max-width: none; max-height: 94vh; padding: 0; border: 1px solid rgba(255,255,255,.16); background: #090909; color: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.55); overflow: visible; }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(7px); }
.lightbox-video { width: 100%; aspect-ratio: 16/9; background: #000; }
.lightbox-video iframe { display: block; width: 100%; height: 100%; border: 0; }
.lightbox-title { margin: 0; padding: 16px 22px 18px; font-family: var(--display); font-size: clamp(20px,2.2vw,30px); line-height: 1.15; }
.lightbox-close { position: absolute; top: -52px; right: 0; z-index: 2; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; background: rgba(0,0,0,.48); color: #fff; font-size: 25px; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { height: 76px; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .site-nav { position: fixed; inset: 0; background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 28px; font-family: var(--display); font-size: 38px; letter-spacing: 0; text-transform: none; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .3s ease, transform .3s ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav .nav-cta { font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin-top: 12px; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .section-heading { grid-template-columns: .45fr 1.2fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .film-meta { display: block; }
  .film-meta p { margin-top: 7px; }
  .stills-heading { grid-template-columns: 1fr; }
  .stills-heading > p { max-width: 650px; }
  .stills-grid { grid-template-columns: 1.15fr .85fr; }
  .still:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .still:nth-child(2), .still:nth-child(3) { aspect-ratio: 4/5; }
  .approach { grid-template-columns: 1fr; }
  .approach-media { min-height: 650px; }
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .collection-card:last-child { border-bottom: 0; }
  .collection-number { margin-bottom: 35px; }
  .collection-description { min-height: 0; }
  .about-inner { grid-template-columns: 1fr; }
  .about-copy { max-width: 780px; }
  .about-visual { max-width: 720px; margin-left: auto; }
  .experience-steps { grid-template-columns: repeat(2,1fr); }
  .experience-steps article:nth-child(2) { border-right: 0; }
  .experience-steps article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header { padding: 0 18px; }
  .site-header.is-scrolled { height: 64px; }
  .brand-main { font-size: 22px; }
  .brand-sub { font-size: 6.6px; letter-spacing: .22em; }
  .hero-content { width: calc(100% - 36px); padding-bottom: 90px; }
  h1 { font-size: clamp(57px, 17vw, 84px); }
  .hero-copy { max-width: 90%; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-scroll { display: none; }
  .credibility { display: block; padding: 22px 18px; overflow: hidden; }
  .credibility > p { margin-bottom: 13px; }
  .credibility-list { display: flex; width: max-content; gap: 35px; animation: marquee 24s linear infinite; }
  @keyframes marquee { to { transform: translateX(-45%); } }
  .section { padding: 95px 18px; }
  .section-heading { display: block; margin-bottom: 58px; }
  .section-heading h2 { margin-top: 18px; font-size: clamp(47px,15vw,70px); }
  .section-heading > p:last-child { margin-top: 25px; }
  .film-grid { display: block; }
  .film-card { width: 100%; margin: 0 0 50px; }
  .film-image { aspect-ratio: 16/10; }
  .film-meta { display: block; }
  .film-meta p { margin-top: 6px; }
  .stills-heading { display: block; }
  .stills-heading h2 { margin-top: 18px; }
  .stills-heading > p { margin-top: 25px; }
  .stills-grid { display: block; }
  .still, .still:first-child, .still:nth-child(2), .still:nth-child(3) { margin-bottom: 14px; aspect-ratio: 4/3; }
  .approach-media { min-height: 530px; }
  .approach-copy { padding: 85px 18px; }
  .approach-copy h2 { font-size: clamp(47px,15vw,70px); }
  .principles > div { grid-template-columns: 30px 1fr; }
  .principles p { grid-column: 2; }
  .collections { padding-left: 18px; padding-right: 18px; }
  .collection-card { padding: 38px 26px; }
  .collection-guide { margin-top: 34px; padding: 26px 20px; }
  .button-guide { width: 100%; min-height: 58px; padding: 10px 18px; line-height: 1.35; }
  .about { padding: 95px 18px; }
  .about-inner { gap: 70px; }
  .about-copy h2 { font-size: clamp(47px,15vw,70px); }
  .about-visual { padding-left: 7%; }
  .experience .section-heading { display: block; }
  .experience-steps { grid-template-columns: 1fr; }
  .experience-steps article, .experience-steps article:not(:first-child) { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; min-height: 0; }
  .experience-steps article:last-child { border-bottom: 0; }
  .experience-steps h3 { margin-top: 28px; }
  .contact-inner { min-height: auto; padding: 95px 18px; gap: 60px; }
  .contact-intro h2 { font-size: clamp(47px,15vw,70px); }
  .contact-direct { font-size: 18px; }
  .inquiry-form { padding: 30px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding: 65px 18px 25px; }
  .footer-brand { display: block; }
  .footer-brand p { margin-top: 18px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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

/* Custom heart cursor, matching the original Wix site's romantic detail. */
@media (hover: hover) and (pointer: fine) {
  html,
  body {
    cursor: url("heart-cursor.svg") 16 15, auto;
  }

  a,
  button,
  select,
  summary,
  label,
  [role="button"],
  .film-image,
  .menu-toggle,
  .button,
  .lightbox-close {
    cursor: url("heart-cursor.svg") 16 15, pointer;
  }

  input,
  textarea {
    cursor: text;
  }
}

.signature-style {
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.signature-style strong {
  display: inline-block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: clamp(21px, 2.2vw, 31px);
  font-weight: 500;
  letter-spacing: .04em;
}
