:root {
    --ink: #241f1b;
    --ink-soft: #4d4036;
    --orange: #f79623;
    --orange-dark: #d97812;
    --cream: #fbf7f0;
    --paper: #fffdf9;
    --sand: #e9ded0;
    --sand-deep: #d8c8b5;
    --muted: #776d64;
    --line: rgba(36, 31, 27, 0.14);
    --line-light: rgba(255, 253, 249, 0.18);
    --white: #fffdf9;
    --shadow: 0 22px 60px rgba(36, 31, 27, 0.08);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1200px;
    --container-wide: 1440px;
    --header-h: 88px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--cream);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

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

p {
    line-height: 1.7;
}

::selection {
    color: var(--ink);
    background: rgba(247, 150, 35, 0.42);
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 2000;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--paper);
    background: var(--ink);
    transition: transform 0.2s ease;
}

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

.container,
.container-wide {
    width: min(100% - 48px, var(--container));
    margin-inline: auto;
}

.container-wide {
    width: min(100% - 64px, var(--container-wide));
}

main {
    overflow: hidden;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, height 0.28s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
    height: 76px;
    background: rgba(251, 247, 240, 0.78);
    border-bottom-color: rgba(36, 31, 27, 0.08);
    box-shadow: 0 14px 34px rgba(36, 31, 27, 0.05);
    backdrop-filter: blur(20px) saturate(135%);
    -webkit-backdrop-filter: blur(20px) saturate(135%);
}

.header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    gap: 28px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 32px);
    min-width: 0;
}

.desktop-nav-left {
    justify-content: flex-start;
}

.desktop-nav-right {
    justify-content: flex-end;
}

.desktop-nav a:not(.header-cta) {
    position: relative;
    font-size: 0.84rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.desktop-nav a:not(.header-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1.5px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--orange);
    transition: transform 0.22s ease;
}

.desktop-nav a:not(.header-cta):hover::after,
.desktop-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 48px;
}

.header-mark img {
    width: 54px;
    height: auto;
    transition: width 0.25s ease;
}

.site-header.is-scrolled .header-mark img {
    width: 48px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 2px;
    padding: 12px 18px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--orange);
    font-size: 0.82rem;
    font-weight: 750;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
    transform: translateY(-1px);
    background: #ffa537;
}

.menu-toggle {
    display: none;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.42);
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child {
    transform: translateY(-4px);
}

.menu-toggle span:last-child {
    transform: translateY(4px);
}

.site-header.menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 76px 0 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: rgba(251, 247, 240, 0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.site-header.menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 40px;
}

.mobile-menu-inner > a:not(.mobile-project-link) {
    display: flex;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.4rem, 6vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.mobile-project-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 26px;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--orange);
    font-weight: 750;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-orange {
    color: var(--ink);
    background: var(--orange);
}

.button-orange:hover {
    background: #ffa537;
}

.button-dark {
    color: var(--paper);
    background: var(--ink);
}

.button-dark:hover {
    background: #332b25;
}

.button-ghost {
    border-color: var(--line);
    background: rgba(255, 253, 249, 0.5);
}

.button-ghost:hover {
    border-color: rgba(36, 31, 27, 0.28);
    background: var(--paper);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-size: 0.9rem;
    font-weight: 750;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(3px);
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--ink-soft);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.section-kicker-light,
.eyebrow-light {
    color: rgba(255, 253, 249, 0.72);
}

.home-hero {
    display: flex;
    align-items: center;
    min-height: 92svh;
    padding: calc(var(--header-h) + 90px) 0 94px;
    background: var(--cream);
}

.hero-centered {
    display: flex;
    justify-content: center;
}

.hero-copy {
    max-width: 1060px;
    text-align: center;
}

.hero-copy h1 {
    max-width: 1020px;
    margin: 0 auto 30px;
    font-size: clamp(3.7rem, 8.1vw, 7.45rem);
    font-weight: 620;
    letter-spacing: -0.068em;
    line-height: 0.94;
}

.hero-copy h1 em {
    color: var(--orange-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.hero-lead {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.8vw, 1.34rem);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.hero-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
    color: var(--muted);
    font-size: 0.82rem;
}

.hero-note span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(247, 150, 35, 0.14);
}

.capability-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.capability-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 48px);
    min-height: 76px;
    overflow: hidden;
    white-space: nowrap;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.capability-row i {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--orange);
}

