:root {
  --ivory: #f4f0e8;
  --soft-white: #fcfbf8;
  --stone: #d8d1c5;
  --putty: #b5a897;
  --ink: #1e1e1b;
  --espresso: #40362f;
  --espresso-2: #2e2824;
  --line: rgba(30, 30, 27, 0.17);
  --light-line: rgba(255, 255, 255, 0.22);
  --serif: "Instrument Serif", "Iowan Old Style", Baskerville, Georgia, serif;
  --sans: "DM Sans", Inter, "Helvetica Neue", Arial, sans-serif;
  --shell: min(1320px, calc(100% - 64px));
  --header-height: 82px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--espresso); color: var(--soft-white); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(88px, 10vw, 150px) 0; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow-light { color: rgba(255,255,255,.72); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(54px, 6.6vw, 94px); }
h2 { font-size: clamp(48px, 5.2vw, 76px); }
h3 { font-size: clamp(30px, 3vw, 43px); }
h1 em, h2 em, h3 em { font-weight: 400; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  background: var(--ink);
  color: var(--soft-white);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.button:hover { background: var(--espresso); transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .nav-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.button-small { min-height: 44px; padding: 12px 17px; font-size: 11px; }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }
.button-light { background: var(--soft-white); color: var(--ink); border-color: var(--soft-white); }
.button-light:hover { background: transparent; color: var(--soft-white); }
.button-ghost-light { background: transparent; color: var(--soft-white); border-color: rgba(255,255,255,.6); }
.button-ghost-light:hover { background: var(--soft-white); color: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row-center { justify-content: center; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  padding: 8px 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
}
.text-link span[aria-hidden="true"] { transition: transform .25s var(--ease); }
.text-link:hover span[aria-hidden="true"] { transform: translateX(6px); }
.text-link-button { cursor: pointer; }
.text-link-light { color: var(--soft-white); }
.centered-action { text-align: center; margin-top: 56px; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(244, 240, 232, .93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 12px 30px rgba(20,20,16,.04); }
.header-inner { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand-mark { width: 39px; height: 39px; display: block; flex: 0 0 39px; overflow: hidden; }
.brand-mark-image { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-name { font-size: 13px; font-weight: 600; letter-spacing: .15em; white-space: nowrap; }
.brand-footer .brand-mark { width: 48px; height: 48px; flex-basis: 48px; }
.site-header .brand-name {
  font-family: "Pompiere", var(--sans);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: .08em;
  white-space: nowrap;
  line-height: 1;
}

.desktop-nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav-link {
  border: 0;
  background: transparent;
  padding: 9px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover { opacity: .62; }
.nav-link-art { padding-left: 28px; border-left: 1px solid var(--line); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 7px; }
.nav-dropdown-trigger svg { width: 9px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 21px);
  left: -28px;
  width: 470px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  padding: 30px;
  background: var(--soft-white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(35,30,27,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-dropdown.is-open .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-panel a { display: block; padding: 7px 0; font-size: 14px; text-decoration: none; }
.nav-dropdown-panel a:hover { text-decoration: underline; text-underline-offset: 4px; }
.menu-label { margin: 0 0 9px; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; opacity: .55; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 7px auto; background: var(--ink); transition: transform .2s; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: none; }

.hero {
  min-height: 100svh;
  padding-top: var(--header-height);
  background: var(--ivory);
}
.hero-inner {
  width: var(--shell);
  min-height: calc(100svh - var(--header-height));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(430px, .82fr) minmax(0, 1.18fr);
}
.hero-copy { display: flex; align-items: center; }
.hero-copy-inner {
  width: 100%;
  max-width: 590px;
  padding: 64px clamp(34px, 4vw, 68px) 64px 0;
}
.hero h1 { margin-bottom: 28px; font-size: clamp(54px, 5vw, 86px); }
.hero h1 em { display: inline-block; color: var(--espresso); }
.hero-intro { max-width: 580px; margin-bottom: 32px; font-size: clamp(17px, 1.3vw, 20px); color: rgba(30,30,27,.72); }
.hero-services { margin: 28px 0 0; font-size: 12px; letter-spacing: .02em; color: rgba(30,30,27,.65); }
.hero-services span { margin-inline: 7px; }
.hero-media { position: relative; min-height: calc(100svh - var(--header-height)); overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-image-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 16px;
  padding: 9px 12px;
  background: rgba(30,30,27,.72);
  color: white;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.trust-strip { background: var(--soft-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { min-height: 74px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-grid span { padding: 0 24px; text-align: center; font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; border-right: 1px solid var(--line); }
.trust-grid span:first-child { padding-left: 0; }
.trust-grid span:last-child { padding-right: 0; border-right: 0; }

.section-heading { margin-bottom: clamp(56px, 7vw, 96px); }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(48px, 8vw, 140px); align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 500px; margin-bottom: 4px; color: rgba(30,30,27,.7); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px 32px; }
.service-card-large { grid-row: span 2; }
.service-image { display: block; width: 100%; height: 335px; margin-bottom: 28px; padding: 0; overflow: hidden; border: 0; background: var(--stone); text-align: left; cursor: pointer; }
.service-card-large .service-image { height: 710px; }
.service-image-portrait { height: 355px; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-image:hover img { transform: scale(1.025); }
.service-card h3 { max-width: 750px; margin-bottom: 16px; font-size: clamp(31px, 3.4vw, 48px); }
.service-card:not(.service-card-large) h3 { font-size: clamp(28px, 2.6vw, 39px); }
.service-card > p:not(.eyebrow) { max-width: 580px; color: rgba(30,30,27,.68); }
.rental-feature { margin-top: clamp(80px, 10vw, 145px); display: grid; grid-template-columns: 1fr .85fr; min-height: 560px; background: var(--espresso); color: var(--soft-white); }
.rental-copy { padding: clamp(52px, 7vw, 94px); display: flex; flex-direction: column; justify-content: center; }
.rental-copy h3 { font-size: clamp(46px, 5vw, 72px); }
.rental-copy > p:not(.eyebrow) { max-width: 620px; color: rgba(255,255,255,.72); font-size: 17px; }
.rental-options { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 28px; }
.rental-options span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.26); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.rental-copy .text-link { color: white; align-self: flex-start; }
.rental-image { min-height: 500px; }
.rental-image img { width: 100%; height: 100%; object-fit: cover; }

.portfolio { background: var(--soft-white); }
.portfolio-heading { max-width: 850px; margin-bottom: 70px; }
.portfolio-heading p:last-child { max-width: 620px; color: rgba(30,30,27,.68); font-size: 17px; }
.portfolio-grid { display: grid; grid-template-columns: 1.22fr .78fr; gap: 28px; }
.project { position: relative; margin: 0; min-height: 390px; overflow: hidden; background: var(--stone); }
.project-wide { grid-row: span 2; min-height: 808px; }
.project img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .8s var(--ease); }
.project:hover img { transform: scale(1.025); }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,14,12,.62), transparent 48%); }
.project figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; color: white; }
.project figcaption span { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.project figcaption strong { display: block; max-width: 620px; font-family: var(--serif); font-size: clamp(27px, 3vw, 42px); font-weight: 400; line-height: 1; }

.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 120px 1fr; gap: 40px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-number { font-family: var(--serif); font-size: 38px; color: var(--putty); }
.process-list h3 { margin: 0 0 8px; font-size: clamp(32px, 3vw, 44px); }
.process-list p { max-width: 700px; margin-bottom: 0; color: rgba(30,30,27,.68); }

.packages { background: var(--espresso-2); color: var(--soft-white); }
.packages-heading { max-width: 850px; margin-bottom: 64px; }
.packages-heading h2 { font-size: clamp(50px, 5.6vw, 80px); }
.packages-heading p:last-child { max-width: 670px; color: rgba(255,255,255,.68); }
.package-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--light-line); border-bottom: 1px solid var(--light-line); }
.package-card { position: relative; min-height: 390px; padding: 38px 30px 42px; border-right: 1px solid var(--light-line); }
.package-card:last-child { border-right: 0; }
.package-card-featured { background: rgba(255,255,255,.06); }
.package-badge { position: absolute; top: 20px; right: 20px; padding: 5px 7px; border: 1px solid rgba(255,255,255,.34); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.package-name { margin-bottom: 50px; font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.package-card h3 { min-height: 80px; margin-bottom: 28px; font-size: 36px; }
.package-price { font-size: 13px; color: rgba(255,255,255,.68); }
.package-price strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 400; color: white; }
.package-card > p:last-child { color: rgba(255,255,255,.66); font-size: 14px; }
.package-actions { display: flex; align-items: center; gap: 28px; margin-top: 48px; }

.professionals { padding: 0; }
.professionals-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; }
.professionals-image img { width: 100%; height: 100%; object-fit: cover; }
.professionals-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(68px, 8vw, 128px); background: #ebe4da; }
.professionals-copy h2 { max-width: 730px; }
.professionals-copy > p:not(.eyebrow) { max-width: 640px; color: rgba(30,30,27,.7); font-size: 17px; }
.professionals-copy blockquote { margin: 70px 0 0; padding-top: 32px; border-top: 1px solid var(--line); font-family: var(--serif); font-size: clamp(24px, 2.3vw, 34px); line-height: 1.2; }
.professionals-copy cite { display: block; margin-top: 20px; font-family: var(--sans); font-size: 11px; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }

.testimonials { background: var(--soft-white); }
.testimonials-shell { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: start; }
.testimonial-intro h2 { font-size: clamp(48px, 4.8vw, 70px); }
.testimonial-stage { padding-left: 70px; border-left: 1px solid var(--line); }
.testimonial blockquote { margin: 0; max-width: 870px; font-family: var(--serif); font-size: clamp(35px, 4.1vw, 59px); line-height: 1.1; }
.testimonial p { margin-top: 34px; }
.testimonial p strong, .testimonial p span { display: block; }
.testimonial p strong { font-size: 13px; letter-spacing: .09em; text-transform: uppercase; }
.testimonial p span { color: rgba(30,30,27,.58); font-size: 13px; }
.testimonial-controls { display: flex; align-items: center; gap: 20px; margin-top: 55px; }
.testimonial-controls button { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.testimonial-controls button:hover { background: var(--ink); color: white; }
.testimonial-controls span { font-size: 11px; letter-spacing: .12em; }

.art-studio { padding: clamp(92px, 11vw, 160px) 0; background: #24211f; color: var(--soft-white); overflow: hidden; }
.art-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.art-wordmark { margin: 0 0 28px; font-size: 13px; font-weight: 600; letter-spacing: .28em; }
.art-copy h2 { font-size: clamp(50px, 5.5vw, 76px); }
.art-copy > p:not(.eyebrow):not(.art-wordmark) { max-width: 560px; color: rgba(255,255,255,.7); font-size: 17px; }
.art-copy .button { margin-top: 18px; }
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: end; }
.art-card { text-decoration: none; }
.art-card:nth-child(2) { transform: translateY(54px); }
.art-canvas { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #d7ccbd; box-shadow: 0 25px 60px rgba(0,0,0,.25); transition: transform .45s var(--ease); }
.art-card:hover .art-canvas { transform: translateY(-8px); }
.art-canvas::before, .art-canvas::after, .art-canvas span { content: ""; position: absolute; display: block; }
.art-canvas-one { background: #d5cec2; }
.art-canvas-one::before { width: 80%; height: 55%; left: -15%; top: 18%; border-radius: 50%; background: #8e8070; transform: rotate(-24deg); }
.art-canvas-one::after { width: 63%; height: 72%; right: -22%; bottom: -15%; border-radius: 52% 48% 40% 60%; background: #efe8dd; transform: rotate(22deg); }
.art-canvas-one span { width: 28%; height: 56%; left: 40%; top: 26%; border: 2px solid #3a342f; border-radius: 50%; transform: rotate(18deg); }
.art-canvas-two { background: linear-gradient(165deg, #dedbd4 0 55%, #716c66 56% 100%); }
.art-canvas-two::before { width: 150%; height: 28%; left: -20%; top: 22%; background: rgba(255,255,255,.78); transform: rotate(-16deg); }
.art-canvas-two::after { width: 130%; height: 17%; left: -10%; bottom: 27%; background: #2f2d2b; transform: rotate(11deg); }
.art-canvas-two span { width: 65%; height: 1px; left: 17%; top: 51%; background: rgba(255,255,255,.5); transform: rotate(-32deg); }
.art-canvas-three { background: #c8b398; }
.art-canvas-three::before { width: 52%; height: 80%; left: 9%; bottom: -10%; border-radius: 50% 50% 42% 58%; background: #463d35; transform: rotate(-10deg); }
.art-canvas-three::after { width: 67%; height: 62%; right: -18%; top: -7%; border-radius: 50%; background: #eee4d6; }
.art-canvas-three span { width: 22%; height: 54%; right: 25%; bottom: 9%; background: #aa5b3c; transform: rotate(11deg); }
.art-card-label { display: flex; justify-content: space-between; align-items: center; margin-top: 15px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(70px, 10vw, 150px); align-items: center; }
.about-image { height: min(760px, 70vw); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 44%; }
.about-copy { max-width: 700px; }
.about-copy h2 { font-size: clamp(56px, 6vw, 82px); }
.about-lead { font-family: var(--serif); font-size: clamp(27px, 3vw, 41px); line-height: 1.15; }
.about-copy p:not(.eyebrow):not(.about-lead) { color: rgba(30,30,27,.7); }

.final-cta { padding: clamp(100px, 12vw, 175px) 0; background: var(--espresso); color: var(--soft-white); text-align: center; }
.final-cta-inner { max-width: 980px; }
.final-cta h2 { font-size: clamp(56px, 7vw, 94px); }
.final-cta p:not(.eyebrow) { max-width: 640px; margin: 0 auto 34px; color: rgba(255,255,255,.7); font-size: 18px; }

.site-footer { padding: 78px 0 28px; background: #1f1d1b; color: var(--soft-white); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 60px; }
.brand-footer .brand-mark { border-color: var(--soft-white); }
.footer-brand > p { max-width: 380px; color: rgba(255,255,255,.62); font-size: 14px; }
.footer-grid > div:not(.footer-brand) a { display: block; padding: 4px 0; color: rgba(255,255,255,.66); font-size: 13px; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-heading { margin-bottom: 18px; font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 72px; padding-top: 22px; border-top: 1px solid var(--light-line); color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
.mobile-sticky-cta { display: none; }

.quote-dialog {
  width: min(1150px, calc(100vw - 40px));
  max-height: min(840px, calc(100svh - 40px));
  padding: 0;
  border: 0;
  background: var(--soft-white);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}
.quote-dialog::backdrop { background: rgba(18,16,14,.68); backdrop-filter: blur(4px); }
.dialog-layout { display: grid; grid-template-columns: .7fr 1.3fr; min-height: 700px; }
.dialog-intro { position: relative; padding: 65px 48px; background: var(--espresso); color: white; }
.dialog-intro h2 { font-size: clamp(45px, 5vw, 66px); }
.dialog-intro > p:not(.eyebrow) { color: rgba(255,255,255,.7); }
.dialog-intro ul { margin: 42px 0 0; padding: 0; list-style: none; }
.dialog-intro li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-size: 13px; }
.dialog-close { position: absolute; top: 18px; left: 18px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: white; font-size: 25px; cursor: pointer; }
.dialog-form-wrap { overflow-y: auto; padding: 52px; }
.quote-form { display: grid; gap: 22px; }
.quote-form label, .quote-form legend { font-size: 12px; font-weight: 600; letter-spacing: .05em; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: white;
  color: var(--ink);
}
.quote-form input, .quote-form select { min-height: 49px; }
.quote-form textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.quote-form fieldset { margin: 0; padding: 0; border: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 9px; }
.choice-grid label { cursor: pointer; }
.choice-grid input { position: absolute; opacity: 0; pointer-events: none; }
.choice-grid span { min-height: 48px; display: grid; place-items: center; padding: 7px; border: 1px solid var(--line); background: white; text-align: center; font-size: 11px; }
.choice-grid input:checked + span { background: var(--ink); color: white; border-color: var(--ink); }
.file-field { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 10px 14px; }
.file-field input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.file-field span { grid-row: 1 / span 2; padding: 12px 16px; border: 1px solid var(--ink); cursor: pointer; }
.file-field small { color: rgba(30,30,27,.55); font-weight: 400; }
.form-submit { width: 100%; }
.form-note { margin: -5px 0 0; color: rgba(30,30,27,.5); font-size: 11px; }
.form-success { max-width: 520px; margin: 90px auto; text-align: center; }
.form-success h3 { font-size: 48px; }
.toast { position: fixed; z-index: 1500; left: 50%; bottom: 30px; transform: translateX(-50%); padding: 12px 17px; background: var(--ink); color: white; font-size: 12px; box-shadow: 0 10px 30px rgba(0,0,0,.22); }

.reveal, .reveal-media { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-media { transform: translateY(0) scale(.985); }
.reveal.is-visible, .reveal-media.is-visible { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 40px, 1320px); }
  .desktop-nav { gap: 18px; }
  .header-cta { display: none; }
  .header-inner { grid-template-columns: auto 1fr; }
  .desktop-nav { justify-self: end; }
  .hero-inner { grid-template-columns: 48% 52%; }
  .hero-copy-inner { width: 100%; max-width: none; padding-right: 32px; }
  .package-card { padding: 34px 20px; }
  .package-card h3 { font-size: 31px; }
  .art-layout { grid-template-columns: 1fr; }
  .art-copy { max-width: 850px; }
  .art-grid { max-width: 850px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; --shell: min(100% - 34px, 1320px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .mobile-menu {
    display: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100svh - var(--header-height));
    padding: 26px 0 40px;
    background: var(--ivory);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s, visibility .25s, transform .25s;
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu-inner { display: flex; flex-direction: column; }
  .mobile-menu a, .mobile-menu summary { padding: 13px 0; font-family: var(--serif); font-size: 28px; line-height: 1; text-decoration: none; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary::after { content: "+"; float: right; font-family: var(--sans); font-size: 18px; }
  .mobile-menu details[open] summary::after { content: "−"; }
  .mobile-submenu { padding: 10px 0 16px 18px; }
  .mobile-submenu a { padding: 8px 0; font-family: var(--sans); font-size: 13px; }
  .mobile-divider { height: 1px; margin: 15px 0; background: var(--line); }
  .mobile-division { margin: 5px 0 8px; font-size: 10px; font-weight: 600; letter-spacing: .18em; }
  .mobile-menu-cta { margin-top: 22px; }

  .hero { min-height: auto; }
  .hero-inner { width: 100%; min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 690px; }
  .hero-copy-inner { width: var(--shell); margin-inline: auto; padding: 90px 0 72px; }
  .hero-media { min-height: 70svh; }
  .trust-grid { grid-template-columns: 1fr 1fr; padding: 14px 0; }
  .trust-grid span { padding: 15px; border-bottom: 1px solid var(--line); }
  .trust-grid span:nth-child(2) { border-right: 0; }
  .trust-grid span:nth-child(3), .trust-grid span:nth-child(4) { border-bottom: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 70px 24px; }
  .service-card-large { grid-row: auto; grid-column: 1 / -1; }
  .service-card-large .service-image { height: 660px; }
  .rental-feature { grid-template-columns: 1fr; }
  .rental-image { height: 520px; grid-row: 1; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .project-wide { grid-row: auto; grid-column: 1 / -1; min-height: 650px; }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .package-card { border-bottom: 1px solid var(--light-line); }
  .package-card:nth-child(2) { border-right: 0; }
  .package-card:nth-child(3), .package-card:nth-child(4) { border-bottom: 0; }
  .professionals-grid { grid-template-columns: 1fr; }
  .professionals-image { height: 620px; }
  .testimonials-shell { grid-template-columns: 1fr; gap: 45px; }
  .testimonial-stage { padding-left: 0; padding-top: 45px; border-left: 0; border-top: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-intro { min-height: 320px; padding: 70px 40px 42px; }
  .dialog-intro ul { display: none; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 62px; }
  .section { padding: 84px 0; }
  .brand-mark { width: 35px; height: 35px; flex-basis: 35px; }
  .brand-name { font-size: 11px; letter-spacing: .12em; }
  .site-header .brand-name { font-size: 18px; letter-spacing: .07em; }
  .hero-copy { min-height: auto; }
  .hero-copy-inner { padding: 75px 0 58px; }
  .hero h1 { font-size: clamp(52px, 16vw, 72px); }
  .hero-intro { font-size: 17px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .hero-services { line-height: 1.9; }
  .hero-services span { margin-inline: 3px; }
  .hero-media { min-height: 63svh; }
  .hero-image-note { right: 10px; bottom: 10px; gap: 8px; font-size: 8px; }
  .trust-grid span { font-size: 9px; }
  h2 { font-size: clamp(45px, 14vw, 62px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-large { grid-column: auto; }
  .service-card-large .service-image, .service-image, .service-image-portrait { height: 410px; }
  .rental-feature { margin-inline: -14px; }
  .rental-copy { padding: 52px 28px; }
  .rental-image { height: 430px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project, .project-wide { grid-column: auto; min-height: 480px; }
  .process-list li { grid-template-columns: 58px 1fr; gap: 18px; padding: 32px 0; }
  .process-number { font-size: 30px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--light-line) !important; }
  .package-card:last-child { border-bottom: 0 !important; }
  .package-name { margin-bottom: 28px; }
  .package-card h3 { min-height: auto; }
  .package-actions { flex-direction: column; align-items: flex-start; }
  .professionals-image { height: 500px; }
  .professionals-copy { padding: 70px 22px; }
  .professionals-copy blockquote { margin-top: 52px; }
  .testimonial blockquote { font-size: 38px; }
  .art-grid { grid-template-columns: 1fr 1fr; }
  .art-card:nth-child(2) { transform: none; }
  .art-card:nth-child(3) { grid-column: 1 / -1; width: calc(50% - 9px); margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 620px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 45px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    z-index: 900;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 62px;
    border: 0;
    background: var(--ink);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
  }
  .quote-dialog { width: 100vw; max-height: 100svh; height: 100svh; margin: 0; }
  .dialog-layout { min-height: 100%; }
  .dialog-intro { min-height: 270px; padding: 65px 24px 35px; }
  .dialog-intro h2 { font-size: 46px; }
  .dialog-form-wrap { padding: 34px 20px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
}

@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, .reveal-media { opacity: 1; transform: none; }
}
