:root {
    --black: #070707;
    --ink: #111111;
    --panel: #171717;
    --panel-2: #202020;
    --line: rgba(218, 171, 88, 0.22);
    --line-soft: rgba(255, 255, 255, 0.10);
    --cream: #eee8dc;
    --muted: #c2b9ad;
    --gold: #c9943d;
    --gold-bright: #e0b35f;
    --orange: #c9562f;
    --orange-hi: #e16a3d;
    --green: #7e8a55;
    --font-display: "Anton", "Oswald", sans-serif;
    --font-condensed: "Oswald", sans-serif;
    --font-body: "Inter", sans-serif;
    --font-mono: "JetBrains Mono", monospace;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background-color: #080808;
    background:
        radial-gradient(circle at 70% 8%, rgba(201, 148, 61, 0.10), transparent 26rem),
        radial-gradient(circle at 8% 34%, rgba(201, 86, 47, 0.08), transparent 22rem),
        linear-gradient(180deg, #0b0b0b 0%, #080808 48%, #0c0c0c 100%);
    color: var(--cream);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.app-noise::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.17;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    background-size: 96px 96px, 96px 96px, 180px 180px;
    mix-blend-mode: screen;
}

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

a {
    color: inherit;
}

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

.primary-nav a:focus-visible,
.site-footer a:focus-visible,
.style-card:focus-visible {
    border-radius: 4px;
}

.brand-header {
    position: sticky;
    top: 0;
    z-index: 80;
    min-height: 74px;
    display: grid;
    grid-template-columns: 218px 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0 3vw;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.88);
    backdrop-filter: blur(18px);
}

.brand-lockup img {
    width: 205px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.48));
}

.primary-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.65rem, 1.35vw, 1.3rem);
    min-width: 0;
    width: 100%;
}

.primary-nav a {
    color: var(--cream);
    font-family: var(--font-condensed);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    transition: color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--gold-bright);
}

.primary-nav a.active {
    border-bottom: 1px solid var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 44px;
    padding: 0.86rem 1.35rem;
    border-radius: 4px;
    font-family: var(--font-condensed);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn svg {
    width: 17px;
    height: 17px;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff9ef;
    background: linear-gradient(180deg, var(--orange-hi), var(--orange));
    box-shadow: 0 14px 28px rgba(201, 86, 47, 0.25);
}

.btn-ghost {
    color: var(--gold-bright);
    background: rgba(0, 0, 0, 0.22);
    border-color: var(--line);
}

.btn.compact {
    min-height: 38px;
    padding: 0.65rem 1rem;
    font-size: 0.78rem;
}

.hero-section {
    position: relative;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(390px, 1.08fr);
    align-items: center;
    gap: 2rem;
    padding: 3.5rem 5vw 4rem;
    border-bottom: 1px solid rgba(218, 171, 88, 0.16);
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 510px;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--gold);
    font-family: var(--font-condensed);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-copy h1,
.block-title,
.section-heading h2,
.cta-band h2 {
    margin: 0;
    color: var(--cream);
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 0.98;
    letter-spacing: 0.02em;
}

.hero-copy h1 {
    max-width: 9.4ch;
    font-size: clamp(4rem, 5.7vw, 6.35rem);
}

.hero-line {
    display: block;
}

.hero-copy h1 .hero-gold {
    color: var(--gold-bright);
    text-shadow: 0 2px 0 #7d5520, 0 0 20px rgba(224, 179, 95, 0.16);
}

.hero-lede {
    max-width: 420px;
    margin: 1.05rem 0 1.65rem;
    color: #c2bbb0;
    font-size: 1.04rem;
}

.hero-price-note {
    max-width: 400px;
    margin: 1rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.hero-price-note strong {
    color: var(--gold-bright);
    font-family: var(--font-condensed);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.hero-visual {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-visual::before {
    inset: 8% 3% 5%;
    border: 1px solid rgba(218, 171, 88, 0.12);
    background:
        radial-gradient(circle at 50% 85%, rgba(0, 0, 0, 0.62), transparent 34%),
        linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.10) 16%, rgba(0, 0, 0, 0.12) 84%, transparent 100%);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.35);
}

.hero-visual::after {
    left: 14%;
    right: 8%;
    bottom: 10%;
    height: 44px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.72), transparent 70%);
    filter: blur(10px);
}

.hero-visual > img {
    position: relative;
    z-index: 3;
    width: min(100%, 620px);
    filter: drop-shadow(0 32px 40px rgba(0, 0, 0, 0.65));
}

.hero-mark {
    position: absolute;
    right: 1%;
    top: 0;
    z-index: 2;
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 148, 61, 0.28);
    font-family: Georgia, serif;
    font-size: clamp(16rem, 30vw, 30rem);
    line-height: 0.8;
    opacity: 0.52;
    pointer-events: none;
}

