@font-face {
    font-family: "Oswald";
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url("../fonts/oswald-latin-variable.woff2") format("woff2");
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

@font-face {
    font-family: "Allura";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/allura-latin-regular.woff2") format("woff2");
}

:root {
    --bg: #090b0d;
    --bg-soft: #0e1215;
    --surface: #14191d;
    --paper: #f1f0eb;
    --paper-soft: #e8e6df;
    --text: #f5f4ef;
    --muted: #aab0b4;
    --line: rgba(255, 255, 255, 0.14);
    --line-dark: rgba(12, 15, 17, 0.18);
    --red: #e4141c;
    --red-bright: #ff686d;
    --red-action: #b20d14;
    --red-action-hover: #940a10;
    --red-dark: #98090f;
    --header-height: 5.25rem;
    --container: 74rem;
    --radius: 0.2rem;
    --ease: 180ms cubic-bezier(0.2, 0.7, 0.2, 1);
    --font-display: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
    --font-signature: "Allura", "Segoe Script", cursive;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--red-action);
    color: #fff;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

.modal-open {
    overflow: hidden;
}

:focus-visible {
    outline: 3px solid var(--red-bright);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 4rem), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    transform: translateY(-160%);
    border-radius: var(--radius);
    background: var(--text);
    color: var(--bg);
    font-weight: 800;
    transition: transform var(--ease);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    border-bottom: 1px solid transparent;
    background: linear-gradient(to bottom, rgba(9, 11, 13, 0.82), rgba(9, 11, 13, 0));
    transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-is-open {
    border-bottom-color: var(--line);
    background: rgba(9, 11, 13, 0.96);
    box-shadow: 0 0.6rem 2.5rem rgba(0, 0, 0, 0.16);
}

@supports (backdrop-filter: blur(12px)) {
    .site-header.is-scrolled,
    .site-header.menu-is-open {
        background: rgba(9, 11, 13, 0.9);
        backdrop-filter: blur(12px);
    }
}

.nav-shell {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    position: relative;
    z-index: 102;
    display: block;
    width: clamp(9.6rem, 15vw, 11.2rem);
}

.brand img {
    width: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 3vw, 2.65rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list a {
    position: relative;
    display: flex;
    min-height: 2.85rem;
    align-items: center;
    padding-block: 0.5rem;
    color: #c1c5c8;
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color var(--ease);
}

.nav-list a::after {
    position: absolute;
    bottom: 0.15rem;
    left: 0;
    width: 1.4rem;
    height: 2px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--red);
    content: "";
    transition: transform var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="location"] {
    color: var(--text);
}

.nav-list a:hover::after,
.nav-list a[aria-current="location"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    position: relative;
    z-index: 102;
    width: 3rem;
    height: 3rem;
    display: none;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(20, 25, 29, 0.72);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    width: 1.35rem;
    height: 2px;
    background: currentColor;
    transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle span:nth-child(1) { transform: translateY(-0.42rem); }
.nav-toggle span:nth-child(3) { transform: translateY(0.42rem); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.hero {
    position: relative;
    min-height: max(47rem, 100svh);
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.hero-media,
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media {
    z-index: -3;
}

.hero-media img {
    object-fit: cover;
    object-position: center 56%;
    filter: saturate(0.72) contrast(1.08) brightness(0.89);
}

.hero::before,
.hero::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
}

.hero::before {
    background: linear-gradient(90deg, rgba(7, 9, 10, 0.94) 0%, rgba(7, 9, 10, 0.86) 34%, rgba(7, 9, 10, 0.6) 57%, rgba(7, 9, 10, 0.29) 100%);
}

.hero::after {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(9, 11, 13, 0.24) 0%, transparent 28%, rgba(9, 11, 13, 0.2) 70%, rgba(9, 11, 13, 0.88) 100%),
        radial-gradient(circle at 84% 72%, rgba(228, 20, 28, 0.1), transparent 25%);
}

.hero-inner {
    min-height: max(47rem, 100svh);
    display: grid;
    grid-template-rows: 1fr auto;
    padding-top: calc(var(--header-height) + clamp(4rem, 8vh, 7rem));
    padding-bottom: clamp(1.8rem, 4vh, 3.25rem);
}

.hero-copy {
    align-self: center;
    max-width: 52rem;
    padding-bottom: clamp(2rem, 5vh, 4.5rem);
}

.eyebrow {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem 0.9rem;
    margin: 0 0 1.45rem;
    color: var(--red-bright);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 2.1rem;
    height: 2px;
    flex: 0 0 auto;
    background: var(--red);
    content: "";
}

.eyebrow span {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.eyebrow span + span::before {
    width: 0.2rem;
    height: 0.2rem;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    text-wrap: balance;
}

h1 {
    max-width: 10.5ch;
    margin-bottom: 1.65rem;
    font-size: clamp(3.6rem, 7.4vw, 6.6rem);
    font-weight: 650;
    letter-spacing: -0.018em;
    line-height: 0.96;
    text-shadow: 0 0.15rem 2.5rem rgba(0, 0, 0, 0.28);
}

h2 {
    margin-bottom: 1.6rem;
    font-size: clamp(2.65rem, 5.2vw, 4.85rem);
    font-weight: 640;
    letter-spacing: -0.016em;
    line-height: 1;
}

h3 {
    margin-bottom: 0.9rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 610;
    letter-spacing: -0.008em;
    line-height: 1.08;
}

.hero-lead {
    max-width: 39rem;
    margin-bottom: 2.15rem;
    color: #d0d3d4;
    font-size: clamp(1.08rem, 1.65vw, 1.28rem);
    line-height: 1.62;
    text-wrap: pretty;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.15rem 1.6rem;
}

.button {
    display: inline-flex;
    min-height: 3.45rem;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.45rem;
    border: 1px solid var(--red-action);
    border-radius: var(--radius);
    background: var(--red-action);
    box-shadow: 0 0.65rem 2rem rgba(100, 0, 5, 0.22);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: background var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.text-link {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    gap: 0.65rem;
    padding-block: 0.4rem;
    font-size: 0.92rem;
    font-weight: 780;
    transition: color var(--ease);
}

.text-link span {
    color: var(--red-bright);
    transition: transform var(--ease);
}

.hero-principles {
    display: grid;
    max-width: 51rem;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 1.4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    list-style: none;
}

.hero-principles li {
    display: grid;
    gap: 0.28rem;
    padding: 0 1.5rem;
    border-right: 1px solid var(--line);
}

.hero-principles li:first-child {
    padding-left: 0;
}

.hero-principles li:last-child {
    border-right: 0;
}

.hero-principles strong {
    color: var(--red-bright);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.hero-principles span {
    color: #e2e4e4;
    font-size: 0.83rem;
    font-weight: 680;
    line-height: 1.4;
}

.section {
    position: relative;
    padding: clamp(7rem, 11vw, 9.25rem) 0;
    scroll-margin-top: var(--header-height);
}

.section-about {
    background: var(--paper);
    color: #121517;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(4rem, 10vw, 9.5rem);
}

.section-heading h2 {
    max-width: 11.5ch;
}

.eyebrow-dark {
    color: var(--red-dark);
}

.story-copy {
    max-width: 43rem;
}

.story-copy p {
    color: #505457;
    font-size: 1.05rem;
    text-wrap: pretty;
}

.story-copy p:last-child {
    margin-bottom: 0;
}

.story-copy .story-intro {
    margin-bottom: 1.65rem;
    color: #16191b;
    font-size: clamp(1.28rem, 2.1vw, 1.68rem);
    font-weight: 670;
    line-height: 1.48;
    letter-spacing: -0.015em;
}

.story-copy .story-signature {
    width: max-content;
    margin: 2.7rem 1.25rem 0 auto;
    color: var(--red-dark);
    font-family: var(--font-signature);
    font-size: clamp(3.5rem, 6vw, 4.9rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    transform: rotate(-4deg);
}

.experience-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(5rem, 9vw, 7.5rem);
    margin-bottom: 0;
    padding: 0;
    border: 1px solid var(--line-dark);
    background: var(--paper-soft);
    list-style: none;
}

.experience-list li {
    position: relative;
    min-height: 19.5rem;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.75rem, 3vw, 2.5rem);
    border-right: 1px solid var(--line-dark);
    background: var(--paper-soft);
}

.experience-list li::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(232, 230, 223, 0.48) 0%, rgba(232, 230, 223, 0.64) 48%, rgba(232, 230, 223, 0.96) 100%);
    content: "";
    pointer-events: none;
}

.experience-list li:last-child {
    border-right: 0;
}

.experience-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.36;
    filter: saturate(0.68) contrast(1.05);
}

.experience-list li:nth-child(1) .experience-image {
    object-position: center;
}

.experience-list li:nth-child(2) .experience-image {
    object-position: 58% center;
}

.experience-list li:nth-child(3) .experience-image {
    object-position: center;
}

.experience-list strong,
.experience-list span {
    position: relative;
    z-index: 2;
    display: block;
}

.fact-label {
    margin-bottom: auto;
    padding-bottom: 3.5rem;
    color: var(--red-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.experience-list strong {
    min-height: 2.5em;
    margin-bottom: 0.85rem;
    color: #15181a;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    font-weight: 620;
    letter-spacing: -0.01em;
    line-height: 1.14;
}

.experience-list strong + span {
    color: #5a5e60;
    font-size: 0.9rem;
    font-weight: 560;
    line-height: 1.55;
}

.workshop-feature {
    position: relative;
    min-height: clamp(35rem, 53vw, 43rem);
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
    border-block: 1px solid var(--line);
    background: var(--bg);
}

.workshop-media,
.workshop-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.workshop-media {
    z-index: -3;
}

.workshop-media img {
    object-fit: cover;
    object-position: center;
    filter: saturate(0.72) contrast(1.08) brightness(0.84);
}

.workshop-feature::before,
.workshop-feature::after {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    content: "";
}

.workshop-feature::before {
    background: linear-gradient(90deg, rgba(8, 10, 12, 0.89) 0%, rgba(8, 10, 12, 0.64) 56%, rgba(8, 10, 12, 0.36) 100%);
}

.workshop-feature::after {
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 10, 12, 0.17), transparent 38%, rgba(8, 10, 12, 0.74));
}

.workshop-content {
    padding-bottom: clamp(4rem, 8vw, 7rem);
}

.workshop-content h2 {
    max-width: 16ch;
    margin-bottom: 0;
    font-size: clamp(2.45rem, 5.25vw, 4.9rem);
    text-shadow: 0 0.15rem 2.5rem rgba(0, 0, 0, 0.3);
}

.section-services {
    overflow: hidden;
    background: var(--bg-soft);
}

.section-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.5fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
    margin-bottom: clamp(4rem, 7vw, 6rem);
}