.section {
    padding: 118px 0;
}

.section-paper {
    background: var(--paper);
}

.section-cream {
    background: var(--cream);
}

.section-sand {
    background: #f1e9df;
}

.section-dark {
    color: var(--paper);
    background: var(--ink);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 64px;
}

.section-heading h2,
.split-copy h2,
.page-hero h1,
.footer-cta h2,
.cta-panel h2,
.contact-aside h2 {
    margin-bottom: 0;
    font-size: clamp(2.55rem, 5.1vw, 5.25rem);
    font-weight: 610;
    letter-spacing: -0.058em;
    line-height: 0.98;
}

.section-heading > p,
.section-heading > div:last-child > p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
}

.section-dark .section-heading > p,
.section-dark .section-heading > div:last-child > p {
    color: rgba(255, 253, 249, 0.65);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 8vw;
    align-items: start;
}

.intro-label {
    padding-top: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 760;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.intro-copy p:first-child {
    margin-bottom: 30px;
    color: var(--ink);
    font-size: clamp(2.1rem, 4.1vw, 4rem);
    font-weight: 570;
    letter-spacing: -0.052em;
    line-height: 1.06;
}

.intro-copy p:not(:first-child) {
    max-width: 740px;
    color: var(--muted);
    font-size: 1.05rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.service-card {
    position: relative;
    min-height: 360px;
    padding: 36px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    overflow: hidden;
    transition: background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    background: #fff9ef;
}

.service-card::after {
    content: "";
    position: absolute;
    right: 32px;
    top: 30px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1rem;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.service-card:hover::after {
    transform: rotate(45deg);
    border-color: var(--orange);
    background: var(--orange);
}

.service-index {
    display: block;
    margin-bottom: 92px;
    color: var(--orange-dark);
    font-size: 0.77rem;
    font-weight: 820;
    letter-spacing: 0.1em;
}

.service-card h3 {
    max-width: 520px;
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 2.7vw, 2.6rem);
    font-weight: 620;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.service-card p {
    max-width: 520px;
    margin-bottom: 0;
    color: var(--muted);
}

.work-list {
    border-top: 1px solid var(--line);
}

.work-row {
    display: grid;
    grid-template-columns: 0.32fr 1.3fr 0.9fr auto;
    gap: 28px;
    align-items: center;
    min-height: 148px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.22s ease, padding-right 0.22s ease, background 0.22s ease;
}

.work-row:hover {
    padding-left: 20px;
    padding-right: 20px;
    background: rgba(247, 150, 35, 0.08);
}

.work-number {
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.work-title h3 {
    margin-bottom: 6px;
    font-size: clamp(1.6rem, 2.8vw, 2.75rem);
    font-weight: 610;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.work-title p,
.work-meta {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.work-meta {
    line-height: 1.55;
}

.work-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: transform 0.22s ease, background 0.22s ease;
}

.work-row:hover .work-arrow {
    transform: rotate(45deg);
    background: var(--orange);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
}

.process-card {
    min-height: 310px;
    padding: 30px 30px 0 0;
    border-right: 1px solid var(--line-light);
}

.process-card:not(:first-child) {
    padding-left: 30px;
}

.process-card:last-child {
    border-right: 0;
}

.process-card > span {
    display: block;
    margin-bottom: 90px;
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.process-card h3 {
    margin-bottom: 12px;
    font-size: 1.55rem;
    font-weight: 620;
    letter-spacing: -0.035em;
}

.process-card p {
    margin-bottom: 0;
    color: rgba(255, 253, 249, 0.62);
    font-size: 0.92rem;
}

.location-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 80px;
    align-items: end;
    padding: 64px;
    border-radius: var(--radius);
    background: var(--orange);
}

.location-panel h2 {
    max-width: 760px;
    margin-bottom: 0;
    font-size: clamp(2.6rem, 5vw, 5.1rem);
    font-weight: 630;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.location-panel p {
    margin: 0;
    color: rgba(36, 31, 27, 0.74);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 8vw;
}

.faq-intro h2 {
    margin-bottom: 0;
    font-size: clamp(2.7rem, 4.8vw, 4.8rem);
    font-weight: 610;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 92px;
    padding: 22px 48px 22px 0;
    cursor: pointer;
    list-style: none;
    font-size: 1.07rem;
    font-weight: 680;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "";
    position: absolute;
    right: 8px;
    font-size: 1.4rem;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 720px;
    margin: -6px 0 28px;
    padding-right: 48px;
    color: var(--muted);
}

.cta-panel {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 40px;
    align-items: center;
    padding: 72px;
    border-radius: var(--radius);
    color: var(--paper);
    background: var(--ink);
}

.cta-panel p {
    max-width: 640px;
    margin: 22px 0 0;
    color: rgba(255, 253, 249, 0.64);
}

.page-hero {
    padding: calc(var(--header-h) + 112px) 0 96px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 70px;
    align-items: end;
}

.page-hero h1 {
    max-width: 950px;
}

.page-lead {
    max-width: 540px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.page-hero-center {
    max-width: 940px;
    margin-inline: auto;
    text-align: center;
}

.page-hero-center h1 {
    margin-inline: auto;
}

.page-hero-center .page-lead {
    margin: 26px auto 0;
}

.service-detail-list {
    border-top: 1px solid var(--line);
}

.service-detail {
    display: grid;
    grid-template-columns: 0.3fr 0.92fr 1.08fr;
    gap: 48px;
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
}

.service-detail-number {
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.service-detail h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3.6vw, 3.8rem);
    font-weight: 610;
    letter-spacing: -0.052em;
    line-height: 1;
}

.service-detail-copy > p {
    margin-top: 0;
    color: var(--muted);
}

.tag-list,
.work-service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.tag-list span,
.work-service-list span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 253, 249, 0.5);
    font-size: 0.76rem;
    font-weight: 700;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--paper);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.portfolio-visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 390px;
    background: #efe4d6;
    overflow: hidden;
}

.portfolio-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-placeholder {
    position: relative;
    width: min(72%, 390px);
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(36, 31, 27, 0.18);
    border-radius: 18px;
    background: var(--cream);
    box-shadow: 0 20px 60px rgba(36, 31, 27, 0.08);
}

.portfolio-placeholder::before {
    content: "";
    position: absolute;
    inset: 18px 18px auto;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange) 0 38%, rgba(36, 31, 27, 0.12) 38% 100%);
}

.portfolio-placeholder::after {
    content: "CASE STUDY";
    position: absolute;
    left: 22px;
    bottom: 22px;
    color: var(--ink);
    font-size: clamp(1.25rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.portfolio-card-copy {
    padding: 28px 30px 32px;
}

.portfolio-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 16px;
    color: var(--orange-dark);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portfolio-card h2,
.portfolio-card h3 {
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 2.7vw, 2.45rem);
    font-weight: 620;
    letter-spacing: -0.045em;
    line-height: 1.04;
}

.portfolio-card p {
    color: var(--muted);
}

.process-page-list {
    counter-reset: steps;
}

.process-page-step {
    display: grid;
    grid-template-columns: 0.3fr 0.9fr 1.1fr;
    gap: 50px;
    padding: 72px 0;
    border-top: 1px solid var(--line);
}

.process-page-step:last-child {
    border-bottom: 1px solid var(--line);
}

.process-page-step > span {
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: 0.12em;
}

.process-page-step h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 3.8vw, 4rem);
    font-weight: 610;
    letter-spacing: -0.052em;
    line-height: 1;
}