.trust-strip {
    display: grid;
    grid-template-columns: 1.4fr repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1.4rem 5vw;
    border-bottom: 1px solid var(--line-soft);
    color: #817c75;
    background: rgba(12, 12, 12, 0.65);
}

.trust-strip span,
.trust-strip strong {
    font-family: var(--font-condensed);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.trust-strip span {
    color: var(--gold);
}

.presence-panel,
.section-block,
.cta-band {
    width: min(100% - 10vw, 1330px);
    margin: 2rem auto 0;
}

.presence-panel {
    display: grid;
    grid-template-columns: 0.95fr 1.2fr 220px;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    box-shadow: var(--shadow);
}

.presence-panel h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.presence-panel h2 span {
    color: var(--orange-hi);
}

.presence-panel p {
    max-width: 470px;
    color: #c4beb5;
}

.seal-card {
    min-height: 130px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(218, 171, 88, 0.18);
    opacity: 0.42;
}

.seal-card img {
    width: 96px;
}

.section-block {
    padding: 0.85rem 0 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.section-heading h2,
.block-title {
    font-size: clamp(2.1rem, 3.8vw, 3.25rem);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
}

.feature-card,
.style-card,
.promise-row article,
.cta-band {
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(19, 19, 19, 0.94);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.feature-card {
    padding: 1.55rem;
    min-height: 210px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.feature-card svg,
.promise-row svg {
    width: 40px;
    height: 40px;
    color: var(--gold);
    stroke-width: 1.6;
}

.feature-card h3,
.style-card h3,
.promise-row h3 {
    margin: 1.1rem 0 0.55rem;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: 1.12rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.feature-card p,
.promise-row p {
    margin: 0 0 1.6rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.feature-card a {
    color: var(--gold-bright);
    font-family: var(--font-condensed);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.style-card {
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.style-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 0 0 1px rgba(201, 148, 61, 0.16), 0 18px 34px rgba(0, 0, 0, 0.38);
}

.style-card img {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    object-fit: cover;
    background: #0b0b0b;
    filter: saturate(0.92) contrast(1.04);
}

.style-card div {
    position: relative;
    padding: 1rem 1.2rem 1.15rem;
}

.style-card h3 {
    margin: 0;
}

.style-card p {
    margin: 0.2rem 2rem 0 0;
    color: var(--gold);
    font-size: 0.84rem;
}

.style-card small {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.style-card span {
    position: absolute;
    right: 1.2rem;
    bottom: 1rem;
    color: var(--gold);
}

.pricing-anchor {
    padding-top: 0.9rem;
}

.pricing-note {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    text-align: right;
}

.price-table {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(18, 18, 18, 0.96);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.42);
}

.price-row {
    display: grid;
    grid-template-columns: 1.15fr repeat(4, 1fr);
}

.price-row > div {
    min-height: 66px;
    display: grid;
    place-items: center;
    padding: 0.75rem 0.7rem;
    border-right: 1px solid rgba(218, 171, 88, 0.16);
}

.price-row > div:last-child {
    border-right: 0;
}

.price-head {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: clamp(1.25rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.price-head > div:first-child,
.price-body > div:first-child {
    font-weight: 800;
}

.price-body {
    background: rgba(0, 0, 0, 0.18);
    color: var(--gold-bright);
    font-size: clamp(1.2rem, 2.6vw, 1.85rem);
}

.price-body > div {
    border-top: 1px solid rgba(218, 171, 88, 0.18);
    border-right-color: rgba(218, 171, 88, 0.16);
    font-family: var(--font-mono);
}

.price-body > div:first-child {
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: clamp(1.25rem, 2.8vw, 2rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.pricing-foot {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 0.85rem auto 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.pricing-foot a {
    color: var(--gold-bright);
    font-family: var(--font-condensed);
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.promise-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.85);
}

.promise-row article {
    border: 0;
    border-right: 1px solid rgba(218, 171, 88, 0.18);
    border-radius: 0;
    padding: 1.45rem;
    box-shadow: none;
}

.promise-row article:last-child {
    border-right: 0;
}

.promise-row h3 {
    margin-top: 0.8rem;
    font-size: 1.06rem;
}

.promise-row p {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.craft-grid article {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: #090909;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
}

.craft-grid img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.05) brightness(0.78);
}

.craft-grid article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.82) 100%);
}

.craft-grid div {
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1rem;
    z-index: 2;
}

.craft-grid span {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
}

.craft-grid h3 {
    margin: 0.25rem 0;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: 1.12rem;
    line-height: 1.1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.craft-grid p {
    margin: 0;
    color: #c4beb5;
    font-size: 0.86rem;
}

.contact-hero {
    position: relative;
    min-height: 420px;
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1.18fr);
    align-items: center;
    gap: 2rem;
    padding: 2.55rem 5vw 1.85rem;
    border-bottom: 1px solid rgba(218, 171, 88, 0.16);
    overflow: hidden;
}

.contact-hero-copy {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    max-width: 12.6ch;
    margin: 0;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(3.75rem, 5.55vw, 5.75rem);
    line-height: 0.98;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.contact-hero h1 span {
    display: block;
}

.contact-hero h1 span:last-child {
    color: var(--gold-bright);
    text-shadow: 0 2px 0 #7d5520, 0 0 20px rgba(224, 179, 95, 0.16);
    white-space: nowrap;
}

.contact-hero p:not(.eyebrow) {
    max-width: 430px;
    margin: 1.2rem 0 0;
    color: #c2bbb0;
    font-size: 1rem;
}

.contact-hero-visual {
    position: relative;
    min-height: 335px;
    display: grid;
    place-items: end center;
    isolation: isolate;
}

.contact-hero-visual::before,
.contact-hero-visual::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.contact-hero-visual::before {
    inset: 8% 0 0;
    z-index: 1;
    border: 1px solid rgba(218, 171, 88, 0.12);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at 72% 36%, rgba(201, 148, 61, 0.08), transparent 30%);
}

.contact-hero-visual::after {
    left: 14%;
    right: 10%;
    bottom: 4%;
    z-index: 2;
    height: 50px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.78), transparent 72%);
    filter: blur(12px);
}

.contact-hero-visual img {
    position: relative;
    z-index: 3;
    width: min(100%, 620px);
    border: 1px solid rgba(218, 171, 88, 0.10);
    border-radius: 3px;
    background: #0b0b0b;
    filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.72));
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, #000 18%, #000 88%, rgba(0, 0, 0, 0.80) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, #000 18%, #000 88%, rgba(0, 0, 0, 0.80) 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.85fr);
    gap: 1.4rem;
}

.contact-page .section-block {
    margin-top: 1.45rem;
    padding-top: 0;
}

.contact-panel,
.contact-cards article,
.next-step-grid article {
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(19, 19, 19, 0.94);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.contact-panel {
    padding: 1.35rem;
}

.contact-panel h2 {
    margin: 0 0 1rem;
    color: var(--cream);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.65vw, 2.45rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.form-grid label {
    display: grid;
    gap: 0.35rem;
}

.form-grid .span-2 {
    grid-column: 1 / -1;
}

.form-grid span {
    color: transparent;
    height: 0;
    overflow: hidden;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--cream);
    padding: 0.82rem 0.95rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    outline: none;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 148, 61, 0.12);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder,
.form-grid select:invalid {
    color: #817a72;
}

.contact-form input,
.contact-form select {
    min-height: 46px;
}

.contact-form textarea {
    min-height: 125px;
    resize: vertical;
}

.message-field {
    position: relative;
}

.message-field small {
    position: absolute;
    right: 0.9rem;
    bottom: 0.75rem;
    color: #77716a;
    font-size: 0.72rem;
}

.contact-form .btn {
    margin-top: 1rem;
}

.contact-method {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0.75rem;
    padding: 0.78rem 0;
    border-bottom: 1px solid rgba(218, 171, 88, 0.16);
}

.contact-method svg,
.contact-cards svg,
.next-step-grid svg {
    color: var(--gold);
    stroke-width: 1.7;
}

.contact-method svg {
    width: 29px;
    height: 29px;
}

.contact-method span,
.contact-cards a,
.contact-cards button {
    display: block;
    color: var(--gold);
    font-family: var(--font-condensed);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-method a,
.contact-method p {
    margin: 0.15rem 0 0;
    color: var(--cream);
    text-decoration: none;
}

.contact-hq .btn {
    margin-top: 1rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-cards article {
    padding: 1.15rem;
}

.contact-cards svg {
    width: 34px;
    height: 34px;
}

.contact-cards h3,
.next-step-grid h3 {
    margin: 0.9rem 0 0.45rem;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: 1.12rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.contact-cards p,
.next-step-grid p {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.contact-cards a,
.contact-cards button {
    text-decoration: none;
}

.contact-cards button {
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.contact-cards button:hover {
    color: var(--gold-bright);
}

.compact-heading {
    border-bottom: 1px solid rgba(218, 171, 88, 0.20);
    padding-bottom: 0.6rem;
}

.next-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.next-step-grid article {
    position: relative;
    padding: 1.15rem 1.15rem 1.15rem 4.8rem;
    min-height: 154px;
}

.next-step-grid span {
    position: absolute;
    top: 1.15rem;
    left: 1.15rem;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold-bright);
    font-family: var(--font-condensed);
}

.next-step-grid svg {
    width: 46px;
    height: 46px;
}

.next-step-grid h3 {
    margin-top: 0.8rem;
}

.contact-promise {
    width: min(100% - 10vw, 1330px);
    margin: 1.45rem auto 0;
}

.contact-page .cta-band {
    margin-top: 1.45rem;
    margin-bottom: 1.45rem;
}

.cta-band {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.4rem 2rem;
}

.cta-band img {
    width: 82px;
    opacity: 0.34;
    filter: grayscale(1);
}

.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.cta-band p {
    margin: 0.2rem 0 0;
    color: var(--muted);
}

.site-footer {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 2rem;
    padding: 2.5rem 5vw 1.2rem;
    border-top: 1px solid var(--line-soft);
    background: rgba(7, 7, 7, 0.92);
}

.footer-brand img {
    width: 220px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.site-footer h4 {
    margin: 0 0 0.9rem;
    color: var(--gold);
    font-family: var(--font-condensed);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer a,
.site-footer span {
    display: block;
    margin-bottom: 0.42rem;
    color: var(--muted);
    font-size: 0.9rem;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--gold-bright);
}

.social-row {
    display: flex;
    gap: 0.75rem;
}

.social-row a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-soft);
    border-radius: 50%;
}

.social-row svg {
    width: 16px;
    height: 16px;
}

.legal-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 860px) {
    .brand-header {
        grid-template-columns: 1fr;
        height: auto;
        padding: 0.85rem 1rem 1rem;
    }

    .primary-nav {
        display: grid;
        grid-template-columns: repeat(3, max-content);
        justify-content: center;
        gap: 0.55rem 0.95rem;
    }

    .primary-nav a {
        font-size: 0.68rem;
    }

    .brand-header > .btn {
        width: 100%;
        min-height: 42px;
    }

    .hero-section,
    .presence-panel,
    .cta-band,
    .contact-hero {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .contact-hero {
        min-height: 0;
        gap: 1.2rem;
    }

    .hero-visual,
    .contact-hero-visual {
        min-height: 270px;
    }

    .service-grid,
    .promise-row,
    .craft-grid,
    .contact-layout,
    .contact-cards,
    .next-step-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promise-row article:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 760px) {
    .brand-header {
        grid-template-columns: 1fr;
    }

    .brand-lockup img {
        width: min(100%, 260px);
        margin: 0 auto;
    }

    .hero-section,
    .contact-hero {
        padding: 2rem 1rem 2.4rem;
        overflow: hidden;
    }

    .hero-copy,
    .hero-copy h1,
    .hero-copy p,
    .contact-hero-copy,
    .contact-hero h1,
    .contact-hero p {
        min-width: 0;
        max-width: calc(100vw - 2rem);
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 10.4vw, 3.05rem);
        overflow-wrap: anywhere;
    }

    .contact-hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 10.4vw, 3.05rem);
    }

    .hero-lede,
    .hero-price-note {
        width: min(100%, 330px);
        max-width: 330px;
        font-size: 0.96rem;
    }

    .contact-hero p:not(.eyebrow) {
        width: min(100%, 330px);
        max-width: 330px;
        font-size: 0.96rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-strip,
    .style-grid,
    .service-grid,
    .promise-row,
    .site-footer,
    .craft-grid,
    .contact-layout,
    .contact-cards,
    .next-step-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        gap: 0.45rem;
    }

    .presence-panel,
    .cta-band,
    .contact-promise {
        width: min(100% - 2rem, 1330px);
        padding: 1.2rem;
    }

    .presence-panel {
        gap: 1rem;
    }

    .section-block {
        width: min(100% - 2rem, 1330px);
    }

    .contact-panel,
    .contact-cards article,
    .next-step-grid article {
        padding: 1.15rem;
    }

    .form-grid .span-2 {
        grid-column: auto;
    }

    .next-step-grid article {
        padding-left: 4.4rem;
    }

    .contact-hero-visual,
    .contact-hero-visual img {
        min-height: 250px;
    }

    .section-heading {
        display: block;
    }

    .pricing-note {
        margin-top: 0.8rem;
        text-align: left;
    }

    .price-table {
        border-radius: 12px;
    }

    .price-row {
        grid-template-columns: 0.86fr repeat(4, minmax(48px, 1fr));
    }

    .price-row > div {
        min-height: 52px;
        padding: 0.6rem 0.35rem;
    }

    .price-head,
    .price-body {
        font-size: 0.86rem;
    }

    .price-body > div:first-child {
        font-size: 0.92rem;
    }

    .craft-grid article,
    .craft-grid img {
        min-height: 260px;
    }

    .pricing-foot {
        display: block;
    }

    .pricing-foot a {
        display: inline-block;
        margin-top: 0.45rem;
    }

    .section-heading .btn {
        margin-top: 1rem;
    }

    .promise-row article,
    .promise-row article:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(218, 171, 88, 0.18);
    }

    .legal-row {
        display: block;
    }
}