.section-heading-row h2 {
    max-width: 13ch;
    margin-bottom: 0;
}

.section-heading-row > p {
    max-width: 34rem;
    margin-bottom: 0.3rem;
    color: var(--muted);
    font-size: 1.03rem;
    text-wrap: pretty;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.8vw, 1.35rem);
}

.service-module {
    position: relative;
    min-width: 0;
    min-height: clamp(20rem, 31vw, 23rem);
    padding: clamp(2rem, 3.8vw, 3.25rem);
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 100% 0%, rgba(228, 20, 28, 0.1), transparent 35%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 46%),
        var(--surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 1.4rem 3.5rem rgba(0, 0, 0, 0.15);
}

.service-module::before {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(4.5rem, 9vw, 7rem);
    height: 2px;
    background: linear-gradient(90deg, var(--red), rgba(228, 20, 28, 0));
    content: "";
}

.service-module::after {
    position: absolute;
    top: 1.15rem;
    right: 1.15rem;
    z-index: -1;
    width: 2.6rem;
    height: 2.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    content: "";
}

.service-marker {
    position: relative;
    width: 4.7rem;
    height: 4.7rem;
    display: grid;
    place-items: center;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: var(--radius);
    background: rgba(8, 11, 13, 0.7);
    box-shadow: inset 3px 0 0 var(--red), 0 0.9rem 2.2rem rgba(0, 0, 0, 0.2);
}

