:root {
  --ink: #0b0c0f;
  --ink-soft: #181a1f;
  --paper: #f6f5f1;
  --white: #fff;
  --muted: #e9e8e3;
  --line: #d6d5cf;
  --text: #15161a;
  --text-muted: #62646b;
  --red: #e02424;
  --red-dark: #b91515;
  --lime: #c7f23a;
  --shell: min(1240px, calc(100% - 48px));
  --radius: 18px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --control-height: 48px;
  --reading-width: 66ch;
  --focus-ring: 0 0 0 4px rgba(199, 242, 58, .3);
  --shadow: 0 24px 70px rgba(9, 10, 12, 0.14);
  --display: "Manrope", system-ui, sans-serif;
  --body: "Archivo", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { margin: 0; overflow-x: clip; background: var(--paper); color: var(--text); font-family: var(--body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.04em; line-height: 1.06; }
h1 { font-size: clamp(3.4rem, 8vw, 7.8rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
svg { display: inline-block; flex: 0 0 auto; width: 1.2em; height: 1.2em; vertical-align: -0.2em; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; box-shadow: var(--focus-ring); }
.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; z-index: 200; top: 12px; left: 12px; padding: 12px 18px; transform: translateY(-160%); background: var(--white); color: var(--ink); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.topbar { position: relative; z-index: 102; background: #030303; color: #b9bbc2; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .75rem; letter-spacing: .04em; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; }
.topbar-hours-full, .topbar a { color: var(--white); }
.topbar-hours-compact { display: none; color: var(--white); }
.topbar a { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.topbar a svg { width: 14px; }
.topbar-phone { white-space: nowrap; }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(9,10,12,.94); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.header-inner { min-height: 80px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { width: 126px; height: 54px; display: flex; align-items: center; padding: 4px 10px; background: var(--white); border-radius: 9px; }
.brand img { width: 100%; height: 46px; object-fit: contain; }
.primary-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px,2vw,28px); }
.primary-nav a { position: relative; padding-block: 27px; color: #c6c7cc; font-size: .84rem; font-weight: 600; letter-spacing: .02em; }
.primary-nav a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: ""; transform: scaleX(0); transform-origin: left; background: var(--red); transition: transform 180ms ease; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--white); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.mobile-menu { display: none; }
.menu-toggle { display: none; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; padding: 0; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; cursor: pointer; list-style: none; }
.menu-toggle::-webkit-details-marker { display: none; }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-close { display: none; }
.mobile-menu[open] .menu-open { display: none; }
.mobile-menu[open] .menu-close { display: inline-flex; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 13px 22px; background: var(--red); color: var(--white); border: 1px solid var(--red); border-radius: 999px; font-family: var(--display); font-size: .86rem; font-weight: 700; line-height: 1.2; transition: transform 160ms ease, background 160ms ease, border-color 160ms ease; }
.button:hover { transform: translateY(-2px); background: var(--red-dark); border-color: var(--red-dark); }
.button svg, .text-link svg { transition: transform 160ms ease; }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button-small { min-height: 44px; padding: 11px 18px; font-size: .78rem; }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.48); }
.button-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-dark { background: var(--ink); border-color: var(--ink); }
.button-dark:hover { background: #27292f; border-color: #27292f; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-family: var(--display); font-size: .83rem; font-weight: 800; }
.text-link-light { color: var(--white); }
.eyebrow, .card-kicker { margin-bottom: 14px; color: var(--red); font-family: var(--display); font-size: .75rem; font-weight: 800; letter-spacing: .14em; line-height: 1.3; text-transform: uppercase; }
.mobile-only { display: none; }
.section { padding-block: clamp(78px,10vw,128px); }
.section-dark { background: var(--ink); color: var(--white); }
.section-muted { background: var(--muted); }
.section-head { max-width: 780px; margin-bottom: clamp(38px,6vw,68px); }
.section-head h2 { margin-bottom: 20px; }
.section-head > p:last-child { max-width: 66ch; margin-bottom: 0; color: var(--text-muted); font-size: 1.05rem; }
.section-dark .section-head > p:last-child { color: #a9abb2; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.split-heading .section-head { margin-bottom: clamp(38px,6vw,68px); }
.split-heading > .text-link { margin-bottom: clamp(38px,6vw,68px); white-space: nowrap; }

.home-hero, .page-hero { position: relative; isolation: isolate; overflow: hidden; background: var(--ink); color: var(--white); }
.home-hero { min-height: calc(100svh - 114px); background: radial-gradient(circle at 82% 20%,rgba(224,36,36,.13),transparent 30%),linear-gradient(135deg,#090a0c,#111217 58%,#08090b); }
.home-hero-layout { min-height: calc(100svh - 114px); display: grid; grid-template-columns: minmax(0,1.08fr) minmax(380px,.92fr); align-items: center; gap: clamp(42px,6vw,88px); padding-block: 52px; }
.home-hero-inner { min-width: 0; }
.home-hero h1 { max-width: 100%; margin-bottom: 24px; font-size: clamp(3.7rem,5.8vw,5.7rem); font-weight: 800; line-height: .92; }
.home-hero h1 span { display: block; white-space: nowrap; color: transparent; -webkit-text-stroke: 1.5px rgba(255,255,255,.82); }
.home-hero-inner > p:not(.eyebrow) { max-width: 580px; margin-bottom: 32px; color: #d8d9dd; font-size: clamp(1.02rem,1.6vw,1.25rem); }
.home-hero-visual { position: relative; height: clamp(480px,calc(100svh - 238px),650px); margin: 0; overflow: hidden; background: #202126; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; box-shadow: 0 32px 80px rgba(0,0,0,.34); }
.home-hero-visual::before { position: absolute; z-index: 1; inset: 0; content: ""; pointer-events: none; background: linear-gradient(180deg,transparent 62%,rgba(5,6,8,.64)); }
.home-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; }
.home-hero-visual figcaption { position: absolute; z-index: 2; right: 16px; bottom: 16px; left: 16px; width: fit-content; max-width: calc(100% - 32px); padding: 10px 14px; background: rgba(9,10,12,.82); color: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-family: var(--display); font-size: .75rem; font-weight: 700; backdrop-filter: blur(12px); }
.page-hero-media { position: absolute; z-index: -3; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(5,6,8,.96) 0%,rgba(5,6,8,.76) 38%,rgba(5,6,8,.18) 72%,rgba(5,6,8,.22) 100%), linear-gradient(0deg,rgba(5,6,8,.65),transparent 45%); }
.metrics { background: var(--red); color: var(--white); }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.metrics-grid > div { min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 26px clamp(16px,3vw,36px); border-right: 1px solid rgba(255,255,255,.25); }
.metrics-grid > div:first-child { padding-left: 0; }
.metrics-grid > div:last-child { border-right: 0; }
.metrics strong { font-family: var(--display); font-size: clamp(2rem,4vw,3.5rem); line-height: 1; }
.metrics span { margin-top: 8px; font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.page-hero { min-height: 620px; display: flex; align-items: flex-end; }
.page-hero-compact { min-height: 500px; }
.page-hero-inner { padding-block: 130px 82px; }
.page-hero h1 { max-width: 990px; margin-bottom: 26px; font-size: clamp(3.5rem,8vw,7.2rem); }
.page-hero-copy { max-width: 690px; margin: 0; color: #d6d7db; font-size: clamp(1.05rem,1.8vw,1.28rem); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 52px; color: #d0d1d4; font-size: .76rem; letter-spacing: .05em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--white); }

.service-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }
.service-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.service-card-media { position: relative; height: 280px; display: block; overflow: hidden; background: #d8d8d4; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms cubic-bezier(.22,1,.36,1); }
.service-card:hover .service-card-media img { transform: scale(1.04); }
.service-card-media > span { position: absolute; top: 18px; left: 18px; width: 44px; height: 44px; display: grid; place-items: center; background: rgba(9,10,12,.88); color: var(--white); border-radius: 50%; font-family: var(--display); font-size: .72rem; font-weight: 800; }
.service-card-body { padding: 28px; }
.service-card h3 { margin-bottom: 14px; }
.service-card h3 a:hover { color: var(--red); }
.service-card-body > p:not(.card-kicker) { min-height: 78px; margin-bottom: 22px; color: var(--text-muted); }
.section-action { display: flex; justify-content: center; margin-top: 48px; }

.project-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.project-card { min-width: 0; }
.project-card-featured { grid-column: span 2; grid-row: span 2; }
.project-image { position: relative; width: 100%; height: 330px; padding: 0; overflow: hidden; background: #202126; border: 0; border-radius: var(--radius); }
.project-card-featured .project-image { height: 690px; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.22,1,.36,1), filter 300ms ease; }
.project-image > span { position: absolute; right: 16px; bottom: 16px; min-height: 40px; display: inline-flex; align-items: center; padding: 9px 14px; transform: translateY(8px); background: rgba(255,255,255,.94); color: var(--ink); border-radius: 999px; font-size: .72rem; font-weight: 700; opacity: 0; transition: opacity 180ms ease, transform 180ms ease; }
.project-image:hover img { transform: scale(1.035); filter: brightness(.8); }
.project-image:hover > span, .project-image:focus-visible > span { transform: translateY(0); opacity: 1; }
.project-card-copy { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 20px 4px 8px; }
.project-card-copy h3 { margin-bottom: 8px; }
.project-card-copy p:not(.card-kicker) { margin: 0; color: #adafb6; }
.project-count { min-width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #d0d1d4; font-family: var(--display); font-size: .76rem; }
.project-open { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; color: #d0d1d4; }
.project-open svg { width: 18px; }
.project-rail { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.project-rail .project-image { height: 430px; }
.project-rail .project-card-copy { color: var(--white); }
.project-rail .project-card-copy p:not(.card-kicker) { color: #adafb6; }

.editorial-split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(420px,1.1fr); align-items: center; gap: clamp(50px,8vw,110px); }
.editorial-split-reverse { grid-template-columns: minmax(420px,1.1fr) minmax(0,.9fr); }
.editorial-split .section-head { margin-bottom: 34px; }
.editorial-media { position: relative; }
.editorial-media img, .rounded-image { width: 100%; min-height: 560px; object-fit: cover; border-radius: var(--radius); }
.media-label { position: absolute; right: 18px; bottom: 18px; padding: 10px 14px; background: var(--white); color: var(--ink); border-radius: 999px; font-size: .72rem; font-weight: 800; }
.large-checks, .check-list { margin: 0; padding: 0; list-style: none; }
.large-checks { margin-bottom: 34px; }
.large-checks li, .check-list li { display: flex; align-items: flex-start; gap: 10px; }
.large-checks li { padding-block: 14px; border-bottom: 1px solid var(--line); font-weight: 600; }
.large-checks svg, .check-list svg { margin-top: 4px; color: var(--red); }
.home-packages { margin-top: 72px; }
.package-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.package-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.package-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.package-card-top > span { color: var(--red); font-family: var(--display); font-size: .72rem; font-weight: 800; }
.package-card h3 { margin: 0; }
.package-card > img { width: 100%; height: 210px; object-fit: contain; margin-bottom: 18px; background: #f1f1ef; border-radius: 12px; }
.package-card > p { color: var(--text-muted); }
.check-list { margin-block: 20px 24px; }
.check-list li { padding-block: 9px; border-bottom: 1px solid var(--line); font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid li { min-height: 240px; padding: 30px; border-right: 1px solid var(--line); }
.process-grid li:first-child { padding-left: 0; }
.process-grid li:last-child { border-right: 0; }
.process-grid li > span { display: block; margin-bottom: 58px; color: var(--red); font-family: var(--display); font-size: .76rem; font-weight: 800; }
.process-grid h3 { margin-bottom: 12px; }
.process-grid p { margin: 0; color: var(--text-muted); }

.location-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.location-card { position: relative; padding: clamp(32px,5vw,58px); overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.location-index { position: absolute; right: 28px; top: 18px; color: #ecebe6; font-family: var(--display); font-size: clamp(4rem,10vw,8rem); font-weight: 800; line-height: 1; }
.location-card h3, .location-card > p, .location-card dl, .location-card a, .location-card .card-kicker { position: relative; }
.location-card h3 { max-width: 70%; margin-bottom: 18px; font-size: clamp(1.7rem,3vw,2.7rem); }
.location-card > p:not(.card-kicker) { max-width: 52ch; color: var(--text-muted); }
.location-card dl { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; margin-block: 30px; padding-block: 24px; border-block: 1px solid var(--line); }
.location-card dt { margin-bottom: 6px; color: var(--text-muted); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.location-card dd { margin: 0; font-weight: 600; }

.service-path { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.service-path-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.service-path-grid article { min-height: 230px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.service-path-grid span, .values-grid span { display: block; margin-bottom: 52px; color: var(--red); font-family: var(--display); font-size: .74rem; font-weight: 800; }
.service-path-grid p, .values-grid p { margin: 0; color: #a9abb2; }

.service-intro { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); gap: clamp(50px,9vw,130px); align-items: start; }
.service-intro h2 { max-width: 850px; font-size: clamp(2rem,4vw,3.7rem); }
.benefit-stack { border-top: 1px solid var(--line); }
.benefit-stack > div { display: grid; grid-template-columns: 40px 1fr; gap: 14px; padding-block: 22px; border-bottom: 1px solid var(--line); }
.benefit-stack span { color: var(--red); font-family: var(--display); font-size: .72rem; font-weight: 800; }
.benefit-stack p { margin: 0; font-weight: 600; }
.service-scope { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(54px,10vw,150px); }
.service-scope .section-head { margin-bottom: 34px; }
.scope-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.scope-list li { display: grid; grid-template-columns: 32px 1fr; gap: 16px; padding-block: 20px; border-bottom: 1px solid rgba(255,255,255,.2); font-family: var(--display); font-size: clamp(1rem,1.8vw,1.25rem); font-weight: 600; }
.scope-list svg { margin-top: 4px; color: var(--red); }
.detail-gallery { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 220px; gap: 18px; }
.detail-gallery button { position: relative; grid-column: span 4; padding: 0; overflow: hidden; background: #25262b; border: 0; border-radius: var(--radius); }
.detail-gallery button:first-child { grid-column: span 7; grid-row: span 2; }
.detail-gallery button:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.detail-gallery button:hover img { transform: scale(1.035); }
.detail-gallery span { position: absolute; right: 14px; bottom: 14px; width: 38px; height: 38px; display: grid; place-items: center; background: rgba(9,10,12,.82); color: var(--white); border-radius: 50%; font-family: var(--display); font-size: .7rem; font-weight: 800; }
.care-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.care-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #c9c8c2; }
.care-list li { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding-block: 21px; border-bottom: 1px solid #c9c8c2; }
.care-list span { color: var(--red); font-family: var(--display); font-size: .72rem; font-weight: 800; }
.care-list p { margin: 0; }
.faq-layout { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr); gap: 80px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding-block: 18px; cursor: pointer; font-family: var(--display); font-size: 1.05rem; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; background: var(--ink); color: var(--white); border-radius: 50%; transition: transform 180ms ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 68ch; margin: 0 50px 26px 0; color: var(--text-muted); }
.related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.related-grid > a { position: relative; min-height: 360px; display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); color: var(--white); border-radius: var(--radius); }
.related-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: transform 300ms ease, opacity 300ms ease; }
.related-grid > a:hover img { transform: scale(1.035); opacity: .5; }
.related-grid > a > span { position: relative; width: 100%; display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 28px; background: linear-gradient(transparent,rgba(0,0,0,.9)); }
.related-grid small { grid-column: 1 / -1; margin-bottom: 6px; color: #d1d2d5; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.related-grid strong { font-family: var(--display); font-size: 1.25rem; }

.projects-intro { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; margin-bottom: clamp(38px,6vw,68px); }
.filter-row button { min-height: 44px; padding: 9px 16px; background: transparent; color: var(--text-muted); border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.filter-row button:hover, .filter-row button.is-active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.project-grid-archive .project-card[hidden], .masonry-gallery button[hidden] { display: none; }
.project-grid-archive .project-card-featured { grid-column: span 2; grid-row: auto; }
.project-grid-archive .project-card-featured .project-image { height: 520px; }
.project-grid-archive .project-card:not(.project-card-featured) .project-image { height: 370px; }
.project-grid-archive .project-card-copy p:not(.card-kicker) { color: var(--text-muted); }
.project-grid-archive .project-count { color: var(--text-muted); border-color: var(--line); }
.portfolio-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 34px 18px; }
.portfolio-grid .project-image { height: auto !important; aspect-ratio: 4 / 5; border-radius: var(--radius-md); }
.portfolio-grid .project-card-copy { padding: 16px 2px 0; }
.portfolio-grid .project-card-copy h3 { font-size: clamp(1.05rem,1.5vw,1.35rem); }
.portfolio-grid .project-open { color: var(--text-muted); border-color: var(--line); }
.masonry-gallery { columns: 4 250px; column-gap: 16px; }
.masonry-gallery button { position: relative; width: 100%; display: block; margin: 0 0 16px; padding: 0; break-inside: avoid; overflow: hidden; background: #202126; border: 0; border-radius: 12px; }
.masonry-gallery img { width: 100%; transition: transform 300ms ease, filter 300ms ease; }
.masonry-gallery span { position: absolute; right: 10px; bottom: 10px; left: 10px; padding: 10px 12px; transform: translateY(8px); background: rgba(9,10,12,.82); color: var(--white); border-radius: 8px; font-size: .72rem; font-weight: 700; opacity: 0; transition: opacity 180ms ease, transform 180ms ease; }
.masonry-gallery button:hover img { transform: scale(1.025); filter: brightness(.76); }
.masonry-gallery button:hover span, .masonry-gallery button:focus-visible span { transform: translateY(0); opacity: 1; }
.legacy-gallery { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.legacy-gallery button { position: relative; height: 270px; padding: 0; overflow: hidden; background: #ddd; border: 0; border-radius: 12px; }
.legacy-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.legacy-gallery button:hover img { transform: scale(1.04); }
.legacy-gallery span { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; display: grid; place-items: center; background: var(--white); border-radius: 50%; font-family: var(--display); font-size: .7rem; font-weight: 800; }

.about-manifesto { display: grid; grid-template-columns: 160px 1.25fr .75fr; gap: clamp(30px,6vw,86px); align-items: start; }
.about-manifesto h2 { font-size: clamp(2.1rem,4.5vw,4.4rem); }
.about-manifesto > div { color: var(--text-muted); font-size: 1.06rem; }
.values-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.values-grid article { min-height: 320px; padding: 34px; border-right: 1px solid rgba(255,255,255,.18); }
.values-grid article:first-child { padding-left: 0; }
.values-grid article:last-child { border-right: 0; }
.values-grid span { margin-bottom: 80px; }
.image-note { margin: 12px 4px 0; color: var(--text-muted); font-size: .76rem; }

.brand-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.brand-grid article { padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.brand-logo { height: 200px; display: grid; place-items: center; margin-bottom: 22px; padding: 30px; background: #f1f1ef; border-radius: 12px; }
.brand-logo img { width: 100%; max-height: 120px; object-fit: contain; }
.brand-grid h3 { margin-bottom: 10px; }
.brand-grid p { margin: 0; color: var(--text-muted); }
.cert-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.cert-grid article { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; background: var(--white); color: var(--ink); border-radius: var(--radius); }
.cert-grid article > img { width: 100%; height: 170px; object-fit: contain; margin-bottom: 36px; }
.cert-grid h3 { margin-bottom: 9px; }
.cert-grid p { margin: 0; color: var(--text-muted); }
.rupes-mark { display: grid; place-items: center; height: 170px; margin-bottom: 36px; background: #111; color: var(--white); border-radius: 12px; font-family: var(--display); font-size: clamp(2rem,5vw,4rem); font-style: italic; font-weight: 800; letter-spacing: .02em; }
.material-guide { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.material-guide ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.material-guide li { display: grid; grid-template-columns: 58px 1fr; gap: 16px; padding-block: 26px; border-bottom: 1px solid var(--line); }
.material-guide li > span { color: var(--red); font-family: var(--display); font-size: .72rem; font-weight: 800; }
.material-guide h3 { margin-bottom: 8px; }
.material-guide li p { margin: 0; color: var(--text-muted); }

.location-detail-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.location-detail-grid > div:first-child > p:not(.eyebrow) { max-width: 64ch; margin-bottom: 30px; color: #adafb6; }
.hours-card { padding: 38px; background: var(--white); color: var(--ink); border-radius: var(--radius); }
.hours-card dl { margin-block: 26px; border-top: 1px solid var(--line); }
.hours-card dl div { display: flex; justify-content: space-between; gap: 18px; padding-block: 15px; border-bottom: 1px solid var(--line); }
.hours-card dt, .hours-card dd { margin: 0; }
.hours-card dd { font-weight: 700; }
.hours-card small { display: block; color: var(--text-muted); }
.service-link-cloud { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-link-cloud a { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: var(--display); font-weight: 700; }
.service-link-cloud a:hover { background: var(--ink); color: var(--white); }

.contact-layout { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); gap: clamp(48px,8vw,110px); }
.quote-form { padding: clamp(28px,5vw,54px); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-head { margin-bottom: 40px; }
.form-head h2 { margin-bottom: 14px; font-size: clamp(2rem,4vw,3.2rem); }
.form-head > p:last-child { margin: 0; color: var(--text-muted); }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.form-grid label { display: block; }
.form-grid label > span { display: block; margin-bottom: 8px; font-size: .78rem; font-weight: 700; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 50px; padding: 13px 14px; background: #f8f8f6; border: 1px solid #c9c9c3; border-radius: 8px; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--ink); }
.form-full { grid-column: 1 / -1; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.form-actions p { margin: 0; color: var(--text-muted); font-size: .82rem; }
.contact-aside { padding-top: 20px; }
.contact-aside > h2 { margin-bottom: 34px; }
.contact-method { min-height: 86px; display: flex; align-items: center; gap: 18px; padding-block: 18px; border-bottom: 1px solid var(--line); }
.contact-method > svg, .contact-method > :first-child:not(span) { width: 42px; font-family: var(--display); font-size: 1.6rem; font-weight: 800; }
.contact-method span { min-width: 0; }
.contact-method small, .contact-method strong { display: block; }
.contact-method small { margin-bottom: 4px; color: var(--text-muted); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.contact-method strong { overflow-wrap: anywhere; font-family: var(--display); font-size: clamp(1rem,1.8vw,1.25rem); }
.contact-emails { margin-top: 40px; }
.contact-emails h3 { font-size: 1rem; }
.contact-emails a { display: block; margin-top: 8px; color: var(--text-muted); }

.cta-band { padding-block: clamp(58px,7vw,86px); background: var(--red); color: var(--white); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band .eyebrow { color: #ffd3d3; }
.cta-band h2 { max-width: 790px; margin: 0; font-size: clamp(2rem,4vw,3.5rem); }
.cta-band .button { background: var(--white); color: var(--ink); border-color: var(--white); }
.cta-band .button-ghost { background: transparent; color: var(--white); }
.cta-band .button:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.site-footer { padding-block: 76px 28px; background: #050506; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 50px; }
.footer-grid > div:not(.footer-intro) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-intro img { width: 150px; height: 70px; object-fit: contain; margin-bottom: 18px; padding: 5px 12px; background: var(--white); border-radius: 9px; }
.footer-intro p { max-width: 40ch; color: #92949b; }
.footer-grid h3 { margin-bottom: 14px; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a { color: #a7a9b0; font-size: .84rem; }
.footer-grid a:hover { color: var(--white); }
.social-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 64px; padding-top: 24px; color: #71737a; border-top: 1px solid #24252a; font-size: .74rem; }
.footer-bottom p { margin: 0; }
.floating-wa { position: fixed; z-index: 90; right: 20px; bottom: 20px; min-height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 13px 18px; background: #1fbd61; color: var(--white); border-radius: 999px; box-shadow: 0 14px 40px rgba(0,0,0,.2); font-size: .78rem; font-weight: 700; }
.floating-wa:hover { transform: translateY(-2px); }
.js .floating-wa { transform: translateY(calc(100% + 28px)); opacity: 0; pointer-events: none; transition: transform 220ms ease, opacity 180ms ease; }
.js .floating-wa.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.lightbox { width: min(1180px,calc(100% - 32px)); max-height: calc(100svh - 32px); padding: 12px; overflow: hidden; background: #101114; color: var(--white); border: 0; border-radius: 16px; box-shadow: var(--shadow); }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.lightbox-toolbar { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 2px 10px 10px; }
.lightbox-toolbar p { margin: 0; color: #c1c2c6; font-size: .78rem; font-weight: 700; }
.lightbox-stage { position: relative; display: grid; place-items: center; min-height: 300px; overflow: hidden; background: #070708; border-radius: 10px; }
.lightbox-stage img { width: 100%; height: min(76svh,820px); object-fit: contain; }
.lightbox-caption { margin: 10px 6px 2px; color: #c1c2c6; font-size: .82rem; }
.lightbox-close, .lightbox-nav { width: 44px; height: 44px; display: grid; place-items: center; background: rgba(255,255,255,.94); color: var(--ink); border: 0; border-radius: 50%; }
.lightbox-close { flex: 0 0 auto; }
.lightbox-nav { position: absolute; z-index: 2; top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 16px; }
.lightbox-prev svg { transform: rotate(180deg); }
.lightbox-next { right: 16px; }
.lightbox-nav[hidden] { display: none; }
.reveal { transition: opacity 500ms ease, transform 500ms cubic-bezier(.22,1,.36,1); }
.js .reveal:not(.is-visible) { transform: translateY(18px); opacity: 0; }

@media (max-width: 1120px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .header-cta { display: none; }
  .service-card-media { height: 240px; }
  .service-card-body > p:not(.card-kicker) { min-height: 102px; }
  .project-card-featured .project-image { height: 580px; }
  .portfolio-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .legacy-gallery { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.4fr repeat(2,1fr); }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px,720px); }
  .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand { width: 116px; }
  .primary-nav { display: none; }
  .mobile-menu { display: block; justify-self: end; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav { position: absolute; z-index: 10; top: 100%; right: 0; left: 0; height: calc(100dvh - 72px); min-height: calc(100svh - 72px); display: none; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; padding: 22px max(18px,calc((100% - 684px)/2)); background: var(--ink); box-shadow: 0 24px 50px rgba(0,0,0,.3); overflow-y: auto; overscroll-behavior: contain; }
  .mobile-menu[open] .mobile-nav { display: flex; }
  .mobile-nav a { min-height: 62px; display: flex; align-items: center; padding: 14px 2px; color: #c6c7cc; border-bottom: 1px solid rgba(255,255,255,.14); font-family: var(--display); font-size: 1.15rem; font-weight: 600; }
  .mobile-nav a[aria-current="page"] { color: var(--white); }
  .home-hero { min-height: 0; }
  .home-hero-layout { min-height: 0; grid-template-columns: 1fr; gap: 34px; padding-block: 34px 64px; }
  .home-hero-visual { order: -1; height: min(52vw,440px); min-height: 340px; }
  .home-hero h1 { max-width: 100%; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .metrics-grid > div { min-height: 110px; border-bottom: 1px solid rgba(255,255,255,.25); }
  .metrics-grid > div:nth-child(2) { border-right: 0; }
  .service-grid, .project-grid, .package-grid, .brand-grid, .cert-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card-body > p:not(.card-kicker) { min-height: 0; }
  .project-rail { display: flex; gap: 18px; margin-inline: calc(50% - 50vw); padding: 0 18px 12px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-inline: 18px; scroll-snap-type: inline mandatory; scrollbar-width: none; }
  .project-rail::-webkit-scrollbar { display: none; }
  .project-rail .project-card { flex: 0 0 min(72vw,360px); scroll-snap-align: start; }
  .project-rail .project-image { height: 430px; }
  .project-card-featured, .project-grid-archive .project-card-featured { grid-column: span 2; }
  .project-card-featured .project-image, .project-grid-archive .project-card-featured .project-image { height: 530px; }
  .editorial-split, .editorial-split-reverse, .service-path, .service-intro, .service-scope, .care-layout, .faq-layout, .material-guide, .location-detail-grid, .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .editorial-split-reverse > div:first-child { order: 2; }
  .process-grid, .values-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid li:nth-child(2), .values-grid article:nth-child(2) { border-right: 0; }
  .process-grid li:first-child, .values-grid article:first-child { padding-left: 30px; }
  .process-grid li:nth-child(-n+2), .values-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .values-grid article:nth-child(-n+2) { border-bottom-color: rgba(255,255,255,.18); }
  .location-grid { grid-template-columns: 1fr; }
  .about-manifesto { grid-template-columns: 1fr; gap: 28px; }
  .detail-gallery { grid-auto-rows: 190px; }
  .detail-gallery button, .detail-gallery button:first-child, .detail-gallery button:nth-child(2) { grid-column: span 6; grid-row: span 2; }
  .projects-intro, .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .projects-intro { display: block; }
  .filter-row { justify-content: flex-start; }
  .legacy-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-link-cloud { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: 72px; font-size: 16px; }
  .topbar-inner { min-height: 36px; gap: 10px; font-size: .69rem; letter-spacing: .01em; }
  .topbar-hours { min-width: 0; white-space: nowrap; }
  .topbar-hours-full { display: none; }
  .topbar-hours-compact { display: inline; }
  .topbar-phone { gap: 5px; color: var(--white); font-size: .72rem; letter-spacing: 0; }
  .topbar a svg { width: 17px; height: 17px; }
  .mobile-nav { padding-inline: 14px; }
  .section { padding-block: 58px; }
  .desktop-link { display: none; }
  .mobile-only { display: flex; }
  .home-hero { min-height: 0; display: block; }
  .home-hero-layout { width: 100%; display: flex; flex-direction: column; gap: 0; padding-block: 0 52px; }
  .home-hero-visual { order: -1; width: 100%; height: 44svh; min-height: 320px; margin: 0; border-inline: 0; border-radius: 0; }
  .home-hero-visual img { object-position: center 52%; }
  .home-hero-visual figcaption { right: 14px; bottom: 14px; left: 14px; padding: 9px 12px; font-size: .7rem; }
  .page-hero-overlay { background: linear-gradient(90deg,rgba(5,6,8,.9),rgba(5,6,8,.22)),linear-gradient(0deg,rgba(5,6,8,.88),transparent 55%); }
  .home-hero-inner { width: var(--shell); margin-inline: auto; padding-block: 38px 0; }
  .home-hero h1 { max-width: 11ch; margin-bottom: 20px; font-size: clamp(2.85rem,13vw,3.65rem); line-height: .96; }
  .home-hero h1 span { -webkit-text-stroke-width: 1px; }
  .home-hero-inner > p:not(.eyebrow) { margin-bottom: 26px; font-size: 1rem; }
  .button-row { width: 100%; }
  .home-hero .button-row .button, .cta-band .button-row .button { flex: 1 1 100%; }
  .metrics-grid > div { padding: 18px 16px; }
  .metrics-grid > div:nth-child(odd) { padding-left: 0; }
  .service-grid, .project-grid, .package-grid, .brand-grid, .cert-grid, .related-grid { grid-template-columns: 1fr; }
  .service-grid { gap: 12px; }
  .service-card { display: grid; grid-template-columns: 112px minmax(0,1fr); border-radius: var(--radius-md); }
  .service-card-media { height: 100%; min-height: 172px; border-radius: 0; }
  .service-card-media > span { top: 10px; left: 10px; width: 34px; height: 34px; font-size: .68rem; }
  .service-card-body { display: flex; flex-direction: column; align-items: flex-start; padding: 17px 16px; }
  .service-card-body .card-kicker { margin-bottom: 8px; font-size: .7rem; letter-spacing: .1em; }
  .service-card h3 { margin-bottom: 8px; font-size: 1.14rem; }
  .service-card-body > p:not(.card-kicker) { display: -webkit-box; margin-bottom: 8px; overflow: hidden; color: var(--text-muted); font-size: .86rem; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
  .service-card .text-link { min-height: 36px; margin-top: auto; font-size: .76rem; }
  .project-card-featured, .project-grid-archive .project-card-featured { grid-column: auto; }
  .project-card-featured .project-image, .project-grid-archive .project-card-featured .project-image, .project-grid-archive .project-card:not(.project-card-featured) .project-image, .project-image { height: 390px; }
  .project-rail { gap: 14px; padding-inline: 14px; scroll-padding-inline: 14px; }
  .project-rail .project-card { flex-basis: min(82vw,330px); }
  .project-rail .project-image { height: 370px; }
  .project-rail .project-card-copy { padding-top: 14px; }
  .portfolio-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px 10px; }
  .portfolio-grid .project-image { height: auto !important; aspect-ratio: 4 / 5; }
  .portfolio-grid .project-card-copy { padding-top: 11px; }
  .portfolio-grid .project-card-copy h3 { margin-bottom: 5px; font-size: 1rem; line-height: 1.12; }
  .portfolio-grid .project-card-copy p:not(.card-kicker) { font-size: .8rem; line-height: 1.35; }
  .portfolio-grid .card-kicker { margin-bottom: 6px; font-size: .67rem; letter-spacing: .08em; }
  .portfolio-grid .project-open { display: none; }
  .page-hero, .page-hero-compact { min-height: 440px; }
  .page-hero-inner { padding-block: 76px 42px; }
  .page-hero h1 { max-width: 12ch; margin-bottom: 18px; font-size: clamp(2.65rem,12vw,3.45rem); line-height: .98; }
  .page-hero-copy { font-size: 1rem; line-height: 1.5; }
  .breadcrumb { margin-bottom: 28px; font-size: .7rem; }
  .editorial-media img, .rounded-image { min-height: 400px; }
  .process-grid, .values-grid { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li:first-child, .values-grid article, .values-grid article:first-child { min-height: 190px; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .values-grid article, .values-grid article:first-child { padding-inline: 0; border-bottom-color: rgba(255,255,255,.18); }
  .process-grid li:last-child, .values-grid article:last-child { border-bottom: 0; }
  .process-grid li > span, .values-grid span, .service-path-grid span { margin-bottom: 30px; }
  .location-card { padding: 28px; }
  .location-card dl { grid-template-columns: 1fr; }
  .service-path-grid { grid-template-columns: 1fr; }
  .service-path-grid article { min-height: 190px; }
  .detail-gallery { display: flex; gap: 12px; margin-inline: -14px; padding-inline: 14px; overflow-x: auto; scroll-padding-inline: 14px; scroll-snap-type: inline mandatory; scrollbar-width: none; }
  .detail-gallery::-webkit-scrollbar { display: none; }
  .detail-gallery button, .detail-gallery button:first-child, .detail-gallery button:nth-child(2) { min-width: min(82vw,330px); height: 390px; flex: 0 0 auto; grid-column: auto; grid-row: auto; scroll-snap-align: start; }
  .related-grid > a { min-height: 320px; }
  .legacy-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
  .legacy-gallery button { height: 190px; }
  .masonry-gallery { columns: 2 150px; column-gap: 10px; }
  .masonry-gallery button { margin-bottom: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .quote-form { padding: 24px; }
  .service-link-cloud { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-wa { right: 14px; bottom: max(10px,env(safe-area-inset-bottom)); left: auto; width: auto; min-width: 154px; height: 52px; justify-content: center; padding: 0 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 14px; }
  .floating-wa span { display: inline; }
  .filter-row { position: sticky; z-index: 20; top: 80px; flex-wrap: nowrap; justify-content: flex-start; gap: 8px; margin: 0 -14px 34px; padding: 10px 14px; overflow-x: auto; background: rgba(246,245,241,.96); backdrop-filter: blur(14px); scrollbar-width: none; }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-row button { flex: 0 0 auto; min-height: 46px; }
  .lightbox { width: calc(100% - 18px); max-height: calc(100svh - 18px); padding: 9px; }
  .lightbox-stage img { height: calc(100svh - 150px); }
  .lightbox-nav { top: auto; bottom: 12px; transform: none; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-caption { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

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