.process-page-step p {
    margin-top: 0;
    color: var(--muted);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 8vw;
}

.about-grid h2 {
    margin-bottom: 0;
    font-size: clamp(2.45rem, 4.8vw, 4.8rem);
    font-weight: 610;
    letter-spacing: -0.055em;
    line-height: 1;
}

.about-copy p {
    color: var(--muted);
    font-size: 1.04rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.value-card {
    min-height: 290px;
    padding: 34px;
    background: var(--paper);
}

.value-card span {
    display: block;
    margin-bottom: 76px;
    color: var(--orange-dark);
    font-size: 0.76rem;
    font-weight: 820;
    letter-spacing: 0.1em;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 620;
    letter-spacing: -0.035em;
}

.value-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 7vw;
    align-items: start;
}

.contact-aside {
    position: sticky;
    top: 118px;
}

.contact-aside > p:not(.section-kicker) {
    max-width: 430px;
    color: var(--muted);
}

.contact-facts {
    margin-top: 40px;
    border-top: 1px solid var(--line);
}

.contact-fact {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.contact-fact > span {
    color: var(--orange-dark);
    font-size: 0.75rem;
    font-weight: 820;
    letter-spacing: 0.1em;
}

.contact-fact p {
    margin: 0;
    color: var(--muted);
}

.contact-fact strong {
    display: block;
    margin-bottom: 3px;
    color: var(--ink);
    font-size: 0.88rem;
}

.project-form {
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.form-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.form-heading h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: -0.035em;
}

.form-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.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: 0.8rem;
    font-weight: 750;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid rgba(36, 31, 27, 0.16);
    border-radius: 13px;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.form-grid input,
.form-grid select {
    min-height: 52px;
    padding: 0 14px;
}

.form-grid textarea {
    min-height: 180px;
    padding: 14px;
    resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--orange-dark);
    background: var(--paper);
    box-shadow: 0 0 0 4px rgba(247, 150, 35, 0.12);
}