.service-marker::after {
    position: absolute;
    right: -0.38rem;
    bottom: -0.38rem;
    width: 1.2rem;
    height: 1.2rem;
    border-right: 1px solid var(--red-bright);
    border-bottom: 1px solid var(--red-bright);
    content: "";
    opacity: 0.75;
}

.service-icon {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    fill: none;
    stroke: #d0d4d6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.service-icon .icon-accent {
    stroke: var(--red-bright);
}

.service-module h3 {
    max-width: 15ch;
    margin-bottom: 1.1rem;
}

.service-module p {
    max-width: 34rem;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.98rem;
    text-wrap: pretty;
}

.section-reviews {
    background: var(--paper-soft);
    color: #121517;
}

.reviews-heading h2 {
    max-width: 12ch;
}

.reviews-heading > p {
    color: #555a5d;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.review-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-top: 2px solid #1a1d1f;
    border-radius: 0;
    background: transparent;
    color: #141719;
    text-align: left;
    cursor: pointer;
    transition: border-color var(--ease);
}

.review-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #171b1e;
}

.review-card-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 52%, rgba(7, 9, 10, 0.28));
    content: "";
    pointer-events: none;
}

.review-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04);
    transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1), filter var(--ease);
}

.review-card-body {
    min-height: 13.5rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 1.2rem 0 0.3rem;
}

