: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); }

.impact {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(201,162,83,.13), transparent 28%),
    radial-gradient(circle at 6% 54%, rgba(139,151,135,.12), transparent 27%),
    var(--ivory);
}
.impact::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -340px;
  top: 18%;
  border: 1px solid rgba(201,162,83,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(201,162,83,.025), 0 0 0 145px rgba(201,162,83,.018);
  pointer-events: none;
}
.impact-heading { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(44px, 7vw, 90px); align-items: end; padding-bottom: 70px; border-bottom: 1px solid var(--line); }
.impact-heading h2 { max-width: 700px; font-size: clamp(3.25rem, 5vw, 4.75rem); line-height: 1; }
.impact-intro { padding-bottom: .5rem; }
.impact-intro > p { color: #625b52; }
.impact-intro .lead-copy { color: var(--charcoal); font-size: clamp(1.2rem, 1.65vw, 1.5rem); line-height: 1.55; }
.research-note { display: inline-flex; align-items: center; gap: .55rem; margin-top: .4rem; padding: .58rem .85rem; border: 1px solid rgba(201,162,83,.32); border-radius: 999px; color: #776c5d; background: rgba(255,255,255,.68); font-size: .64rem; font-weight: 700; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase; }
.research-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,83,.12); }
.impact-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 7vw, 90px); align-items: center; min-height: 610px; padding: clamp(72px, 8vw, 102px) 0; border-bottom: 1px solid var(--line); }
.impact-story--reverse { grid-template-columns: 1.12fr .88fr; }
.impact-story--reverse .impact-copy { order: 2; }
.impact-story--reverse .service-visual { order: 1; }
.impact-copy { max-width: 520px; }
.impact-number { margin: 0 0 1.25rem; color: #b78c3b; font-family: var(--serif); font-size: clamp(4.5rem, 7vw, 6.6rem); font-weight: 600; letter-spacing: -.045em; line-height: .82; white-space: nowrap; }
.impact-number span { margin-left: .08em; color: var(--gold); font-size: .44em; letter-spacing: -.02em; }
.impact-copy h3 { margin: .35rem 0 1.35rem; font-size: clamp(2.25rem, 3.25vw, 3.15rem); line-height: 1.04; }
.impact-copy > p:not(.impact-number):not(.eyebrow):not(.impact-leak) { color: #625b52; }
.impact-leak { margin: 1.8rem 0 1.4rem; padding: .2rem 0 .2rem 1.15rem; border-left: 2px solid var(--gold); color: #4d473f; font-size: .88rem; line-height: 1.65; }
.impact-leak strong { color: var(--charcoal); }
.research-source { display: inline-flex; align-items: center; gap: .45rem; padding-bottom: .2rem; border-bottom: 1px solid rgba(44,41,37,.25); color: #756a5d; font-size: .68rem; font-weight: 700; letter-spacing: .05em; line-height: 1.5; text-transform: uppercase; transition: color .2s ease, border-color .2s ease; }
.research-source:hover { color: #9f772d; border-color: var(--gold); }
.service-visual { position: relative; min-width: 0; min-height: 480px; margin: 0; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(201,162,83,.22); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(240,233,220,.8)); box-shadow: 0 28px 75px rgba(68,54,34,.11); }
.service-visual::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(201,162,83,.16); border-radius: 50%; box-shadow: 0 0 0 66px rgba(201,162,83,.035), 0 0 0 132px rgba(201,162,83,.025); }
.service-visual figcaption { position: absolute; z-index: 5; left: 28px; top: 24px; margin: 0; color: #887d70; font-size: .62rem; font-weight: 700; letter-spacing: .13em; line-height: 1.4; text-transform: uppercase; }

.laptop { position: relative; z-index: 2; width: 88%; padding-bottom: 22px; transform: perspective(1200px) rotateX(1.5deg) rotateY(-2deg); filter: drop-shadow(0 35px 30px rgba(45,38,29,.18)); }
.laptop-screen { overflow: hidden; padding: 9px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px 18px 10px 10px; background: #272522; }
.browser-bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 10px; border-radius: 9px 9px 0 0; background: #f4f1eb; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d9cfc1; }
.browser-bar i:first-child { background: #d3ad67; }
.browser-bar span { flex: 1; margin-left: 6px; color: #8b8174; font-size: .49rem; letter-spacing: .03em; text-align: center; }
.website-preview { position: relative; min-height: 310px; padding: 24px; display: flex; flex-direction: column; overflow: hidden; color: white; background: #393630; }
.website-preview::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(31,29,25,.82), rgba(31,29,25,.12)); }
.website-preview__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.website-preview__nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .66rem; letter-spacing: .18em; }
.website-preview__nav b { padding: .55rem .75rem; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; font-size: .48rem; font-weight: 600; letter-spacing: .08em; }
.website-preview__hero { position: relative; z-index: 2; margin: auto 0; max-width: 380px; }
.website-preview__hero p { margin: 0 0 .65rem; color: var(--gold-light); font-size: .52rem; font-weight: 700; letter-spacing: .2em; }
.website-preview__hero h4 { margin-bottom: 1.1rem; color: white; font-size: clamp(2.2rem, 3.8vw, 3.45rem); text-shadow: 0 3px 24px rgba(0,0,0,.22); }
.website-preview__hero em { color: #f1dca7; }
.website-preview__hero > span { display: inline-block; padding-bottom: .25rem; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .55rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.laptop-base { position: absolute; left: -5%; bottom: 8px; width: 110%; height: 18px; border-radius: 2px 2px 13px 13px; background: linear-gradient(180deg, #e4e0da, #aaa49c); clip-path: polygon(3% 0, 97% 0, 100% 70%, 94% 100%, 6% 100%, 0 70%); }
.laptop-base::after { content: ""; position: absolute; left: 44%; top: 0; width: 12%; height: 5px; border-radius: 0 0 6px 6px; background: #a39e97; }

.service-visual--social { background: linear-gradient(150deg, #f7f1e8 0%, #e7ddcf 100%); }
.phone { position: relative; z-index: 2; width: min(245px, 57%); aspect-ratio: .5; margin-top: 24px; padding: 9px; border: 1px solid rgba(255,255,255,.55); border-radius: 40px; background: #262421; box-shadow: 0 30px 58px rgba(45,38,29,.24), inset 0 0 0 1px rgba(0,0,0,.6); transform: rotate(2deg); }
.phone-speaker { position: absolute; z-index: 4; left: 50%; top: 16px; width: 82px; height: 20px; transform: translateX(-50%); border-radius: 0 0 14px 14px; background: #262421; }
.social-profile { height: 100%; overflow: hidden; border-radius: 32px; background: #fbfaf7; }
.social-top { height: 43px; display: flex; justify-content: space-between; align-items: center; padding: 0 18px; color: #25231f; font-size: .55rem; }
.social-top b { letter-spacing: .12em; }
.social-name { display: flex; gap: .65rem; align-items: center; padding: 13px 15px; border-top: 1px solid #ebe6de; border-bottom: 1px solid #ebe6de; }
.social-name > i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #bd9a55, #6c786d); color: white; font-family: var(--serif); font-size: 1rem; font-style: normal; }
.social-name div { display: flex; flex-direction: column; line-height: 1.25; }
.social-name strong { color: #2d2924; font-size: .57rem; }
.social-name small { color: #92897d; font-size: .42rem; }
.social-hero { position: relative; min-height: 210px; padding: 20px 16px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: white; }
.social-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31,29,25,.02), rgba(31,29,25,.72)); }
.social-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.social-hero span { position: relative; z-index: 2; margin-bottom: .3rem; color: #eed79e; font-size: .42rem; font-weight: 700; letter-spacing: .18em; }
.social-hero strong { position: relative; z-index: 2; font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: .95; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding-top: 2px; }
.social-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.service-visual--email { background: linear-gradient(140deg, #ebe5db, #f8f5ef); }
.newsletter-window { position: relative; z-index: 2; width: 82%; margin-top: 28px; overflow: hidden; border: 1px solid rgba(79,68,54,.16); border-radius: 20px; background: #f9f7f2; box-shadow: 0 24px 60px rgba(58,47,33,.16); transform: rotate(-.6deg); }
.newsletter-toolbar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; border-bottom: 1px solid #ded7cc; background: #e9e4dc; }
.newsletter-toolbar span { width: 8px; height: 8px; border-radius: 50%; background: #c8beb1; }
.newsletter-toolbar span:first-child { background: #cda75e; }
.newsletter-toolbar b { flex: 1; color: #8a8175; font-size: .52rem; font-weight: 600; letter-spacing: .02em; text-align: center; }
.newsletter-body { padding: 26px 9% 32px; text-align: center; background: linear-gradient(135deg, #fff, #f4ede0); }
.newsletter-brand { margin-bottom: 18px; color: #403a33; font-family: var(--serif); font-size: 1.15rem; letter-spacing: .25em; }
.newsletter-photo { width: 100%; height: 112px; margin-bottom: 18px; border-radius: 12px; object-fit: cover; }
.newsletter-body > small { color: #a27f3f; font-size: .52rem; font-weight: 700; letter-spacing: .17em; }
.newsletter-body h4 { margin: .7rem 0 .8rem; font-size: clamp(2rem, 3.4vw, 2.85rem); }
.newsletter-body p { max-width: 420px; margin: 0 auto 1.15rem; color: #6b6359; font-family: var(--serif); font-size: .95rem; line-height: 1.4; }
.newsletter-body a { display: inline-block; padding: .7rem 1rem; border: 1px solid #b9944e; border-radius: 999px; color: #564a39; font-size: .52rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.service-visual--local { background: linear-gradient(145deg, #eef1ed, #f8f4ec); }
.local-card { position: relative; z-index: 2; width: 84%; margin-top: 26px; overflow: hidden; border: 1px solid rgba(61,66,60,.14); border-radius: 22px; background: white; box-shadow: 0 26px 65px rgba(48,53,47,.14); transform: perspective(1200px) rotateY(1deg); }
.local-search { margin: 18px; min-height: 54px; display: flex; align-items: center; gap: 12px; padding: 0 18px; border: 1px solid #dddeda; border-radius: 999px; box-shadow: 0 3px 10px rgba(30,30,30,.06); }
.local-search > span { color: #4285f4; font-family: var(--sans); font-size: 1rem; font-weight: 700; }
.local-search p { flex: 1; margin: 0; color: #5c615d; font-size: .68rem; }
.local-search b { color: #777d78; font-size: 1.1rem; }
.local-result { display: grid; grid-template-columns: .87fr 1.13fr; min-height: 300px; border-top: 1px solid #e2e2df; }
.local-result__image { width: 100%; height: 100%; object-fit: cover; }
.local-result__copy { padding: 30px 24px; }
.local-result__copy > small { color: #8b8174; font-size: .56rem; text-transform: uppercase; letter-spacing: .08em; }
.local-result__copy h4 { margin: .35rem 0 .9rem; font-family: var(--sans); font-size: 1.55rem; font-weight: 600; letter-spacing: -.03em; line-height: 1.1; }
.local-rating { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .68rem; }
.local-rating strong { color: #5f5547; }
.local-rating span { color: #e6a72c; letter-spacing: .04em; }
.local-rating small { color: #7c827d; }
.local-result__copy > p { margin: .8rem 0 1.5rem; color: #498552; font-size: .67rem; font-weight: 600; }
.local-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.local-actions span { padding: .5rem .65rem; border: 1px solid #d5d9d5; border-radius: 999px; color: #476eab; font-size: .54rem; font-weight: 700; }

.service-visual--video { min-height: 465px; background: #201e1b; }
.service-visual--video::before { border-color: rgba(230,208,154,.14); box-shadow: 0 0 0 66px rgba(230,208,154,.025), 0 0 0 132px rgba(230,208,154,.016); }
.service-visual--video figcaption { color: rgba(255,255,255,.55); }
.cinema-frame { position: relative; z-index: 2; width: 90%; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 18px; box-shadow: 0 30px 70px rgba(0,0,0,.4); }
.cinema-frame > img { width: 100%; height: 100%; object-fit: cover; }
.cinema-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,16,14,.05), rgba(17,16,14,.68)); }
.cinema-overlay { position: absolute; z-index: 2; inset: 0; padding: 36px; display: flex; flex-direction: column; justify-content: flex-end; color: white; }
.cinema-play { width: 60px; height: 60px; margin-bottom: auto; display: grid; place-items: center; align-self: center; border: 1px solid rgba(255,255,255,.72); border-radius: 50%; background: rgba(20,18,16,.42); font-size: 1rem; padding-left: 3px; }
.cinema-overlay small { margin-bottom: .55rem; color: var(--gold-light); font-size: .55rem; font-weight: 700; letter-spacing: .16em; }
.cinema-overlay strong { max-width: 470px; font-family: var(--serif); font-size: clamp(2.3rem, 4.2vw, 4.15rem); font-weight: 600; line-height: .95; }
.cinema-controls { position: absolute; z-index: 3; left: 36px; right: 36px; bottom: 15px; display: flex; align-items: center; gap: 8px; opacity: .72; }
.cinema-controls i { width: 7px; height: 7px; border-radius: 50%; background: white; }
.cinema-controls span { flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold-light) 28%, rgba(255,255,255,.4) 28%); }
.cinema-controls b { color: white; font-size: .5rem; font-weight: 600; }
.impact-close { margin-top: 72px; padding: clamp(34px, 5vw, 56px); display: grid; grid-template-columns: 1fr auto; gap: clamp(30px, 6vw, 70px); align-items: center; border: 1px solid rgba(201,162,83,.32); border-radius: 26px; background: rgba(255,255,255,.78); box-shadow: var(--shadow-soft); }
.impact-close p { max-width: 820px; margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.5vw, 2.35rem); line-height: 1.25; }

.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; }
  .impact-heading { grid-template-columns: 1fr; align-items: start; }
  .impact-heading h2 { max-width: 850px; }
  .impact-intro { max-width: 760px; }
  .impact-story, .impact-story--reverse { grid-template-columns: 1fr; gap: 52px; min-height: 0; }
  .impact-story--reverse .impact-copy, .impact-story--reverse .service-visual { order: initial; }
  .impact-copy { max-width: 720px; }
  .service-visual { min-height: 500px; }
  .impact-close { grid-template-columns: 1fr; }
  .impact-close .button { justify-self: start; }
  .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; }
  .impact-heading { padding-bottom: 58px; }
  .impact-story { padding: 72px 0; }
  .service-visual { min-height: 450px; border-radius: 26px; }
  .website-preview { min-height: 285px; }
  .impact-close { margin-top: 70px; }
  .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; }
  .impact-heading h2 { font-size: clamp(2.55rem, 10.5vw, 3.1rem); }
  .impact-number { margin-bottom: 1.1rem; font-size: clamp(3.55rem, 16vw, 4.55rem); white-space: normal; }
  .impact-copy h3 { font-size: clamp(1.95rem, 8.5vw, 2.4rem); line-height: 1.08; }
  .research-note { border-radius: 14px; }
  .service-visual { min-height: 380px; border-radius: 22px; }
  .service-visual figcaption { left: 18px; top: 16px; }
  .laptop { width: 92%; padding-bottom: 15px; }
  .laptop-screen { padding: 6px; }
  .browser-bar { height: 26px; }
  .website-preview { min-height: 230px; padding: 16px; }
  .website-preview__hero h4 { font-size: 2.1rem; }
  .website-preview__nav b { display: none; }
  .phone { width: min(218px, 67%); border-radius: 36px; padding: 8px; }
  .social-profile { border-radius: 31px; }
  .social-hero { min-height: 180px; }
  .newsletter-window { width: 92%; }
  .newsletter-body { padding: 22px 8% 27px; }
  .newsletter-brand { margin-bottom: 14px; }
  .newsletter-photo { height: 92px; margin-bottom: 14px; }
  .newsletter-body h4 { font-size: 2.05rem; }
  .local-card { width: 92%; }
  .local-search { min-height: 46px; margin: 12px; padding: 0 12px; }
  .local-result { grid-template-columns: .78fr 1.22fr; min-height: 285px; }
  .local-result__copy { padding: 25px 16px; }
  .local-result__copy h4 { font-size: 1.15rem; }
  .local-actions { gap: 5px; }
  .local-actions span { padding: .4rem .45rem; }
  .service-visual--video { min-height: 365px; }
  .cinema-frame { width: 93%; }
  .cinema-overlay { padding: 22px; }
  .cinema-play { width: 48px; height: 48px; }
  .cinema-overlay strong { font-size: 2.2rem; }
  .cinema-controls { left: 22px; right: 22px; }
  .impact-close { padding: 28px 24px; border-radius: 22px; }
  .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; }
}