.field-full {
    grid-column: 1 / -1;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.form-submit p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
}

.status-page {
    display: grid;
    min-height: 78svh;
    place-items: center;
    padding: calc(var(--header-h) + 80px) 24px 90px;
}

.status-card {
    max-width: 760px;
    text-align: center;
}

.status-card h1 {
    margin-bottom: 20px;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 620;
    letter-spacing: -0.062em;
    line-height: 0.96;
}

.status-card p {
    max-width: 610px;
    margin: 0 auto 28px;
    color: var(--muted);
}

.legal-copy {
    max-width: 860px;
}

.legal-copy h2 {
    margin: 48px 0 14px;
    font-size: 1.7rem;
    letter-spacing: -0.035em;
}

.legal-copy p,
.legal-copy li {
    color: var(--muted);
}

.site-footer {
    color: var(--paper);
    background: var(--ink);
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: end;
    padding: 86px 0 70px;
    border-bottom: 1px solid var(--line-light);
}

.footer-cta h2 {
    max-width: 820px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 10vw;
    padding: 68px 0;
}

.footer-brand {
    max-width: 520px;
}

.footer-logo {
    width: min(260px, 74vw);
    height: auto;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 253, 249, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.footer-links h3 {
    margin-bottom: 18px;
    color: rgba(255, 253, 249, 0.42);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    width: fit-content;
    margin-bottom: 11px;
    color: rgba(255, 253, 249, 0.8);
    font-size: 0.86rem;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 0 30px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 253, 249, 0.45);
    font-size: 0.74rem;
}