.review-card-meta {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.55rem;
    color: var(--red-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.review-card-body > strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 620;
    letter-spacing: -0.01em;
    line-height: 1.12;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.review-card-subheading {
    display: block;
    color: #62676a;
    font-size: 0.9rem;
    line-height: 1.5;
}

.review-card-action {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 1.7rem;
    color: #292d2f;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.review-card-action svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: var(--red-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform var(--ease);
}

.review-modal {
    width: min(74rem, calc(100% - 3rem));
    max-width: none;
    max-height: calc(100dvh - 3rem);
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: var(--bg);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.55);
    color: var(--text);
}

.review-modal::backdrop {
    background: rgba(2, 3, 4, 0.88);
    backdrop-filter: blur(5px);
}

.review-dialog {
    max-height: calc(100dvh - 3rem);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    overflow: hidden;
}

.review-modal-toolbar {
    position: relative;
    z-index: 3;
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--line);
    background: #0b0e10;
}

.review-modal-toolbar > span {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #b6bbbe;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.review-modal-toolbar i {
    width: 0.22rem;
    height: 0.22rem;
    border-radius: 50%;
    background: var(--red-bright);
}

.review-close {
    width: 4.5rem;
    min-height: 4.5rem;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    color: #d7dadb;
    cursor: pointer;
    transition: background var(--ease), color var(--ease);
}

.review-close svg,
.gallery-arrow svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.review-modal-content {
    height: min(46rem, calc(100dvh - 7.5rem));
    display: grid;
    grid-template-columns: minmax(0, 1.58fr) minmax(20rem, 0.92fr);
    overflow: hidden;
}

.review-viewer {
    min-width: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    overflow: hidden;
    background: #050607;
}

.review-main-image {
    position: relative;
    min-height: 22rem;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.review-main-image > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    width: 3.2rem;
    height: 3.2rem;
    display: grid;
    place-items: center;
    padding: 0;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(5, 6, 7, 0.78);
    color: #fff;
    cursor: pointer;
    transition: background var(--ease), border-color var(--ease);
}

