:root {
  --aubergine: #45223f;
  --plum: #5f365c;
  --lavender: #9c88b2;
  --periwinkle: #9298c8;
  --peach: #e89a82;
  --thread: #dd8f79;
  --ivory: #fff9f1;
  --paper: #f8f0ea;
  --ink: #301b2c;
  --muted: #755f70;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

/* Scroll reveal: elements rise into place as they enter the viewport and stay visible. */
@keyframes scroll-reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(.988);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@supports (animation-timeline: view()) {
  [data-reveal] {
    animation-name: scroll-reveal-up;
    animation-duration: 1ms;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1);
    animation-timeline: view();
    animation-range: entry 0% entry 38%;
    will-change: opacity, transform, filter;
  }
}

/* JavaScript fallback for browsers without scroll-driven CSS animations. */
@supports not (animation-timeline: view()) {
  .js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(.988);
    filter: blur(3px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1), filter .75s ease;
  }

  .js [data-reveal].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 20px;
  background: var(--aubergine);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(22px, 5vw, 80px);
  border-bottom: 1px solid rgba(69,34,63,.12);
  background: rgba(255,249,241,.92);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-full { width: 310px; height: auto; display: block; }
.brand-mark, .brand-mobile-name { display: none; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.desktop-nav a { font-size: 14px; font-weight: 650; text-decoration: none; }
.desktop-nav a:not(.nav-cta) { position: relative; }
.desktop-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px;
  background: var(--thread); transition: right .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 13px 20px; border-radius: 999px; background: var(--aubergine); color: var(--ivory); }
.mobile-nav { display: none; }

