:root {
  --ivory: #fbf8f2;
  --white: #ffffff;
  --cream: #f3ebdd;
  --cream-deep: #e9dfcf;
  --gold: #c9a253;
  --gold-light: #e6d09a;
  --gold-pale: #f1e5c5;
  --charcoal: #2c2925;
  --charcoal-soft: #3b3732;
  --taupe: #8b8174;
  --sage: #8b9787;
  --line: rgba(44, 41, 37, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-soft: 0 20px 60px rgba(52, 42, 29, 0.09);
  --shadow-card: 0 18px 45px rgba(52, 42, 29, 0.08);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1220px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  z-index: 1000;
  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='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p { margin: 0 0 1.2rem; }
h1, h2, h3, h4 { margin: 0; color: inherit; font-family: var(--serif); font-weight: 600; line-height: 0.98; letter-spacing: -0.025em; }
h1 { font-size: clamp(3.5rem, 7.7vw, 7.5rem); }
h2 { font-size: clamp(3rem, 5.5vw, 5.6rem); }
h3 { font-size: clamp(2.15rem, 3.6vw, 3.6rem); }
h4 { font-size: clamp(1.7rem, 2.3vw, 2.3rem); line-height: 1.08; }
em { color: var(--gold); font-weight: 500; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(88px, 10vw, 150px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.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: 1rem; top: -100px; z-index: 9999; padding: .85rem 1rem; background: var(--charcoal); color: var(--white); border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span { margin-inline: .4rem; color: var(--taupe); }
.eyebrow--light { color: var(--gold-light); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--gold { color: #241e14; background: linear-gradient(135deg, var(--gold-light), var(--gold)); box-shadow: 0 12px 28px rgba(159, 119, 45, .22); }
.button--gold:hover { box-shadow: 0 16px 34px rgba(159, 119, 45, .32); }
.button--small { min-height: 44px; padding: .7rem 1.15rem; font-size: .7rem; }
.button--full { width: 100%; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .2rem 0;
  border: 0;
  border-bottom: 1px solid rgba(44,41,37,.28);
  background: transparent;
  color: var(--charcoal);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.4;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, gap .2s ease;
}
.text-link:hover { gap: .9rem; color: #9f772d; border-color: var(--gold); }
.text-link--light { color: var(--white); border-color: rgba(255,255,255,.35); }
.text-link--light:hover { color: var(--gold-light); }

:focus-visible { outline: 3px solid rgba(201,162,83,.55); outline-offset: 4px; }

.utility-bar { position: relative; z-index: 60; background: var(--charcoal); color: rgba(255,255,255,.84); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.utility-bar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.utility-links { display: flex; align-items: center; gap: .75rem; }
.utility-links a:hover { color: var(--gold-light); }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,248,242,.9); border-bottom: 1px solid transparent; backdrop-filter: blur(16px); transition: border-color .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(44,41,37,.05); }
.nav-wrap { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: 210px; display: flex; align-items: center; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.3vw, 2.2rem); }
.primary-nav > a:not(.button) { font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; transition: color .2s ease; }
.primary-nav > a:not(.button):hover { color: #9f772d; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: transparent; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { width: 18px; height: 1.5px; background: var(--charcoal); transition: transform .25s ease, opacity .25s ease; }

.hero { padding-top: clamp(70px, 8vw, 120px); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; right: -250px; top: -220px; border-radius: 50%; background: radial-gradient(circle, rgba(230,208,154,.34), rgba(230,208,154,0) 68%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: center; gap: clamp(50px, 7vw, 105px); }
.hero-copy h1 { max-width: 760px; }
.hero-copy h1 em { display: inline-block; }
.hero-lead { max-width: 670px; margin: 2rem 0 2.1rem; color: #5e574e; font-size: clamp(1rem, 1.25vw, 1.18rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.trust-line { margin-top: 2rem; display: flex; align-items: center; gap: .75rem; color: var(--taupe); font-size: .77rem; font-weight: 600; letter-spacing: .035em; }
.trust-line__mark { color: var(--gold); }
.hero-collage { position: relative; min-height: 690px; isolation: isolate; }
.hero-collage::before { content: ""; position: absolute; inset: 40px 45px 32px 35px; border: 1px solid var(--gold-light); border-radius: 48% 48% 8px 8px; opacity: .55; z-index: -1; }
.hero-collage__image { position: absolute; margin: 0; overflow: hidden; background: var(--cream); box-shadow: var(--shadow-soft); }
.hero-collage__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.hero-collage__image:hover img { transform: scale(1.035); }
.hero-collage__image--one { width: 62%; height: 52%; left: 2%; top: 0; border-radius: 160px 160px 18px 18px; }
.hero-collage__image--two { width: 42%; height: 34%; right: 0; top: 10%; border-radius: 18px; }
.hero-collage__image--three { width: 42%; height: 42%; left: 8%; bottom: 0; border-radius: 18px; }
.hero-collage__image--four { width: 50%; height: 49%; right: 0; bottom: 2%; border-radius: 18px 18px 130px 18px; }
.hero-collage__seal { position: absolute; left: 44%; top: 43%; width: 132px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; border: 1px solid rgba(201,162,83,.6); border-radius: 50%; background: rgba(251,248,242,.94); box-shadow: var(--shadow-card); z-index: 3; }
.hero-collage__seal::before { content: ""; position: absolute; inset: 8px; border: 1px solid var(--gold-light); border-radius: 50%; }
.hero-collage__seal span { font-family: var(--serif); font-size: 2rem; font-weight: 600; letter-spacing: .08em; }
.hero-collage__seal small { display: block; color: var(--taupe); font-size: .52rem; letter-spacing: .12em; text-transform: uppercase; }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 140px); align-items: start; }
.section-heading h2 { max-width: 600px; }
.intro-copy { padding-top: .6rem; color: #5d564d; }
.lead-copy { color: var(--charcoal); font-family: var(--serif); font-size: clamp(1.55rem, 2.2vw, 2.15rem); line-height: 1.28; }
.industry-list { margin-top: 72px; padding-top: 28px; border-top: 1px solid rgba(44,41,37,.15); display: flex; flex-wrap: wrap; gap: .75rem; }
.industry-list span { padding: .55rem .9rem; border: 1px solid rgba(44,41,37,.15); border-radius: 999px; background: rgba(255,255,255,.35); color: #655d54; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.centered-heading { max-width: 820px; margin: 0 auto 65px; text-align: center; }
.centered-heading > p:last-child { max-width: 660px; margin: 1.7rem auto 0; color: var(--taupe); }
.service-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-category-card { min-height: 410px; position: relative; display: flex; flex-direction: column; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); box-shadow: 0 0 0 rgba(0,0,0,0); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-category-card::after { content: ""; position: absolute; width: 210px; height: 210px; right: -120px; bottom: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(230,208,154,.4), transparent 70%); transition: transform .4s ease; }
.service-category-card:hover { transform: translateY(-6px); border-color: rgba(201,162,83,.42); box-shadow: var(--shadow-card); }
.service-category-card:hover::after { transform: scale(1.35); }
.service-category-card__number { color: var(--taupe); font-size: .68rem; font-weight: 700; letter-spacing: .12em; }
.service-category-card__icon { margin: 34px 0 24px; color: var(--gold); font-family: var(--serif); font-size: 2.5rem; }
.service-category-card h3 { font-size: clamp(2rem, 2.8vw, 2.8rem); line-height: 1.02; }
.service-category-card p { margin: 1.25rem 0 2rem; color: var(--taupe); }
.service-category-card .text-link { margin-top: auto; align-self: flex-start; z-index: 2; }
.service-panel { margin-top: 24px; padding: clamp(28px, 5vw, 64px); border: 1px solid rgba(201,162,83,.32); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.service-panel[hidden] { display: none; }
.service-panel__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.service-panel__header h3 { max-width: 900px; font-size: clamp(2.3rem, 4.5vw, 4.4rem); }
.service-panel__header p:last-child { max-width: 800px; margin: 1rem 0 0; color: var(--taupe); }
.panel-close { flex: 0 0 auto; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-family: var(--sans); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.panel-close:hover { background: var(--cream); transform: rotate(7deg); }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 24px; }
.service-detail-grid--wide { grid-template-columns: repeat(2, 1fr); }
.service-detail-grid--three { grid-template-columns: repeat(3, 1fr); }
.service-detail { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-small); background: var(--ivory); }
.service-detail--feature { grid-column: 1 / -1; }
.service-detail h4 { margin-bottom: 1rem; }
.service-detail > p { color: #5d564d; }
.service-includes { font-size: .89rem; }
.price-list { margin: 1.6rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.price-list li { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .78rem; line-height: 1.45; }
.price-list span { color: var(--taupe); }
.price-list strong { text-align: right; }
.custom-partnership { margin-top: 24px; padding: 30px; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; border-radius: var(--radius-small); background: var(--charcoal); color: var(--white); }
.custom-partnership h4 { margin-bottom: .8rem; }
.custom-partnership p:last-child { max-width: 850px; margin-bottom: 0; color: rgba(255,255,255,.7); }

.work { overflow: hidden; }
.work::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 20% 15%, rgba(201,162,83,.12), transparent 33%), radial-gradient(circle at 90% 60%, rgba(139,151,135,.09), transparent 35%); pointer-events: none; }
.work-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; align-items: end; padding-bottom: 55px; border-bottom: 1px solid var(--line-light); }
.work-heading > p { max-width: 560px; color: rgba(255,255,255,.65); }
.work h2 em { color: var(--gold-light); }
.project { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(36px, 7vw, 90px); align-items: center; padding: 85px 0; border-bottom: 1px solid var(--line-light); }
.project--retreat, .project--reverse { grid-template-columns: 1.3fr .7fr; }
.project--retreat .project-copy, .project--reverse .project-copy { order: 2; }
.project--retreat .project-mosaic, .project--reverse .project-mosaic { order: 1; }
.project-copy { max-width: 500px; }
.project-copy h3 { margin: .25rem 0 1.5rem; font-size: clamp(3rem, 5vw, 5rem); }
.project-copy h3.project-title--long { font-size: clamp(2.45rem, 4.2vw, 4.25rem); }
.project-copy > p:not(.project-index):not(.eyebrow) { color: rgba(255,255,255,.68); }
.project-index { margin-bottom: 2rem; color: rgba(255,255,255,.4); font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.project-mosaic { height: 590px; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: 12px; }
.gallery-item { padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: #1b1917; cursor: zoom-in; }
.gallery-item--large { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), opacity .3s ease; }
.gallery-item:hover img { transform: scale(1.04); opacity: .9; }
.project--placeholder { grid-template-columns: .7fr 1.3fr; border-bottom: 1px solid var(--line-light); }
.project--last { border-bottom: 0; }

.project-video { order: 3; grid-column: 1 / -1; margin-top: -26px; padding: 28px; display: grid; grid-template-columns: minmax(280px, .82fr) 1.18fr; gap: clamp(26px, 5vw, 64px); align-items: center; border: 1px solid rgba(230,208,154,.22); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.video-thumbnail { position: relative; width: 100%; aspect-ratio: 16 / 9; padding: 0; overflow: hidden; border: 0; border-radius: 16px; background: #111; cursor: pointer; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .3s ease; }
.video-thumbnail::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.28)); }
.video-thumbnail:hover img { transform: scale(1.035); filter: brightness(.9); }
.video-play { position: absolute; z-index: 2; left: 50%; top: 50%; width: 68px; height: 68px; display: grid; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(25,22,19,.72); color: white; font-size: 1.1rem; padding-left: 4px; box-shadow: 0 16px 38px rgba(0,0,0,.3); transition: transform .25s ease, background .25s ease; }
.video-thumbnail:hover .video-play { transform: translate(-50%,-50%) scale(1.06); background: rgba(201,162,83,.9); }
.project-video__copy h4 { margin: .2rem 0 1rem; color: white; font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.05; }
.project-video__copy > p:not(.eyebrow) { max-width: 700px; color: rgba(255,255,255,.64); }
.project-video__copy .text-link { margin-top: .7rem; }

.video-lightbox { width: min(1120px, calc(100% - 32px)); max-width: none; padding: 0; border: 0; background: transparent; color: white; overflow: visible; }
.video-lightbox::backdrop { background: rgba(14,13,12,.95); backdrop-filter: blur(12px); }
.video-lightbox__frame { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 16px; background: #000; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.video-lightbox iframe { width: 100%; height: 100%; border: 0; }
.video-lightbox > p { margin: .9rem 0 0; color: rgba(255,255,255,.78); text-align: center; font-size: .82rem; letter-spacing: .03em; }
.video-lightbox__close { position: fixed; right: 24px; top: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(0,0,0,.28); color: white; font-size: 1.8rem; cursor: pointer; }


.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(55px, 9vw, 125px); align-items: center; }
.about-image-wrap { position: relative; max-width: 470px; justify-self: center; }
.about-image-frame { position: relative; padding: 16px; border: 1px solid var(--gold-light); border-radius: 28px; background: var(--cream); }
.about-image-frame img { display: block; width: 100%; height: auto; object-fit: contain; border-radius: 18px; }
.about-image-frame::after { content: ""; position: absolute; width: 72px; height: 72px; right: -22px; top: 22%; border-radius: 50%; border: 1px solid var(--gold); background: var(--ivory); box-shadow: var(--shadow-card); }
.about-image-note { max-width: 360px; margin: 20px auto 0; color: var(--taupe); font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.35; text-align: center; }
.about-copy h2 { margin-bottom: 2rem; }
.about-copy > p { color: #5d564d; }
.trust-points { margin-top: 2.2rem; border-top: 1px solid var(--line); }
.trust-points > div { display: grid; grid-template-columns: 48px 1fr; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.trust-points span { color: var(--gold); font-family: var(--serif); font-size: 1.2rem; }
.trust-points p { margin: 0; font-size: .85rem; font-weight: 600; }
.approach-grid { margin-top: 105px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.approach-card { padding: 35px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.7); }
.approach-card h3 { margin-bottom: 1.5rem; font-size: 2.45rem; line-height: 1.03; }
.approach-card p:not(.eyebrow) { color: #655d54; }

.final-cta { padding: 80px 0; background: linear-gradient(135deg, #eee4d2 0%, #fbf8f2 55%, #e4d7bd 100%); }
.final-cta__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: 4rem; align-items: center; }
.final-cta h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.final-cta p:not(.eyebrow) { max-width: 760px; margin: 1.4rem 0 0; color: #5d564d; }
.final-cta__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem; }

.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-intro { position: sticky; top: 130px; }
.contact-intro h2 { margin-bottom: 1.5rem; }
.contact-intro > p:not(.eyebrow) { color: #5d564d; }
.contact-details { margin-top: 2.4rem; border-top: 1px solid var(--line); }
.contact-details > div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-details span { display: block; margin-bottom: .25rem; color: var(--taupe); font-size: .65rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.contact-details a { font-family: var(--serif); font-size: 1.35rem; }
.contact-details a:hover { color: #9f772d; }
.contact-details p { margin: 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.35; }
.form-card { padding: clamp(28px, 5vw, 55px); border: 1px solid rgba(201,162,83,.32); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { color: #514b44; font-size: .71rem; font-weight: 700; letter-spacing: .04em; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(44,41,37,.18); border-radius: 11px; background: var(--ivory); color: var(--charcoal); padding: .85rem .95rem; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input, .field select { min-height: 51px; }
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,162,83,.12); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #a64d45; }
.form-card .button { margin-top: 22px; }
.form-note { margin: .8rem 0 0; color: var(--taupe); font-size: .7rem; text-align: center; }
.form-status { min-height: 0; margin-top: 1rem; padding: 0; border-radius: 10px; font-size: .85rem; }
.form-status.is-success { padding: .9rem 1rem; background: rgba(139,151,135,.14); color: #3f5941; }
.form-status.is-error { padding: .9rem 1rem; background: rgba(166,77,69,.1); color: #843d37; }
.hidden-field { position: absolute; left: -9999px; }

.site-footer { padding: 75px 0 25px; background: #23211e; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 5vw, 65px); }
.footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-brand img { display: block; width: min(300px, 72vw); height: auto; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,.2)); }
.footer-brand p { max-width: 540px; margin-top: 1.4rem; color: rgba(255,255,255,.55); }
.footer-column { display: flex; flex-direction: column; gap: .65rem; }
.footer-column h2 { margin-bottom: .65rem; color: var(--gold-light); font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.footer-column a, .footer-column p { font-size: .8rem; }
.footer-column a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,.5); }
.footer-bottom { margin-top: 55px; padding-top: 22px; display: flex; justify-content: space-between; gap: 1rem; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.42); font-size: .65rem; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }

.lightbox { width: min(1100px, calc(100% - 32px)); max-width: none; padding: 0; border: 0; background: transparent; color: white; overflow: visible; }
.lightbox::backdrop { background: rgba(19,17,14,.94); backdrop-filter: blur(12px); }
.lightbox figure { margin: 0; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: 14px; background: #111; }
.lightbox figcaption { margin-top: .8rem; color: rgba(255,255,255,.72); font-size: .78rem; text-align: center; }
.lightbox__close { position: fixed; right: 24px; top: 22px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(0,0,0,.25); color: white; font-size: 1.8rem; cursor: pointer; }
.lightbox__nav { position: fixed; top: 50%; width: 50px; height: 50px; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: rgba(0,0,0,.25); color: white; font-size: 2.2rem; line-height: 1; cursor: pointer; }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-collage { min-height: 640px; max-width: 850px; width: 100%; }
  .service-card-grid { grid-template-columns: 1fr; }
  .service-category-card { min-height: 320px; }
  .service-detail-grid--three { grid-template-columns: 1fr; }
  .project { grid-template-columns: 1fr; }
  .project--retreat, .project--reverse { grid-template-columns: 1fr; }
  .project--retreat .project-copy, .project--retreat .project-mosaic, .project--reverse .project-copy, .project--reverse .project-mosaic { order: initial; }
  .project-copy { max-width: 700px; }
  .project--placeholder { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 92px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .utility-location { display: none; }
  .utility-bar__inner { justify-content: center; min-height: 34px; }
  .utility-links { width: 100%; justify-content: space-between; font-size: .58rem; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 175px; }
  .nav-toggle { display: flex; }
  .primary-nav { position: absolute; top: 100%; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(251,248,242,.98); box-shadow: var(--shadow-card); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.button) { padding: .9rem .4rem; border-bottom: 1px solid var(--line); }
  .primary-nav .button { margin-top: .9rem; }
  .hero { padding-top: 70px; }
  .hero-collage { min-height: 530px; }
  .hero-collage__seal { width: 105px; }
  .intro-grid, .work-heading, .about-grid, .final-cta__inner, .contact-grid { grid-template-columns: 1fr; }
  .intro-copy { padding-top: 0; }
  .service-detail-grid, .service-detail-grid--wide { grid-template-columns: 1fr; }
  .service-detail--feature { grid-column: auto; }
  .custom-partnership { grid-template-columns: 1fr; }
  .project-mosaic { height: 480px; }
  .project-video { grid-template-columns: 1fr; margin-top: -12px; }
  .about-image-wrap { max-width: 550px; }
  .approach-grid { grid-template-columns: 1fr; margin-top: 75px; }
  .final-cta__actions { margin-top: 1rem; }
  .contact-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: auto; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .section { padding: 78px 0; }
  .utility-links span { display: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-collage { min-height: 445px; }
  .hero-collage::before { inset: 22px 20px; }
  .hero-collage__image--one { width: 64%; height: 48%; }
  .hero-collage__image--two { width: 42%; height: 31%; }
  .hero-collage__image--three { width: 44%; height: 42%; left: 4%; }
  .hero-collage__image--four { width: 54%; height: 47%; }
  .hero-collage__seal { width: 82px; left: 43%; top: 42%; }
  .hero-collage__seal span { font-size: 1.45rem; }
  .hero-collage__seal small { display: none; }
  .industry-list { margin-top: 48px; }
  .service-category-card, .service-detail, .approach-card { padding: 25px; }
  .service-panel { padding: 24px 18px; }
  .service-panel__header { gap: 1rem; }
  .panel-close { width: 40px; height: 40px; }
  .price-list li { flex-direction: column; gap: .3rem; }
  .price-list strong { text-align: left; }
  .custom-partnership { padding: 24px; }
  .project { padding: 65px 0; }
  .project-mosaic { height: 520px; grid-template-columns: 1fr 1fr; grid-template-rows: 1.3fr .7fr; }
  .gallery-item--large { grid-row: auto; grid-column: 1 / -1; }
  .project-video { padding: 18px; }
  .video-play { width: 58px; height: 58px; }
  .about-image-frame { padding: 10px; }
  .form-card { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .lightbox__nav { top: auto; bottom: 20px; }
  .lightbox__nav--prev { left: calc(50% - 62px); }
  .lightbox__nav--next { right: calc(50% - 62px); }
}

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