:root {
  --ivory: #f7f2eb;
  --paper: #fbf8f3;
  --ink: #292420;
  --ink-soft: #6e655f;
  --gold: #b69452;
  --gold-deep: #8f7139;
  --blush: #e9cec9;
  --rose: #d9aeb1;
  --sage: #8f9981;
  --line: rgba(41, 36, 32, .14);
  --shadow: 0 28px 80px rgba(65, 48, 38, .10);
  --display: "Bodoni 72", "Bodoni MT", Didot, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --container: min(1220px, calc(100vw - 72px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
img, video { display: block; width: 100%; }
::selection { background: var(--blush); color: var(--ink); }

.grain {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .11; mix-blend-mode: multiply;
  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='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
}

.section-shell { width: var(--container); margin-inline: auto; }
.section-space { padding-block: clamp(96px, 11vw, 170px); }
.section-kicker {
  color: var(--gold-deep); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 650; margin-bottom: 22px;
}
.section-head { display: grid; grid-template-columns: 1.1fr .6fr; gap: 90px; align-items: end; margin-bottom: 62px; }
.section-head h2, .intro h2, .feature h2, .offer h2, .contact h2, .instagram h2 {
  margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -.035em; line-height: .98; font-size: clamp(44px, 5.2vw, 82px);
}
.section-head p { max-width: 470px; margin: 0; color: var(--ink-soft); }
em { font-weight: 400; color: var(--gold-deep); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  width: 100%; padding: 22px max(36px, calc((100vw - 1220px)/2));
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, padding .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled { padding-block: 14px; background: rgba(247,242,235,.88); border-color: var(--line); backdrop-filter: blur(16px); }
.brand { display: inline-flex; align-items: center; gap: 11px; width: max-content; }
.brand-mark {
  display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid rgba(182,148,82,.7); border-radius: 50%;
  font-family: var(--display); font-size: 24px; font-style: italic; color: var(--gold-deep);
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--display); font-size: 21px; font-weight: 500; letter-spacing: -.02em; }
.brand-copy small { text-transform: uppercase; letter-spacing: .16em; font-size: 8px; margin-top: 4px; color: var(--ink-soft); }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a { font-size: 12px; letter-spacing: .06em; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: var(--gold); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { justify-self: end; font-size: 12px; font-weight: 650; letter-spacing: .05em; padding-bottom: 4px; border-bottom: 1px solid var(--ink); }
.header-cta span { display: inline-block; transition: transform .2s ease; }
.header-cta:hover span { transform: translate(3px,-3px); }
.menu-toggle { display: none; background: none; border: 0; padding: 10px; justify-self: end; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: var(--ink); margin: 6px 0; transition: transform .25s ease; }
.mobile-menu { display: none; }

.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: .9fr .78fr; gap: clamp(50px, 8vw, 120px); align-items: center; padding-top: 120px; padding-bottom: 70px; }
.hero::before { content: ""; position: absolute; width: 42vw; height: 42vw; max-width: 660px; max-height: 660px; border-radius: 50%; background: radial-gradient(circle, rgba(233,206,201,.5), rgba(247,242,235,0) 68%); left: -23vw; top: 10vh; pointer-events: none; }
.eyebrow { text-transform: uppercase; letter-spacing: .22em; color: var(--gold-deep); font-size: 10px; font-weight: 700; margin-bottom: 34px; }
.hero h1 { margin: 0; max-width: 720px; font-family: var(--display); font-size: clamp(58px, 6.7vw, 104px); line-height: .91; font-weight: 400; letter-spacing: -.045em; }
.hero h1 em { display: inline-block; margin-top: 10px; }
.hero-copy > p { max-width: 560px; color: var(--ink-soft); font-size: clamp(16px, 1.35vw, 20px); margin: 34px 0 0; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; font-weight: 650; font-size: 12px; letter-spacing: .055em; transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn span { transition: transform .22s ease; }
.btn:hover span { transform: translate(3px,-3px); }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn-outline { border-color: rgba(41,36,32,.4); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 650; border-bottom: 1px solid rgba(41,36,32,.4); padding-bottom: 6px; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translate(2px,2px); }
.hero-note { display: flex; align-items: center; gap: 14px; margin-top: 52px; text-transform: uppercase; font-size: 9px; letter-spacing: .2em; color: var(--ink-soft); }
.hero-note span { width: 42px; height: 1px; background: var(--gold); }
.hero-visual { position: relative; justify-self: end; width: min(460px, 36vw); transform-style: preserve-3d; perspective: 1000px; }
.hero-arch { position: absolute; inset: -26px -26px 48%; border: 1px solid rgba(182,148,82,.35); border-bottom: 0; border-radius: 50% 50% 0 0 / 28% 28% 0 0; z-index: -1; }
.media-frame { position: relative; overflow: hidden; background: #ddd; box-shadow: var(--shadow); }
.hero-media { aspect-ratio: 4 / 5.45; }
.hero-media video, .feature-video video, .studio-video video { height: 100%; object-fit: cover; }
.hero-media video { object-position: 50% 18%; transform: scale(1.02); }
.media-wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.05), transparent 45%, rgba(20,15,11,.11)); pointer-events: none; }
.video-cover { position: absolute; z-index: 2; pointer-events: none; }
.video-cover-bottom { left: 0; right: 0; bottom: 0; height: 16%; background: linear-gradient(180deg, rgba(29,25,22,0), rgba(29,25,22,.88) 58%); }
.media-caption { position: absolute; left: 25px; right: 25px; bottom: 18px; z-index: 3; display: flex; justify-content: space-between; align-items: end; gap: 20px; color: white; }
.media-caption span { font-family: var(--display); font-size: 22px; }
.media-caption p { margin: 0; max-width: 190px; text-align: right; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.floating-seal { position: absolute; width: 128px; height: 128px; border-radius: 50%; overflow: hidden; left: -64px; bottom: 76px; box-shadow: 0 20px 60px rgba(54,43,34,.18); border: 6px solid var(--ivory); }
.floating-seal img { height: 100%; object-fit: cover; transform: scale(1.02); }
.hero-scroll { position: absolute; right: -18px; bottom: 82px; transform: rotate(90deg); transform-origin: right center; display: flex; align-items: center; gap: 14px; font-size: 8px; letter-spacing: .24em; color: var(--ink-soft); }
.hero-scroll span { width: 46px; height: 1px; background: var(--ink-soft); }

.intro { border-top: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: 1.35fr .55fr; gap: 110px; align-items: start; }
.intro h2 { font-size: clamp(48px, 5.8vw, 88px); }
.intro-copy { padding-top: 12px; }
.intro-copy p { color: var(--ink-soft); margin: 0 0 22px; }

.event-list { border-top: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 70px 1fr 1fr 40px; gap: 30px; align-items: center; padding: 29px 8px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.event-row:hover { padding-inline: 18px; background: rgba(255,255,255,.26); }
.event-no { font-family: var(--display); font-style: italic; color: var(--gold-deep); }
.event-row strong { font-family: var(--display); font-weight: 400; font-size: clamp(25px, 2.2vw, 34px); }
.event-row small { color: var(--ink-soft); font-size: 12px; }
.event-arrow { justify-self: end; transition: transform .2s ease; }
.event-row:hover .event-arrow { transform: translate(4px,-4px); }

.portfolio { background: var(--paper); border-block: 1px solid rgba(41,36,32,.07); }
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 18px; }
.gallery-card { position: relative; grid-column: span 4; grid-row: span 2; padding: 0; border: 0; background: #ddd; overflow: hidden; text-align: left; }
.gallery-card.wide { grid-column: span 8; grid-row: span 2; }
.gallery-card.tall { grid-column: span 4; grid-row: span 3; }
.gallery-card img { height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.75,.2,1), filter .5s ease; }
.gallery-card:hover img { transform: scale(1.035); filter: saturate(.92); }
.gallery-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(23,18,15,.65)); opacity: .8; }
.gallery-meta { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; display: flex; justify-content: space-between; align-items: end; color: white; }
.gallery-meta small { text-transform: uppercase; letter-spacing: .16em; font-size: 8px; }
.gallery-meta strong { font-family: var(--display); font-weight: 400; font-size: 22px; }

.feature { display: grid; grid-template-columns: 1fr .78fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.feature-media { padding-left: 6vw; }
.feature-video { aspect-ratio: 4/5.15; }
.feature-video video { object-position: 50% 58%; }
.video-cover-top { left: 0; top: 0; padding: 16px 20px; background: rgba(247,242,235,.9); color: var(--gold-deep); font-size: 8px; font-weight: 700; letter-spacing: .18em; }
.feature-copy p { max-width: 520px; color: var(--ink-soft); margin: 28px 0; }

.process { background: #eae2d8; }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(41,36,32,.18); }
.process-grid li { min-height: 300px; padding: 30px 28px 25px 0; border-right: 1px solid rgba(41,36,32,.18); }
.process-grid li + li { padding-left: 28px; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { color: var(--gold-deep); font-family: var(--display); font-style: italic; }
.process-grid h3 { font-family: var(--display); font-size: 31px; font-weight: 400; margin: 82px 0 15px; }
.process-grid p { color: var(--ink-soft); font-size: 13px; margin: 0; }

.offer-panel { position: relative; display: grid; grid-template-columns: .55fr 1fr; min-height: 500px; background: #2d2925; color: var(--paper); overflow: hidden; }
.offer-panel::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; border: 1px solid rgba(182,148,82,.25); left: -160px; top: -130px; }
.offer-logo { display: grid; place-items: center; padding: 60px; border-right: 1px solid rgba(255,255,255,.12); }
.offer-logo img { max-width: 260px; mix-blend-mode: screen; opacity: .93; border-radius: 50%; }
.offer-copy { align-self: center; padding: 70px clamp(50px,7vw,110px); }
.offer-copy .section-kicker { color: #d5bb88; }
.offer-copy h2 { font-size: clamp(42px,4.3vw,68px); }
.offer-copy p { color: rgba(255,255,255,.68); max-width: 650px; margin: 26px 0 34px; }
.offer-copy .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.offer-copy .btn-primary:hover { background: #d5bb88; border-color: #d5bb88; }

.studio-motion { display: grid; grid-template-columns: .85fr .7fr; gap: 110px; align-items: center; }
.studio-copy blockquote { margin: 0; max-width: 670px; font-family: var(--display); font-size: clamp(42px,4.4vw,70px); line-height: 1.02; letter-spacing: -.03em; }
.quote-note { margin-top: 25px; color: var(--ink-soft); font-size: 11px; }
.studio-media { max-width: 430px; justify-self: end; transform-style: preserve-3d; perspective: 1000px; }
.studio-video { aspect-ratio: 4/5.2; }
.studio-video video { object-position: 50% 45%; }
.video-cover-bottom.compact { height: 14%; display: flex; align-items: end; padding: 0 18px 15px; color: white; font-size: 8px; letter-spacing: .16em; }

.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; gap: 30px; align-items: center; padding: 26px 0; font-family: var(--display); font-size: clamp(22px,2vw,30px); cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-family: var(--sans); font-weight: 300; color: var(--gold-deep); transition: transform .25s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 760px; margin: -6px 0 28px; color: var(--ink-soft); }

.instagram { position: relative; overflow: hidden; background: #e5d1ce; }
.instagram-marquee { position: absolute; top: 30px; left: -4vw; white-space: nowrap; font-family: var(--display); font-size: clamp(70px,11vw,170px); color: rgba(255,255,255,.25); line-height: 1; pointer-events: none; }
.instagram-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .65fr 1fr; gap: 90px; align-items: center; }
.instagram-copy p { color: var(--ink-soft); max-width: 430px; margin: 25px 0 32px; }
.instagram-collage { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 12px; align-items: center; }
.instagram-collage img { height: 430px; object-fit: cover; }
.instagram-collage img:nth-child(1) { height: 330px; }
.instagram-collage img:nth-child(3) { height: 360px; }

.contact-head { margin-bottom: 70px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .65fr; gap: 90px; align-items: start; }
.contact-form { display: grid; gap: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-form label { display: grid; gap: 9px; text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 700; color: var(--ink-soft); }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(41,36,32,.35); background: transparent; border-radius: 0; padding: 12px 0; outline: none; text-transform: none; letter-spacing: normal; font-size: 15px; resize: vertical; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-deep); }
.contact-form .btn { justify-self: start; margin-top: 8px; }
.form-note { color: var(--ink-soft); font-size: 11px; max-width: 620px; margin: 0; }
.contact-card { background: var(--paper); border: 1px solid var(--line); padding: 42px; box-shadow: var(--shadow); }
.contact-card h3 { margin: 0; font-family: var(--display); font-size: 44px; font-weight: 400; }
.contact-card > div:first-child p { color: var(--ink-soft); }
.contact-social, .contact-placeholder { display: grid; gap: 3px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-social span, .contact-placeholder span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-soft); }
.contact-social strong, .contact-placeholder strong { font-size: 13px; }
.contact-social:hover strong { color: var(--gold-deep); }
.contact-card img { width: 135px; height: 135px; object-fit: cover; border-radius: 50%; margin: 34px auto 0; }

.site-footer { border-top: 1px solid var(--line); padding-block: 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-grid > div { display: flex; gap: 7px; align-items: baseline; }
.footer-grid strong { font-family: var(--display); font-size: 28px; font-weight: 400; }
.footer-grid span { text-transform: uppercase; letter-spacing: .14em; font-size: 8px; }
.footer-grid p { color: var(--ink-soft); text-align: center; font-size: 11px; margin: 0; }
.footer-grid a { text-align: right; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.lightbox, .inquiry-dialog { border: 0; padding: 0; background: transparent; max-width: none; max-height: none; }
.lightbox::backdrop, .inquiry-dialog::backdrop { background: rgba(24,20,17,.88); backdrop-filter: blur(7px); }
.lightbox img { max-width: min(90vw, 980px); max-height: 88vh; width: auto; height: auto; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.lightbox-close, .dialog-close { position: fixed; top: 22px; right: 28px; z-index: 2; border: 0; background: transparent; color: white; font-size: 38px; font-weight: 200; }
.inquiry-dialog { background: var(--paper); color: var(--ink); padding: 48px; width: min(720px, calc(100vw - 40px)); box-shadow: 0 30px 120px rgba(0,0,0,.35); }
.inquiry-dialog .dialog-close { position: absolute; color: var(--ink); }
.inquiry-dialog h2 { font-family: var(--display); font-size: 40px; font-weight: 400; line-height: 1.05; margin: 0 40px 24px 0; }
.inquiry-dialog textarea { width: 100%; border: 1px solid var(--line); background: var(--ivory); padding: 18px; resize: none; }
.dialog-actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.copy-state { min-height: 1.4em; margin-bottom: 0; color: var(--gold-deep); font-size: 12px; }

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

@media (max-width: 1050px) {
  :root { --container: min(100% - 44px, 940px); }
  .site-header { padding-inline: 22px; }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: grid; position: fixed; inset: 0; z-index: 45; place-items: center; background: rgba(247,242,235,.98); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mobile-menu nav { display: grid; gap: 22px; text-align: center; }
  .mobile-menu a { font-family: var(--display); font-size: 38px; }
  .hero { grid-template-columns: 1fr .68fr; gap: 45px; }
  .hero-visual { width: min(410px, 39vw); }
  .floating-seal { width: 100px; height: 100px; left: -45px; }
  .section-head { gap: 50px; }
  .feature { gap: 60px; }
  .feature-media { padding-left: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid li:nth-child(2) { border-right: 0; }
  .process-grid li:nth-child(-n+2) { border-bottom: 1px solid rgba(41,36,32,.18); }
  .offer-panel { grid-template-columns: .42fr 1fr; }
  .offer-logo { padding: 30px; }
  .studio-motion { gap: 55px; }
  .instagram-grid { gap: 45px; }
  .instagram-collage img { height: 330px; }
  .instagram-collage img:nth-child(1) { height: 250px; }
  .instagram-collage img:nth-child(3) { height: 280px; }
}

@media (max-width: 760px) {
  :root { --container: calc(100vw - 34px); }
  .section-space { padding-block: 92px; }
  .site-header { padding: 14px 17px; }
  .brand-copy { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 110px; padding-bottom: 80px; }
  .hero-copy { position: relative; z-index: 4; }
  .hero h1 { font-size: clamp(56px, 17vw, 82px); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-note { margin-top: 34px; }
  .hero-visual { width: calc(100% - 32px); justify-self: end; margin-top: 24px; }
  .hero-arch { inset: -16px -16px 50%; }
  .floating-seal { width: 92px; height: 92px; left: -28px; bottom: 46px; }
  .hero-scroll { display: none; }
  .section-head, .intro-grid, .feature, .studio-motion, .instagram-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-head { margin-bottom: 42px; }
  .section-head h2, .intro h2, .feature h2, .offer h2, .contact h2, .instagram h2 { font-size: clamp(42px, 13vw, 64px); }
  .intro-grid { gap: 38px; }
  .event-row { grid-template-columns: 42px 1fr 26px; gap: 14px; padding: 22px 0; }
  .event-row small { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 230px; gap: 10px; }
  .gallery-card, .gallery-card.wide, .gallery-card.tall { grid-column: span 1; grid-row: span 2; }
  .gallery-card.wide { grid-column: span 2; grid-row: span 1; }
  .gallery-meta { left: 14px; right: 14px; bottom: 12px; }
  .gallery-meta strong { font-size: 17px; }
  .feature-media { order: 2; padding-inline: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li + li { min-height: auto; padding: 26px 0 30px; border-right: 0; border-bottom: 1px solid rgba(41,36,32,.18); }
  .process-grid li:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 36px; }
  .offer-panel { grid-template-columns: 1fr; }
  .offer-logo { display: none; }
  .offer-copy { padding: 52px 26px; }
  .studio-copy { order: 1; }
  .studio-media { order: 2; justify-self: center; width: min(88%, 400px); }
  .instagram-collage { gap: 7px; }
  .instagram-collage img { height: 240px; }
  .instagram-collage img:nth-child(1) { height: 190px; }
  .instagram-collage img:nth-child(3) { height: 205px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-card { padding: 30px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-grid > div { justify-content: center; }
  .footer-grid a, .footer-grid p { text-align: center; }
  .inquiry-dialog { padding: 32px 22px; }
  .inquiry-dialog h2 { font-size: 34px; }
}

@media (max-width: 460px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card.wide, .gallery-card.tall { grid-column: 1; grid-row: span 2; }
  .gallery-card.wide { grid-row: span 1; }
  .instagram-collage { grid-template-columns: 1fr 1fr; }
  .instagram-collage img { height: 230px !important; }
  .instagram-collage img:nth-child(3) { display: none; }
}

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

/* V2 — intentional video storytelling + live contact form */
.video-badge {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(30,26,23,.24);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1;
}
.feature-video .video-badge { top: 52px; }
.studio-copy h2 {
  font-size: clamp(44px,4.7vw,72px);
  max-width: 700px;
}
.studio-copy > p {
  max-width: 600px;
  margin: 26px 0 30px;
  color: var(--ink-soft);
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  min-height: 1.45em;
  margin: 0;
  font-size: 12px;
  color: var(--gold-deep);
}
.form-status.error { color: #9a3e36; }
.form-status.success { color: #556b45; }
.contact-form .btn[disabled] { opacity: .62; cursor: wait; }

@media (max-width:760px) {
  .video-badge { top: 12px; right: 12px; }
  .feature-video .video-badge { top: 48px; }
}