.gallery-arrow-prev {
    left: 1rem;
}

.gallery-arrow-next {
    right: 1rem;
}

.gallery-count {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    min-width: 3.8rem;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(5, 6, 7, 0.78);
    color: #e5e7e8;
    font-size: 0.75rem;
    font-weight: 780;
    letter-spacing: 0.12em;
    text-align: center;
}

.gallery-thumbnails {
    display: flex;
    gap: 0.6rem;
    padding: 0.75rem;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    scrollbar-color: #555b5f #0a0c0e;
    scrollbar-width: thin;
}

.gallery-thumbnail {
    width: 4.5rem;
    height: 3.4rem;
    flex: 0 0 auto;
    padding: 0;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 0;
    background: #111518;
    cursor: pointer;
    opacity: 0.58;
    transition: border-color var(--ease), opacity var(--ease);
}

.gallery-thumbnail[aria-pressed="true"] {
    border-color: var(--red-bright);
    opacity: 1;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-details {
    padding: clamp(2.4rem, 4.5vw, 4rem);
    overflow-y: auto;
    background: var(--paper);
    color: #15181a;
    scrollbar-color: #979b9d var(--paper);
    scrollbar-width: thin;
}

.review-details h2 {
    max-width: 12ch;
    margin-bottom: 0.75rem;
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    overflow-wrap: anywhere;
}

.review-modal-subheading {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    color: #626669;
    font-size: 1rem;
    font-weight: 650;
}

.review-detail-block {
    padding-top: 1.35rem;
    border-top: 1px solid var(--line-dark);
}

.review-detail-block + .review-detail-block {
    margin-top: 2.25rem;
}

.review-detail-block h3 {
    margin-bottom: 1rem;
    color: var(--red-dark);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.review-detail-block p {
    margin-bottom: 0;
    color: #454a4d;
    font-size: 1rem;
    white-space: pre-line;
}

.review-response blockquote {
    margin: 0;
    padding-left: 1.3rem;
    border-left: 3px solid var(--red-dark);
    color: #171a1c;
    font-size: clamp(1.16rem, 1.8vw, 1.4rem);
    font-weight: 620;
    line-height: 1.55;
    overflow-wrap: anywhere;
    quotes: "“" "”";
    white-space: pre-line;
}

.review-response blockquote::before {
    content: open-quote;
}

.review-response blockquote::after {
    content: close-quote;
}

.section-approach {
    overflow: hidden;
    isolation: isolate;
    border-top: 1px solid var(--line);
    background: var(--bg);
}

.section-approach::before {
    position: absolute;
    right: -0.08em;
    bottom: -0.22em;
    z-index: -1;
    color: #fff;
    content: "123";
    font-size: clamp(18rem, 46vw, 43rem);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.11em;
    line-height: 0.8;
    opacity: 0.022;
    pointer-events: none;
}

.approach-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(19rem, 0.66fr);
    gap: clamp(4rem, 11vw, 10rem);
}

.approach-grid h2 {
    max-width: 12.5ch;
}

.approach-copy {
    padding-top: 2.5rem;
}

.approach-copy p {
    color: #bcc1c4;
    font-size: 1.05rem;
    text-wrap: pretty;
}

.approach-copy p:last-child {
    margin-bottom: 0;
}

.closing-statement {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-top: clamp(6rem, 11vw, 10rem);
    padding-top: clamp(2.4rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
}

.closing-statement p {
    max-width: 15ch;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.8vw, 6.25rem);
    font-weight: 650;
    letter-spacing: -0.018em;
    line-height: 0.97;
    text-wrap: balance;
}

.closing-statement em {
    color: var(--red);
    font-style: normal;
    font-weight: 650;
}

.section-contact {
    border-top: 0.45rem solid var(--red-dark);
    background: var(--paper);
    color: #121517;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(32rem, 1.28fr);
    align-items: start;
    gap: clamp(4rem, 10vw, 9rem);
}

.contact-heading h2 {
    max-width: 9ch;
    margin-bottom: 1.6rem;
}

.contact-heading > p:last-child {
    max-width: 30rem;
    margin-bottom: 0;
    color: #555b5e;
    font-size: 1.05rem;
    line-height: 1.7;
    text-wrap: pretty;
}

.contact-directory {
    min-width: 0;
}

.contact-panel-title {
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.contact-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 1px;
    background: rgba(12, 15, 17, 0.2);
    box-shadow: 0 1.8rem 4rem rgba(12, 15, 17, 0.1);
    font-style: normal;
}

.contact-card {
    position: relative;
    min-width: 0;
    min-height: 8.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem;
    background: #fbfaf6;
    color: #171a1c;
    transition: background-color var(--ease), color var(--ease);
}

a.contact-card {
    cursor: pointer;
}

.contact-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(152, 9, 15, 0.32);
    background: rgba(152, 9, 15, 0.055);
    color: var(--red-dark);
    transition: border-color var(--ease), background-color var(--ease), color var(--ease);
}