.footer-bottom p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    :root {
        --header-h: 78px;
    }

    .desktop-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto 1fr;
    }

    .header-mark {
        grid-column: 2;
    }

    .menu-toggle {
        position: relative;
        display: inline-flex;
        grid-column: 3;
        align-items: center;
        justify-content: center;
    }

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

    .process-card:nth-child(2) {
        border-right: 0;
    }

    .process-card:nth-child(3),
    .process-card:nth-child(4) {
        border-top: 1px solid var(--line-light);
    }

    .process-card:nth-child(3) {
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .container,
    .container-wide {
        width: min(100% - 36px, var(--container));
    }

    .section {
        padding: 88px 0;
    }

    .section-heading,
    .page-hero-grid,
    .intro-grid,
    .faq-grid,
    .location-panel,
    .contact-layout,
    .about-grid,
    .footer-main {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .section-heading {
        margin-bottom: 46px;
    }

    .service-detail,
    .process-page-step {
        grid-template-columns: 70px 1fr;
    }

    .service-detail-copy,
    .process-page-step > p,
    .process-page-step > div:last-child {
        grid-column: 2;
    }

    .work-row {
        grid-template-columns: 56px 1fr auto;
    }

    .work-meta {
        grid-column: 2;
    }

    .location-panel {
        padding: 44px;
    }

    .contact-aside {
        position: static;
    }

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

    .value-card {
        min-height: auto;
    }

    .value-card span {
        margin-bottom: 38px;
    }

    .footer-main {
        gap: 52px;
    }
}

@media (max-width: 700px) {
    :root {
        --radius: 22px;
    }

    .container,
    .container-wide {
        width: min(100% - 28px, var(--container));
    }

    .site-header,
    .site-header.is-scrolled,
    .site-header.menu-open {
        height: 72px;
    }

    .mobile-menu {
        inset: 72px 0 0;
    }

    .header-mark img,
    .site-header.is-scrolled .header-mark img {
        width: 46px;
    }

    .home-hero {
        min-height: 88svh;
        padding: 140px 0 78px;
    }

    .hero-copy h1 {
        font-size: clamp(3.35rem, 15vw, 5rem);
        letter-spacing: -0.064em;
    }

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

    .hero-actions .button,
    .hero-actions .button-ghost {
        width: 100%;
    }

    .hero-note {
        align-items: flex-start;
        text-align: left;
        line-height: 1.5;
    }

    .capability-row {
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .capability-row::-webkit-scrollbar {
        display: none;
    }

    .section {
        padding: 74px 0;
    }

    .section-heading h2,
    .split-copy h2,
    .page-hero h1,
    .footer-cta h2,
    .cta-panel h2,
    .contact-aside h2 {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

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

    .service-card {
        min-height: 320px;
        padding: 28px;
    }

    .service-index {
        margin-bottom: 72px;
    }

    .work-row {
        grid-template-columns: 44px 1fr auto;
        gap: 14px;
        min-height: 130px;
    }

    .work-row:hover {
        padding-left: 0;
        padding-right: 0;
        background: transparent;
    }

    .work-meta {
        display: none;
    }

    .process-grid {
        grid-template-columns: 1fr;
        border-top: 1px solid var(--line-light);
    }

    .process-card,
    .process-card:not(:first-child),
    .process-card:nth-child(3) {
        min-height: auto;
        padding: 28px 0 34px;
        border-right: 0;
        border-top: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .process-card > span {
        margin-bottom: 38px;
    }

    .location-panel {
        padding: 34px 28px;
    }

    .cta-panel {
        grid-template-columns: 1fr;
        padding: 42px 28px;
    }

    .page-hero {
        padding: 150px 0 74px;
    }

    .service-detail,
    .process-page-step {
        grid-template-columns: 44px 1fr;
        gap: 18px;
        padding: 50px 0;
    }

    .portfolio-visual {
        min-height: 280px;
    }

    .portfolio-card-copy {
        padding: 24px;
    }

    .project-form {
        padding: 26px 20px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .form-heading,
    .form-submit,
    .footer-cta,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .form-heading,
    .form-submit {
        display: flex;
    }

    .form-submit .button {
        width: 100%;
    }

    .footer-cta {
        display: flex;
        padding: 66px 0 54px;
    }

    .footer-cta .button {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        display: flex;
    }

    .footer-logo {
        width: 220px;
    }
}

/* --- Visual refinements, image sections, and Tabler-style icon support --- */
.icon {
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 auto;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.button .icon,
.header-cta .icon,
.mobile-project-link .icon,
.text-link .icon {
    transition: transform 0.2s ease;
}

.button:hover .icon,
.header-cta:hover .icon,
.mobile-project-link:hover .icon,
.text-link:hover .icon {
    transform: translate3d(2px, -1px, 0);
}

.home-hero {
    position: relative;
    isolation: isolate;
}

.hero-orbits {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-badge,
.hero-orb,
.hero-ring,
.hero-dots {
    position: absolute;
    will-change: transform;
}

.float-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid rgba(36, 31, 27, 0.08);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 253, 249, 0.76);
    box-shadow: 0 18px 40px rgba(36, 31, 27, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.78rem;
    font-weight: 760;
}

.float-badge .icon {
    color: var(--orange-dark);
}

.float-badge-one {
    top: 24%;
    left: min(8vw, 120px);
}

.float-badge-two {
    top: 24%;
    right: min(8vw, 120px);
}

.float-badge-three {
    left: 14%;
    bottom: 12%;
}

.hero-orb {
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(247, 150, 35, 0.24));
}

.orb-a {
    right: 15%;
    bottom: 16%;
    width: 110px;
    height: 110px;
}

.orb-b {
    left: 11%;
    top: 16%;
    width: 24px;
    height: 24px;
    background: var(--orange);
    box-shadow: 0 12px 28px rgba(247, 150, 35, 0.32);
}

.hero-ring {
    width: 250px;
    height: 250px;
    border: 1px solid rgba(247, 150, 35, 0.28);
    border-radius: 50%;
}

.ring-a {
    right: 10%;
    top: 17%;
}

.hero-dots {
    width: 80px;
    height: 80px;
    opacity: 0.48;
    background-image: radial-gradient(circle, rgba(36, 31, 27, 0.22) 1.6px, transparent 1.6px);
    background-size: 16px 16px;
}

.dots-a {
    right: 18%;
    bottom: 18%;
}

.menu-toggle {
    position: relative;
    overflow: hidden;
}

.menu-toggle span {
    background: none;
}

.menu-toggle .menu-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.menu-toggle .menu-icon-close {
    opacity: 0;
    transform: scale(0.8);
}

.site-header.menu-open .menu-toggle .menu-icon-open {
    opacity: 0;
    transform: scale(0.8);
}

.site-header.menu-open .menu-toggle .menu-icon-close {
    opacity: 1;
    transform: scale(1);
}

.mobile-menu-inner > a:not(.mobile-project-link) {
    justify-content: space-between;
}

.visual-split {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.visual-split-reverse > .visual-copy {
    order: 1;
}

.visual-split-reverse > .visual-media {
    order: 2;
}

.visual-copy h2,
.visual-stack-copy h2 {
    margin-bottom: 16px;
    font-size: clamp(2.3rem, 4.8vw, 4.6rem);
    font-weight: 610;
    letter-spacing: -0.055em;
    line-height: 1;
}

.visual-copy > p:last-of-type,
.visual-stack-copy > p:last-of-type {
    color: var(--muted);
}

.visual-media,
.visual-stack-main,
.visual-stack-accent,
.aside-visual {
    min-width: 0;
}

.image-shell {
    position: relative;
    padding: 18px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 253, 249, 0.2);
    pointer-events: none;
}

.image-shell img {
    width: 100%;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
}

.image-shell-orange {
    background: linear-gradient(145deg, #f9a53a, #f28a13);
}

.image-shell-paper {
    background: linear-gradient(145deg, #fff5e7, #e9ded0);
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    color: var(--ink-soft);
}

.feature-list .icon {
    margin-top: 2px;
    color: var(--orange-dark);
}

.service-card::after {
    display: none;
    content: none;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 16px;
    color: var(--ink);
    background: rgba(247, 150, 35, 0.14);
}

.service-index {
    margin-bottom: 70px;
}

.service-card-arrow {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.service-card:hover .service-card-arrow {
    transform: rotate(45deg);
    border-color: var(--orange);
    background: var(--orange);
}

.visual-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 28px 38px;
    align-items: center;
}

.visual-grid-compact {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.visual-stack-main {
    grid-row: span 2;
}

.visual-stack-copy {
    max-width: 560px;
}

.visual-stack-accent {
    max-width: 420px;
}

.work-arrow {
    background: rgba(255, 253, 249, 0.85);
}

.work-row:hover .work-arrow {
    background: var(--orange);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 14px;
    color: var(--orange-dark);
    background: rgba(247, 150, 35, 0.1);
}

.aside-visual {
    margin-bottom: 28px;
}

.contact-fact {
    grid-template-columns: 42px 1fr;
    align-items: start;
}

.contact-fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--orange-dark);
    background: rgba(247, 150, 35, 0.12);
}

@media (max-width: 1120px) {
    .float-badge-one,
    .float-badge-two {
        top: 18%;
    }

    .float-badge-three {
        left: 8%;
        bottom: 10%;
    }
}

@media (max-width: 900px) {
    .visual-split,
    .visual-grid,
    .visual-grid-compact {
        grid-template-columns: 1fr;
    }

    .visual-split-reverse > .visual-copy,
    .visual-split-reverse > .visual-media {
        order: initial;
    }

    .visual-stack-main {
        grid-row: auto;
    }

    .visual-stack-accent {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .float-badge,
    .hero-orb,
    .hero-ring,
    .hero-dots {
        display: none;
    }

    .service-card-arrow {
        right: 24px;
        top: 24px;
    }

    .image-shell {
        padding: 12px;
        border-radius: 24px;
    }

    .image-shell img {
        border-radius: 18px;
    }
}

/* --------------------------------------------------------------------------
   2026 visual refinement: real photography, true Tabler webfont icons,
   badge kickers, image-led panels, and mobile-safe controls.
   -------------------------------------------------------------------------- */

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.2rem;
    height: 1.2rem;
    flex: 0 0 1.2rem;
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
    flex-basis: 1rem;
    font-size: 1rem;
}

.button,
.header-cta,
.mobile-project-link {
    white-space: nowrap;
}

.button {
    max-width: 100%;
}

/* Section kickers now read as intentional badges instead of dot labels. */
.section-kicker,
.eyebrow {
    gap: 0;
    width: fit-content;
    margin-bottom: 24px;
    padding: 7px 11px 6px;
    border: 1px solid rgba(36, 31, 27, 0.13);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(247, 150, 35, 0.08);
    font-size: 0.69rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    line-height: 1.15;
    text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
    display: none;
    content: none;
}

.section-kicker-light,
.eyebrow-light {
    color: rgba(255, 253, 249, 0.86);
    border-color: rgba(255, 253, 249, 0.2);
    background: rgba(255, 253, 249, 0.08);
}

/* Hero decorative tokens: outer element handles scroll parallax; the inner
   token handles the subtle bobbing animation so the two transforms do not fight. */
.float-token {
    position: absolute;
    z-index: 0;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(36, 31, 27, 0.12);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(255, 253, 249, 0.76);
    box-shadow: 0 18px 44px rgba(36, 31, 27, 0.08);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    will-change: transform;
}

.float-token::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    right: -3px;
    top: -3px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 5px rgba(247, 150, 35, 0.1);
}

.float-token-inner {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    animation: token-bob 5.2s ease-in-out infinite alternate;
}

.float-token .icon {
    color: var(--orange-dark);
    font-size: 1.45rem;
}

.token-horseshoe {
    top: 25%;
    left: clamp(34px, 8vw, 130px);
    transform: rotate(-7deg);
}

.token-layout {
    top: 23%;
    right: clamp(34px, 8vw, 130px);
    transform: rotate(7deg);
}

.token-code {
    left: clamp(70px, 15vw, 245px);
    bottom: 13%;
    border-radius: 50%;
}

.token-sparkles {
    right: clamp(65px, 14vw, 230px);
    bottom: 15%;
    border-radius: 50%;
}

.token-layout .float-token-inner,
.token-sparkles .float-token-inner {
    animation-delay: -1.8s;
}

@keyframes token-bob {
    from { transform: translateY(-4px) rotate(-2deg); }
    to { transform: translateY(6px) rotate(2deg); }
}

/* Real photography is the surface; no orange frame competing with it. */
.image-shell,
.image-shell-photo {
    padding: 0;
    border: 1px solid rgba(36, 31, 27, 0.1);
    background: var(--paper);
    box-shadow: 0 24px 60px rgba(36, 31, 27, 0.08);
}

.image-shell::before {
    border-color: rgba(255, 253, 249, 0.32);
}

.image-shell img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.visual-media .image-shell img {
    aspect-ratio: 4 / 3;
}

.visual-stack-main img {
    aspect-ratio: 4 / 5;
}

.visual-stack-accent img {
    aspect-ratio: 1 / 1;
}

.image-shell-equestrian img {
    object-position: center 45%;
}

.faq-photo {
    margin-top: 34px;
}

.faq-photo img {
    aspect-ratio: 4 / 3;
    object-position: center;
}

/* Photo background panels are opt-in per section so no photograph is reused. */
.location-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--paper);
    background: var(--ink);
    box-shadow: 0 28px 70px rgba(36, 31, 27, 0.14);
}

.location-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 1px solid rgba(255, 253, 249, 0.16);
    border-radius: inherit;
}

.location-panel p {
    color: rgba(255, 253, 249, 0.8);
}

.cta-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--ink);
    box-shadow: 0 28px 72px rgba(36, 31, 27, 0.12);
}