.hero {
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding: clamp(62px, 8vw, 120px) clamp(24px, 6vw, 98px) clamp(76px, 9vw, 130px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(232,154,130,.22), transparent 28%),
    linear-gradient(135deg, var(--ivory), #f8eef7 58%, #eeeafa);
}
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Didot, "Bodoni 72", Georgia, serif; font-weight: 400; }
h1 { max-width: 760px; margin: 0; font-size: clamp(58px, 6.6vw, 106px); line-height: .92; letter-spacing: -.055em; }
.hero-intro { max-width: 660px; margin: 32px 0 0; color: var(--muted); font-size: clamp(17px, 1.35vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 27px; border-radius: 999px; font-size: 14px; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--aubergine); color: var(--ivory); box-shadow: 0 14px 35px rgba(69,34,63,.22); }
.button-primary:hover { background: #5b2d54; }
.text-link { font-size: 15px; font-weight: 750; text-decoration-color: var(--thread); text-underline-offset: 6px; }
.text-link span { color: var(--thread); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 45px; }
.hero-proof span { padding: 8px 13px; border: 1px solid rgba(69,34,63,.17); border-radius: 999px; color: var(--plum); background: rgba(255,255,255,.42); font-size: 12px; font-weight: 700; }

.hero-art { position: relative; max-width: 680px; justify-self: end; }
.hero-photo-wrap { padding: 15px; border-radius: 48% 48% 20px 20px; background: var(--ivory); box-shadow: 0 30px 90px rgba(69,34,63,.2); transform: rotate(1.7deg); }
.hero-photo { width: 100%; aspect-ratio: .88; display: block; object-fit: cover; object-position: 50% 42%; border-radius: 48% 48% 14px 14px; }
.hero-badge { position: absolute; left: -42px; bottom: 62px; width: 176px; height: 176px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 22px; border-radius: 50%; text-align: center; color: var(--ivory); background: var(--aubergine); box-shadow: 0 18px 45px rgba(69,34,63,.28); transform: rotate(-7deg); }
.hero-badge::before { content: ""; position: absolute; inset: 10px; border: 2px dashed rgba(255,249,241,.56); border-radius: 50%; }
.hero-badge strong { position: relative; font: 28px/1 Didot, Georgia, serif; }
.hero-badge span { position: relative; margin-top: 8px; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.quilt-corner { position: absolute; right: -56px; top: -52px; width: 130px; display: grid; grid-template-columns: 1fr 1fr; transform: rotate(7deg); opacity: .92; }
.quilt-corner i { aspect-ratio: 1; clip-path: polygon(0 0,100% 0,0 100%); }
.quilt-corner i:nth-child(1), .quilt-corner i:nth-child(4) { background: var(--peach); }
.quilt-corner i:nth-child(2), .quilt-corner i:nth-child(3) { background: var(--lavender); transform: rotate(180deg); }

.marquee { overflow: hidden; background: var(--peach); color: var(--aubergine); }
.marquee div { min-width: max-content; display: flex; justify-content: center; align-items: center; gap: 34px; padding: 18px 30px; font: 24px/1 Didot, Georgia, serif; }
.marquee b { color: var(--ivory); font-size: 14px; }

.work-section, .process-section { padding: clamp(82px, 10vw, 150px) clamp(24px, 6vw, 98px); }
.section-heading h2 { max-width: 930px; margin: 0; font-size: clamp(48px, 5vw, 80px); line-height: 1; letter-spacing: -.04em; }
.split-heading { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 70px; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; line-height: 1.7; }

.gallery { margin-top: 54px; }
.gallery-stage { position: relative; overflow: hidden; border-radius: 28px; background: #d9ccd8; box-shadow: 0 24px 60px rgba(69,34,63,.13); }
.gallery-stage > img { width: 100%; height: clamp(420px, 59vw, 780px); display: block; object-fit: cover; animation: gallery-in .45s ease; }
.gallery-stage > img[src*="finished"] { object-position: center 37%; }
.gallery-stage > img[src*="studio"] { object-position: center 48%; }
@keyframes gallery-in { from { opacity: .3; transform: scale(1.015); } to { opacity: 1; transform: scale(1); } }
.gallery-caption { position: absolute; left: 24px; bottom: 24px; max-width: min(480px, calc(100% - 48px)); padding: 18px 22px; border-radius: 16px; color: var(--ivory); background: rgba(45,24,41,.82); backdrop-filter: blur(14px); }
.gallery-caption span { display: block; margin-bottom: 4px; color: #e5b1a2; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gallery-caption strong { font: 23px/1.2 Didot, Georgia, serif; }
.gallery-controls { position: absolute; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 14px; padding: 8px; border-radius: 999px; color: var(--ivory); background: rgba(45,24,41,.82); backdrop-filter: blur(14px); }
.gallery-controls button { width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--aubergine); background: var(--ivory); cursor: pointer; font-size: 20px; }
.gallery-controls span { min-width: 54px; text-align: center; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.gallery-thumbnails { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.gallery-thumbnails button { position: relative; overflow: hidden; min-height: 150px; padding: 0; border: 0; border-radius: 17px; background: #d8ccd6; cursor: pointer; opacity: .56; transition: opacity .2s ease, transform .2s ease; }
.gallery-thumbnails button:hover, .gallery-thumbnails button.active { opacity: 1; transform: translateY(-3px); }
.gallery-thumbnails button.active { outline: 3px solid var(--thread); outline-offset: 3px; }
.gallery-thumbnails img { width: 100%; height: 160px; display: block; object-fit: cover; }
.gallery-thumbnails span { position: absolute; inset: auto 10px 10px; padding: 8px; border-radius: 9px; color: white; background: rgba(45,24,41,.72); font-size: 11px; font-weight: 800; }
.gallery-cta-row { display: flex; align-items: center; gap: 20px; margin-top: 30px; }
.gallery-cta-row > span { color: var(--muted); font-size: 13px; font-weight: 650; }

.services-section { padding: clamp(86px, 10vw, 150px) clamp(24px, 6vw, 98px); color: var(--ivory); background: var(--aubergine); }
.light-eyebrow { color: #e6aa98; }
.services-section .section-heading h2 { max-width: 860px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 64px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.13); }
.service-card { min-height: 370px; display: flex; flex-direction: column; padding: clamp(26px, 3vw, 42px); background: var(--aubergine); transition: background .25s ease, transform .25s ease; }
.service-card:hover { position: relative; z-index: 2; background: #56304f; transform: translateY(-7px); }
.service-number { color: var(--peach); font-size: 12px; font-weight: 800; letter-spacing: .17em; }
.service-card h3 { margin: 60px 0 18px; font-size: clamp(31px, 2.6vw, 44px); line-height: 1; }
.service-card p { margin: 0; color: #d8cad4; font-size: 15px; line-height: 1.7; }
.service-card a { margin-top: auto; padding-top: 30px; color: var(--ivory); font-size: 13px; font-weight: 800; text-decoration-color: var(--peach); text-underline-offset: 6px; }
.service-card a span { color: var(--peach); }

.turnaround-callout { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: clamp(50px, 8vw, 130px); padding: clamp(76px, 9vw, 125px) clamp(24px, 7vw, 115px); background: linear-gradient(135deg, #f6e4de, var(--ivory) 58%, #eeeafa); }
.turnaround-callout h2 { max-width: 760px; margin: 0; font-size: clamp(48px, 5.5vw, 84px); line-height: .96; letter-spacing: -.045em; }
.turnaround-callout > div:last-child { max-width: 680px; }
.turnaround-callout > div:last-child p { margin: 0 0 28px; color: var(--muted); font-size: 18px; line-height: 1.7; }

.process-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 9vw, 150px); background: var(--paper); }
.process-intro h2 { margin: 0; font-size: clamp(48px, 5vw, 78px); line-height: 1; letter-spacing: -.04em; }
.process-intro > p:last-child { margin: 28px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 72px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid rgba(69,34,63,.18); }
.process-list li:last-child { border-bottom: 1px solid rgba(69,34,63,.18); }
.process-list > li > span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: var(--ivory); background: var(--aubergine); font: 24px Didot, Georgia, serif; }
.process-list h3 { margin: 2px 0 8px; font-size: 30px; }
.process-list p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; }
.about-images { position: relative; min-height: 720px; overflow: hidden; background: #bcae9f; }
.about-main { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 46%; }
.about-detail { position: absolute; right: 28px; bottom: 28px; width: 38%; aspect-ratio: .86; object-fit: cover; border: 11px solid var(--ivory); box-shadow: 0 18px 45px rgba(48,27,44,.24); }
.about-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(64px, 8vw, 130px); background: linear-gradient(145deg, #f4e6f1, #e9e6fb); }
.about-copy h2 { margin: 0; font-size: clamp(47px, 4.7vw, 76px); line-height: 1; letter-spacing: -.045em; }
.about-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 17px; line-height: 1.72; }
.signature-card { display: flex; align-items: center; gap: 18px; margin-top: 34px; padding-top: 26px; border-top: 1px solid rgba(69,34,63,.16); }
.signature-card img { width: 72px; height: 72px; object-fit: contain; }
.signature-card strong, .signature-card span { display: block; }
.signature-card strong { font: 22px Didot, Georgia, serif; }
.signature-card span { margin-top: 5px; color: var(--muted); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.contact-section { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; padding: clamp(80px, 10vw, 145px) clamp(24px, 7vw, 115px); color: var(--ivory); background: var(--aubergine); }
.contact-copy h2 { max-width: 900px; margin: 0; font-size: clamp(54px, 6.4vw, 96px); line-height: .95; letter-spacing: -.045em; }
.contact-copy > p:not(.eyebrow) { max-width: 710px; margin: 28px 0 0; color: #d8cad4; font-size: 17px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-top: 28px; color: #e9dde5; font-size: 14px; font-style: normal; line-height: 1.55; }
.contact-details strong { color: var(--ivory); font: 24px Didot, Georgia, serif; }
.contact-details a { color: #f0b09c; font-weight: 750; text-underline-offset: 4px; }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: 14px; }
.button-light { color: var(--aubergine); background: var(--ivory); }
.button-outline { border: 1px solid rgba(255,255,255,.48); color: var(--ivory); }
.facebook-link { margin-top: 14px; text-align: center; color: #f0b09c; font-size: 13px; font-weight: 800; text-underline-offset: 6px; }

footer { display: flex; align-items: center; justify-content: space-between; gap: 70px; padding: 46px clamp(24px, 6vw, 98px); color: #d7cad3; background: #2e172a; }
.footer-brand img { display: block; width: min(390px, 100%); }
.footer-meta { text-align: right; }
.footer-meta p { margin: 4px 0; font-size: 12px; line-height: 1.5; }

/* Full gallery page */
.desktop-nav a[aria-current="page"] { color: var(--plum); font-weight: 800; }
.gallery-hero { min-height: 610px; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: clamp(60px, 9vw, 150px); padding: clamp(88px, 10vw, 150px) clamp(24px, 6vw, 98px); background: radial-gradient(circle at 85% 10%, rgba(156,136,178,.28), transparent 30%), linear-gradient(145deg, var(--ivory), #f3e7f1); }
.gallery-hero h1 { max-width: 980px; }
.gallery-hero > div:first-child > p:not(.eyebrow) { max-width: 760px; margin: 30px 0 24px; color: var(--muted); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.7; }
.gallery-tally { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid rgba(69,34,63,.15); background: rgba(69,34,63,.15); }
.gallery-tally div { min-height: 180px; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; background: rgba(255,249,241,.78); }
.gallery-tally strong { font: clamp(48px, 5vw, 74px)/1 Didot, Georgia, serif; color: var(--aubergine); }
.gallery-tally span { margin-top: 10px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.full-gallery { padding: clamp(78px, 9vw, 130px) clamp(18px, 4vw, 64px); background: var(--paper); }
.full-gallery-toolbar { display: flex; justify-content: space-between; align-items: end; gap: 50px; margin: 0 auto 46px; max-width: 1500px; }
.full-gallery-toolbar h2 { max-width: 820px; margin: 0; font-size: clamp(42px, 4.5vw, 70px); line-height: 1; letter-spacing: -.04em; }
.gallery-filters { display: flex; gap: 8px; padding: 6px; border: 1px solid rgba(69,34,63,.14); border-radius: 999px; background: var(--ivory); }
.gallery-filters button { min-height: 42px; padding: 0 18px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font: inherit; font-size: 12px; font-weight: 800; }
.gallery-filters button.active { color: var(--ivory); background: var(--aubergine); }
.full-gallery-grid { max-width: 1500px; margin: 0 auto; columns: 4 260px; column-gap: 15px; }
.full-gallery-card { position: relative; width: 100%; display: block; break-inside: avoid; overflow: hidden; margin: 0 0 15px; padding: 0; border: 0; border-radius: 16px; color: white; background: #d8ccd6; cursor: zoom-in; box-shadow: 0 8px 24px rgba(48,27,44,.08); }
.full-gallery-card img { width: 100%; height: auto; display: block; transition: transform .45s cubic-bezier(.22,1,.36,1), filter .35s ease; }
.full-gallery-card > span { position: absolute; inset: auto 10px 10px; display: flex; align-items: center; gap: 8px; padding: 8px 11px; border-radius: 9px; background: rgba(45,24,41,.76); backdrop-filter: blur(10px); font-size: 11px; font-weight: 800; opacity: 0; transform: translateY(6px); transition: opacity .25s ease, transform .25s ease; }
.full-gallery-card:hover img, .full-gallery-card:focus-visible img { transform: scale(1.025); filter: saturate(1.08); }
.full-gallery-card:hover > span, .full-gallery-card:focus-visible > span, .video-card > span { opacity: 1; transform: none; }
.video-card > span { background: var(--aubergine); }
.video-card > span b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--aubergine); background: var(--ivory); font-size: 9px; }
.load-more-wrap { display: flex; flex-direction: column; align-items: center; gap: 13px; margin-top: 52px; }
.load-more-wrap p { margin: 0; color: var(--muted); font-size: 12px; font-weight: 750; }
.load-more-wrap button[hidden] { display: none; }
.gallery-contact { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: clamp(72px, 9vw, 120px) clamp(24px, 7vw, 115px); color: var(--ivory); background: var(--aubergine); }
.gallery-contact h2 { margin: 0; font-size: clamp(52px, 6vw, 88px); line-height: .95; letter-spacing: -.04em; }
.lightbox-open { overflow: hidden; }
.lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: 20px clamp(12px, 3vw, 48px); border: 0; color: white; background: rgba(26,13,24,.96); }
.lightbox[open] { display: grid; grid-template-columns: 58px minmax(0,1fr) 58px; align-items: center; gap: clamp(8px, 2vw, 28px); }
.lightbox::backdrop { background: rgba(26,13,24,.88); }
.lightbox-content { min-width: 0; height: calc(100dvh - 40px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lightbox-content img, .lightbox-content video { max-width: 100%; max-height: calc(100dvh - 110px); object-fit: contain; border-radius: 8px; box-shadow: 0 18px 70px rgba(0,0,0,.45); }
.lightbox-content [hidden] { display: none; }
.lightbox-caption { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding-top: 13px; color: #eadfe7; font-size: 12px; }
.lightbox-caption strong { font-size: 13px; }
.lightbox-close, .lightbox-arrow { border: 1px solid rgba(255,255,255,.24); color: white; background: rgba(255,255,255,.09); cursor: pointer; }
.lightbox-close { position: fixed; z-index: 2; top: 18px; right: 20px; width: 44px; height: 44px; border-radius: 50%; font-size: 28px; line-height: 1; }
.lightbox-arrow { width: 54px; height: 54px; border-radius: 50%; font-size: 22px; }
.lightbox-close:hover, .lightbox-arrow:hover { background: rgba(255,255,255,.18); }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav summary { padding: 11px 15px; border: 1px solid rgba(69,34,63,.22); border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 800; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav > div { position: absolute; right: 0; top: 52px; width: 230px; display: flex; flex-direction: column; gap: 4px; padding: 12px; border: 1px solid rgba(69,34,63,.12); border-radius: 17px; background: var(--ivory); box-shadow: 0 18px 45px rgba(69,34,63,.18); }
  .mobile-nav a { padding: 12px 13px; border-radius: 9px; text-decoration: none; font-size: 14px; font-weight: 750; }
  .mobile-nav a:hover { background: #f2e7ee; }
  .hero { grid-template-columns: 1fr 1fr; gap: 46px; }
  .hero-badge { left: -20px; width: 145px; height: 145px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .announcement { gap: 7px; font-size: 9px; letter-spacing: .1em; }
  .site-header { height: 76px; padding: 9px 18px; }
  .brand-full { display: none; }
  .brand-mark { width: 48px; height: 48px; display: block; object-fit: contain; }
  .brand-mobile-name { display: block; margin-left: 9px; font: 25px Didot, Georgia, serif; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 64px; }
  .hero-art { width: min(88%, 520px); justify-self: center; margin-top: 12px; }
  .hero-badge { left: -7%; bottom: 30px; }
  .quilt-corner { right: -30px; top: -30px; width: 100px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .gallery-caption { left: 14px; bottom: 14px; }
  .gallery-controls { right: 14px; bottom: 14px; }
  .process-section { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-images { min-height: 620px; }
  .contact-section { grid-template-columns: 1fr; }
  .turnaround-callout { grid-template-columns: 1fr; align-items: start; }
  footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
  .gallery-hero { min-height: auto; grid-template-columns: 1fr; align-items: start; gap: 45px; }
  .gallery-tally { max-width: 560px; }
  .full-gallery-toolbar { align-items: flex-start; flex-direction: column; }
  .gallery-contact { align-items: flex-start; flex-direction: column; }
  .lightbox[open] { grid-template-columns: 44px minmax(0,1fr) 44px; gap: 4px; padding-inline: 6px; }
  .lightbox-arrow { width: 42px; height: 42px; }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero { padding-inline: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-art { width: 92%; }
  .hero-badge { width: 126px; height: 126px; padding: 15px; }
  .hero-badge strong { font-size: 23px; }
  .hero-proof { gap: 7px; }
  .marquee div { justify-content: flex-start; }
  .work-section, .process-section, .services-section { padding-inline: 18px; }
  .gallery-stage > img { height: 500px; }
  .gallery-caption { max-width: calc(100% - 28px); right: 14px; bottom: 74px; }
  .gallery-controls { left: 14px; right: auto; }
  .gallery-thumbnails { gap: 8px; }
  .gallery-thumbnails button { min-height: 88px; }
  .gallery-thumbnails img { height: 100px; }
  .gallery-thumbnails span { display: none; }
  .gallery-cta-row { align-items: flex-start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 325px; }
  .process-list li { grid-template-columns: 54px 1fr; gap: 16px; }
  .about-images { min-height: 520px; }
  .about-detail { right: 16px; bottom: 16px; width: 44%; border-width: 7px; }
  .about-copy, .contact-section { padding-inline: 22px; }
  .contact-actions .button { width: 100%; }
  .turnaround-callout { padding-inline: 22px; }
  .gallery-tally div { min-height: 140px; padding: 18px; }
  .gallery-tally strong { font-size: 48px; }
  .gallery-filters { width: 100%; }
  .gallery-filters button { flex: 1; padding-inline: 10px; }
  .full-gallery-grid { columns: 2 145px; column-gap: 8px; }
  .full-gallery-card { margin-bottom: 8px; border-radius: 10px; }
  .full-gallery-card > span { display: none; }
  .lightbox[open] { grid-template-columns: 1fr; padding: 8px; }
  .lightbox-content { height: calc(100dvh - 78px); }
  .lightbox-arrow { position: fixed; z-index: 3; bottom: 17px; }
  .lightbox-previous { left: 16px; }
  .lightbox-next { right: 16px; }
  .lightbox-caption { padding-inline: 56px; }
}

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