.contact-icon svg {
    width: 1.3rem;
    height: 1.3rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.55;
}

.contact-card-copy {
    min-width: 0;
    display: grid;
    gap: 0.4rem;
    padding-top: 0.08rem;
}

.contact-label {
    color: var(--red-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-value {
    color: #222628;
    font-size: 0.96rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.contact-address {
    color: #5a6063;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.35;
}

.contact-card-address {
    padding-block: 1.15rem;
}

.contact-card-address .contact-card-copy {
    gap: 0.25rem;
}

.contact-card-arrow {
    margin-left: auto;
    color: var(--red-dark);
    font-size: 1.25rem;
    line-height: 1;
    transition: transform var(--ease), color var(--ease);
}

.site-footer {
    padding: 2.25rem 0;
    border-top: 1px solid var(--line);
    background: #050607;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.footer-inner > img {
    width: 8.8rem;
    opacity: 0.78;
}

.footer-copy {
    text-align: right;
}

.footer-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.55rem;
    color: #d4d7d8;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--ease);
}

.footer-top-link span {
    color: var(--red-bright);
    transition: transform var(--ease);
}

.footer-copy p {
    margin: 0;
    color: #8f969a;
    font-size: 0.78rem;
}

.reveal-ready [data-reveal] {
    transform: translateY(0.8rem);
    opacity: 0;
    transition: opacity 420ms ease, transform 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready [data-reveal].is-visible {
    transform: translateY(0);
    opacity: 1;
}

@media (hover: hover) {
    .button:hover {
        transform: translateY(-2px);
        border-color: var(--red-action-hover);
        background: var(--red-action-hover);
        box-shadow: 0 0.9rem 2.4rem rgba(100, 0, 5, 0.28);
    }

    .text-link:hover {
        color: var(--red-bright);
    }

    .text-link:hover span {
        transform: translateX(0.22rem);
    }

    .closing-statement .text-link:hover span {
        transform: translateY(-0.18rem);
    }

    a.contact-card:hover {
        background: #121517;
        color: #fff;
    }

    a.contact-card:hover .contact-icon {
        border-color: rgba(255, 104, 109, 0.58);
        background: rgba(228, 20, 28, 0.13);
        color: var(--red-bright);
    }

    a.contact-card:hover .contact-label,
    a.contact-card:hover .contact-card-arrow {
        color: var(--red-bright);
    }

    a.contact-card:hover .contact-value {
        color: #fff;
    }

    a.contact-card:hover .contact-card-arrow {
        transform: translateX(0.22rem);
    }

    .footer-top-link:hover {
        color: #fff;
    }

    .footer-top-link:hover span {
        transform: translateY(-0.18rem);
    }

    .review-card:hover {
        border-top-color: var(--red-dark);
    }

    .review-card:hover .review-card-image img {
        transform: scale(1.025);
        filter: saturate(0.9) contrast(1.05);
    }

    .review-card:hover .review-card-action svg {
        transform: translateX(0.2rem);
    }

    .review-close:hover,
    .gallery-arrow:hover {
        border-color: rgba(255, 255, 255, 0.34);
        background: #191e22;
        color: #fff;
    }

    .gallery-thumbnail:hover {
        opacity: 0.9;
    }
}

@media (max-width: 62rem) {
    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-grid .section-heading h2,
    .approach-grid h2,
    .contact-heading h2 {
        max-width: 15ch;
    }

    .section-heading-row {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 1.8rem;
    }

    .section-heading-row > p {
        margin-bottom: 0;
    }

    .approach-copy {
        max-width: 43rem;
        padding-top: 0;
    }

    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-modal-content {
        grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.9fr);
    }

    .review-details {
        padding: 2.5rem;
    }
}

@media (max-width: 48rem) {
    :root {
        --header-height: 4.75rem;
    }

    .container {
        width: min(calc(100% - 2rem), var(--container));
    }

    .brand {
        width: 9.8rem;
    }

    .js .nav-toggle {
        display: grid;
    }

    .js .nav-list {
        position: fixed;
        inset: var(--header-height) 0 auto;
        display: grid;
        gap: 0;
        max-height: calc(100svh - var(--header-height));
        margin: 0;
        padding: 0.55rem 1rem 0.9rem;
        overflow-y: auto;
        transform: translateY(-0.55rem);
        border-bottom: 1px solid var(--line);
        background: rgba(9, 11, 13, 0.985);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    }

    .js .nav-list[data-open="true"] {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .nav-list a {
        min-height: 3.5rem;
        padding: 0.85rem 0.5rem;
        border-bottom: 1px solid var(--line);
        color: var(--text);
        font-size: 0.9rem;
    }

    .nav-list a::after {
        inset: 0.95rem auto 0.95rem 0;
        width: 2px;
        height: auto;
        transform: scaleY(0);
        transform-origin: bottom;
    }

    .nav-list a:hover::after,
    .nav-list a[aria-current="location"]::after {
        transform: scaleY(1);
        transform-origin: top;
    }

    .nav-list li:last-child a {
        border-bottom: 0;
    }

    .no-js .site-header {
        position: static;
        background: var(--bg);
    }

    .no-js .nav-shell {
        min-height: auto;
        align-items: flex-start;
        flex-wrap: wrap;
        padding-block: 0.85rem;
    }

    .no-js .nav-list {
        width: 100%;
        flex-wrap: wrap;
        gap: 0 1rem;
    }

    .menu-open {
        overflow: hidden;
    }

    .hero,
    .hero-inner {
        min-height: max(46rem, 100svh);
    }

    .no-js .hero {
        min-height: 43rem;
    }

    .hero-media img {
        object-position: 63% center;
        filter: saturate(0.7) contrast(1.08) brightness(0.68);
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(7, 9, 10, 0.71) 0%, rgba(7, 9, 10, 0.65) 32%, rgba(7, 9, 10, 0.84) 72%, rgba(7, 9, 10, 0.93) 100%);
    }

    .hero::after {
        background: linear-gradient(90deg, rgba(7, 9, 10, 0.79), rgba(7, 9, 10, 0.18));
    }

    .hero-inner {
        padding-top: calc(var(--header-height) + 4.4rem);
        padding-bottom: 1.6rem;
    }

    .no-js .hero-inner {
        min-height: 43rem;
        padding-top: 4.5rem;
    }

    .hero-copy {
        align-self: center;
        padding-bottom: 3rem;
    }

    h1 {
        max-width: 9.5ch;
        font-size: clamp(3.25rem, 14vw, 4.9rem);
    }

    h2 {
        font-size: clamp(2.45rem, 11vw, 3.8rem);
    }

    .hero-lead {
        max-width: 34rem;
        color: #d8dadb;
        font-size: 1.04rem;
        line-height: 1.58;
    }

    .hero-principles {
        padding-top: 1.1rem;
    }

    .hero-principles li {
        padding-inline: 0.75rem;
    }

    .hero-principles span {
        font-size: 0.75rem;
    }

    .section {
        padding-block: 5.25rem;
    }

    .about-grid {
        gap: 1.8rem;
    }

    .story-copy .story-signature {
        margin-right: 0.75rem;
    }

    .experience-list {
        grid-template-columns: 1fr;
        margin-top: 4rem;
    }

    .experience-list li,
    .experience-list li:first-child,
    .experience-list li:last-child {
        min-height: 18rem;
        padding: 1.75rem;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .experience-list li:last-child {
        border-bottom: 0;
    }

    .experience-list strong {
        min-height: 0;
    }

    .fact-label {
        margin-bottom: auto;
        padding-bottom: 3rem;
    }

    .workshop-feature {
        min-height: 36rem;
    }

    .workshop-media img {
        object-position: center;
        filter: saturate(0.68) contrast(1.08) brightness(0.72);
    }

    .workshop-feature::before {
        background: linear-gradient(180deg, rgba(8, 10, 12, 0.23) 0%, rgba(8, 10, 12, 0.45) 40%, rgba(8, 10, 12, 0.89) 100%);
    }

    .workshop-feature::after {
        background: linear-gradient(90deg, rgba(8, 10, 12, 0.7), rgba(8, 10, 12, 0.14));
    }

    .workshop-content {
        padding-bottom: 3.5rem;
    }

    .workshop-content h2 {
        max-width: 17ch;
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .section-heading-row {
        margin-bottom: 3.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-module,
    .service-module:nth-child(even) {
        min-height: 20rem;
        padding: 2.15rem;
    }

    .service-marker {
        margin-bottom: 3rem;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 0;
        padding: 1.25rem;
    }

    .contact-card-address {
        padding-block: 1.1rem;
    }

    .closing-statement,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .closing-statement {
        margin-top: 5.5rem;
    }

    .closing-statement p {
        font-size: clamp(2.55rem, 12vw, 4.25rem);
    }

    .footer-inner {
        gap: 1.4rem;
    }

    .footer-copy {
        text-align: left;
    }

    .review-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .review-card-body {
        min-height: 11.5rem;
    }

    .review-modal {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        margin: 0;
        border: 0;
        border-radius: 0;
    }

    .review-dialog {
        height: 100%;
        max-height: none;
    }

    .review-modal-toolbar {
        min-height: var(--header-height);
        padding-left: 1rem;
    }

    .review-close {
        width: var(--header-height);
        min-height: var(--header-height);
    }

    .review-modal-content {
        height: auto;
        min-height: 0;
        display: block;
        overflow-y: auto;
    }

    .review-viewer {
        display: block;
        overflow: visible;
    }

    .review-main-image {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .gallery-thumbnails {
        min-height: 5rem;
    }

    .review-details {
        padding: 2.6rem 1.25rem 4rem;
        overflow: visible;
    }

    .review-details h2 {
        font-size: clamp(2.45rem, 12vw, 3.75rem);
    }
}

@media (max-width: 28rem) {
    .eyebrow {
        gap: 0.5rem 0.65rem;
        font-size: 0.67rem;
        letter-spacing: 0.13em;
    }

    .eyebrow::before {
        width: 1.4rem;
    }

    .eyebrow span {
        gap: 0.65rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-principles li {
        padding-inline: 0.5rem;
    }

    .hero-principles strong {
        font-size: 0.62rem;
    }

    .hero-principles span {
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-ready [data-reveal] {
        transform: none;
        opacity: 1;
    }
}