.cta-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 1px solid rgba(255, 253, 249, 0.13);
    border-radius: inherit;
}

/* Service and process icons are actual Tabler icons with consistent touch-safe
   containers instead of text glyph arrows. */
.service-icon,
.value-icon,
.contact-fact-icon {
    border: 1px solid rgba(247, 150, 35, 0.12);
}

.service-card-arrow,
.work-arrow {
    min-width: 44px;
    min-height: 44px;
}

.process-card > span.process-label,
.step-icon-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.process-card > span.process-label {
    color: var(--orange);
}

.step-icon-label .icon {
    color: var(--orange-dark);
}

/* FAQ chevrons use Tabler instead of generated + symbols. */
.faq-list summary {
    padding-right: 0;
}

.faq-list summary::after {
    display: none;
    content: none;
}

.faq-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-soft);
    background: rgba(255, 253, 249, 0.6);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.faq-list details[open] .faq-toggle {
    transform: rotate(180deg);
    border-color: rgba(247, 150, 35, 0.4);
    background: rgba(247, 150, 35, 0.1);
}

.process-visual-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

/* Ensure external Tabler webfont does not inherit browser italic styles. */
.ti {
    font-style: normal;
}

@media (max-width: 900px) {
    .location-panel {
        background-position: center;
    }

    .cta-panel {
        background-position: 58% center;
    }

    .faq-photo {
        max-width: 520px;
    }
}

@media (max-width: 700px) {
    .button,
    .header-cta,
    .mobile-project-link {
        font-size: 0.84rem;
    }

    .hero-actions .button {
        min-width: 0;
    }

    .float-token {
        width: 40px;
        height: 40px;
        border-radius: 13px;
        opacity: 0.58;
    }

    .float-token .icon {
        font-size: 1.05rem;
    }

    .float-token::after {
        width: 6px;
        height: 6px;
        box-shadow: 0 0 0 3px rgba(247, 150, 35, 0.09);
    }

    .token-horseshoe {
        display: grid;
        top: 16%;
        left: 10px;
    }

    .token-sparkles {
        display: grid;
        right: 10px;
        bottom: 12%;
    }

    .token-layout,
    .token-code,
    .hero-ring,
    .hero-dots,
    .hero-orb {
        display: none;
    }

    .image-shell {
        border-radius: 22px;
    }

    .location-panel,
    .cta-panel {
        background-position: center;
    }

    .faq-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .faq-list summary {
        min-height: 78px;
        gap: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 390px) {
    .float-token {
        opacity: 0.35;
    }

    .button {
        padding-inline: 16px;
        font-size: 0.8rem;
    }
}

.hero-centered {
    position: relative;
    z-index: 1;
}

.menu-toggle .menu-icon {
    width: 100%;
    height: 100%;
}

.menu-toggle .menu-icon .icon {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 1.35rem;
}
.menu-toggle span.menu-icon,
.menu-toggle span.menu-icon:first-child,
.menu-toggle span.menu-icon:last-child {
    transform: none;
}

.site-header.menu-open .menu-toggle span.menu-icon-open {
    opacity: 0;
    transform: scale(0.8);
}

.site-header.menu-open .menu-toggle span.menu-icon-close {
    opacity: 1;
    transform: scale(1);
}
.visual-grid-compact .visual-stack-main img {
    aspect-ratio: 16 / 10;
}

/* v11 refinement: cleaner hero, client/meeting photography, and strict one-line CTAs. */
.home-hero .hero-orbits,
.home-hero .float-token,
.home-hero .hero-orb,
.home-hero .hero-ring,
.home-hero .hero-dots {
    display: none !important;
}

.button,
.header-cta,
.mobile-project-link {
    flex-wrap: nowrap;
    white-space: nowrap;
}

.button > span,
.header-cta > span,
.mobile-project-link > span {
    white-space: nowrap;
}

/* Photography replaces the old orange/equestrian background treatment. */
.location-panel {
    background: var(--ink);
}

.location-panel-photo {
    background:
        linear-gradient(90deg, rgba(36, 31, 27, 0.94) 0%, rgba(36, 31, 27, 0.82) 48%, rgba(36, 31, 27, 0.48) 100%),
        var(--panel-image) center / cover no-repeat;
}

.cta-panel {
    background: var(--ink);
}

.visual-grid-two .visual-stack-main,
.visual-grid-compact .visual-stack-main {
    grid-row: auto;
}

.visual-grid-two {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.visual-grid-two .visual-stack-main img,
.visual-grid-compact .visual-stack-main img {
    aspect-ratio: 4 / 3;
}

/* Keep photos natural and people-centered rather than heavily stylized. */
.image-shell-photo img {
    filter: saturate(0.94) contrast(0.98);
}

@media (max-width: 700px) {
    .button,
    .header-cta,
    .mobile-project-link {
        padding-inline: 15px;
        font-size: 0.78rem;
        letter-spacing: 0;
    }

    .hero-actions .button {
        width: auto;
        min-width: 0;
        max-width: 100%;
        align-self: center;
    }

    .hero-actions {
        align-items: center;
    }

    .location-panel-photo {
        background-position: 62% center;
    }
}

@media (max-width: 390px) {
    .button,
    .header-cta,
    .mobile-project-link {
        padding-inline: 13px;
        font-size: 0.74rem;
    }
}
