:root {
    /* Liechty logo palette */
    --brand: #551D2F;
    --brand-deep: #441826;
    --brand-dark: #2E1019;
    --brand-soft: #8B5E6D;
    --brand-soft-light: rgba(139, 94, 109, 0.45);
    --brand-muted: rgba(85, 29, 47, 0.1);
    --text-muted: #6B4A55;

    --wine: var(--brand);
    --wine-deep: var(--brand-deep);
    --wine-dark: var(--brand-dark);
    --gold: var(--brand-soft);
    --gold-soft: var(--brand-soft-light);
    --black: var(--brand-dark);
    --matte: var(--brand);
    --cream: #FFFFFF;
    --cream-dim: rgba(85, 29, 47, 0.62);
    --ink: var(--brand);
    --paper: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

::selection {
    background: var(--wine);
    color: var(--cream);
}

/* ============ NAVBAR ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 48px;
    transition: all .45s cubic-bezier(.2, .7, .2, 1);
    background: rgba(255, 255, 255, 0);
}

.nav.scrolled {
    padding: 12px 36px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(85, 29, 47, 0.12);
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    transition: opacity .45s ease;
}

.nav-logo:hover {
    opacity: 0.92;
}

.nav-logo-img {
    display: block;
    height: 96px;
    width: auto;
    max-width: min(240px, 58vw);
    object-fit: contain;
    object-position: left center;
    transition: height .45s ease, max-width .45s ease;
}

.nav.scrolled .nav-logo-img {
    height: 44px;
    max-width: min(200px, 52vw);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    transition: gap .45s ease;
}

.nav-links a.lnk {
    color: var(--brand);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
    position: relative;
    padding: 6px 2px;
    transition: color .3s ease;
}

.nav-links a.lnk::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .3s ease;
}

.nav-links a.lnk:hover {
    color: var(--gold);
}

.nav-links a.lnk:hover::after {
    width: 100%;
}

.nav .dot {
    display: none;
    color: var(--gold-soft);
    font-size: 9px;
}

.nav.scrolled .nav-links {
    gap: 18px;
}

.nav.scrolled .nav .dot,
.nav.scrolled .dot {
    display: inline;
}

.nav.scrolled .nav-links a.lnk {
    font-size: 12px;
}

.nav.scrolled .nav-links a.lnk::after {
    display: none;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--wine);
    color: var(--cream);
    padding: 11px 22px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    border: 1px solid rgba(139, 94, 109, 0.45);
    transition: all .35s ease;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--brand-soft);
    color: var(--cream);
    transform: translateY(-1px);
}

.nav.scrolled .nav-cta {
    padding: 8px 16px;
    font-size: 11px;
}

.burger {
    display: none;
}

/* ============ HERO — ARCHITECTURAL BLADE PANELS ============ */
.hero {
    height: 100vh;
    background: var(--paper);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 85% 100%, 0 100%);
}

.blade {
    position: relative;
    overflow: hidden;
    flex: none;
    transition: flex-basis .55s cubic-bezier(.4, 0, .2, 1), width .55s cubic-bezier(.4, 0, .2, 1),
        transform .8s cubic-bezier(.4, 0, .2, 1), opacity .8s cubic-bezier(.4, 0, .2, 1);
    border-right: 1px solid var(--brand-muted);
    opacity: 0;
    will-change: transform, opacity;
}

.blade:last-child {
    border-right: none;
}

.blade.in {
    opacity: 1;
    transform: translateX(0) !important;
}

/* widths */
.b1 {
    width: 48px;
    background: var(--brand-soft);
    transform: translateX(-80px);
}

.b2 {
    width: 320px;
    background: var(--paper);
    transform: translateX(80px);
}

.b3 {
    width: 24px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 94, 109, 0.2) 50%, transparent 100%);
    transform: translateX(-80px);
}

.b4 {
    width: 400px;
    flex: 1 1 400px;
    min-width: 360px;
    background: var(--paper);
    transform: translateX(80px);
}

.b5 {
    width: 24px;
    background: linear-gradient(to bottom, transparent 0%, rgba(139, 94, 109, 0.2) 50%, transparent 100%);
    transform: translateX(-80px);
}

.b6 {
    width: 300px;
    flex: 0 0 300px;
    transform: translateX(80px);
    background: var(--paper);
    border-left: none;
    border-right: none;
}

/* Hero image — layered architectural frame */
.hero-visual {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 28px 56px 20px;
    overflow: visible;
}

.hero-visual__ghost {
    position: absolute;
    top: 12%;
    right: 8%;
    width: 78%;
    height: 72%;
    border: 1px solid rgba(139, 94, 109, 0.35);
    transform: rotate(-4deg) translate(14px, 18px);
    pointer-events: none;
    z-index: 0;
}

.hero-visual__ghost::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(85, 29, 47, 0.12);
}

.hero-visual__matte {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 248px;
    height: min(78vh, 620px);
    padding: 10px;
    background: linear-gradient(145deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow:
        0 28px 60px rgba(46, 16, 25, 0.22),
        0 0 0 1px rgba(139, 94, 109, 0.4);
    transform: rotate(2deg);
    transition: transform .65s cubic-bezier(.4, 0, .2, 1), box-shadow .65s ease;
}

.hero:hover .hero-visual__matte {
    transform: rotate(0deg) translateY(-6px);
    box-shadow:
        0 36px 72px rgba(46, 16, 25, 0.28),
        0 0 0 1px rgba(139, 94, 109, 0.55);
}

.hero-visual__clip {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
}

.hero-visual__clip img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    filter: contrast(1.08) saturate(0.88);
    transform: scale(1.06);
    transition: transform 1.1s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.hero:hover .hero-visual__clip img {
    transform: scale(1.12);
    filter: contrast(1.1) saturate(0.95);
}

.hero-visual__matte::after {
    content: "";
    position: absolute;
    inset: 10px;
    background: linear-gradient(165deg,
            rgba(255, 255, 255, 0.12) 0%,
            transparent 38%,
            rgba(46, 16, 25, 0.45) 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-visual__corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: rgba(255, 255, 255, 0.85);
    border-style: solid;
    z-index: 4;
    pointer-events: none;
}

.hero-visual__corner--tl {
    top: 4px;
    left: 4px;
    border-width: 2px 0 0 2px;
}

.hero-visual__corner--tr {
    top: 4px;
    right: 4px;
    border-width: 2px 2px 0 0;
}

.hero-visual__corner--bl {
    bottom: 4px;
    left: 4px;
    border-width: 0 0 2px 2px;
}

.hero-visual__corner--br {
    bottom: 4px;
    right: 4px;
    border-width: 0 2px 2px 0;
}

.hero-visual__scan {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    top: 0;
    z-index: 5;
    opacity: 0.7;
    animation: heroScan 5.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroScan {

    0%,
    100% {
        top: 12%;
        opacity: 0;
    }

    8% {
        opacity: 0.65;
    }

    50% {
        top: 88%;
        opacity: 0.45;
    }

    92% {
        opacity: 0;
    }
}

.hero-visual__ribbon {
    position: absolute;
    top: 14%;
    left: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--paper);
    border: 1px solid rgba(85, 29, 47, 0.2);
    padding: 8px 14px 8px 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--brand);
    box-shadow: 8px 12px 28px rgba(46, 16, 25, 0.12);
    transform: translateX(-6px);
}

.hero-visual__ribbon-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3d9b5c;
    box-shadow: 0 0 0 3px rgba(61, 155, 92, 0.25);
    animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.75;
        transform: scale(0.92);
    }
}

.hero-visual__badge {
    position: absolute;
    bottom: 18%;
    right: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--brand);
    color: var(--cream);
    padding: 14px 18px 14px 16px;
    border: 1px solid rgba(139, 94, 109, 0.5);
    box-shadow: 12px 16px 40px rgba(46, 16, 25, 0.25);
    transform: translateX(8px);
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.hero:hover .hero-visual__badge {
    transform: translateX(4px) translateY(-4px);
}

.hero-visual__badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    line-height: 1;
    letter-spacing: .02em;
    color: var(--brand-soft);
}

.hero-visual__badge-lbl {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.55;
    opacity: 0.92;
}

.hero-visual__vlabel {
    position: absolute;
    bottom: 12%;
    left: 6px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: .38em;
    color: rgba(85, 29, 47, 0.35);
    z-index: 1;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {

    .hero-visual__scan,
    .hero-visual__ribbon-dot {
        animation: none;
    }

    .hero-visual__clip img,
    .hero-visual__matte,
    .hero-visual__badge {
        transition: none;
    }
}

.b7 {
    width: 48px;
    background: var(--brand);
    transform: translateX(80px);
}

/* blade 4 hover — louver expand */
.hero:hover .b4 {
    width: 460px;
}

/* blade 1 — vertical phone */
.b1 .vphone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    color: var(--cream);
    letter-spacing: .25em;
    white-space: nowrap;
}

/* blade 2 — content */
.b2-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.b2-content .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 9px;
    color: var(--brand-soft);
    letter-spacing: .45em;
}

.b2-content .grule {
    height: 1px;
    width: 48px;
    background: var(--brand);
    box-shadow: none;
    margin: 20px 0;
}

.b2-content .sub {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 32px);
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
}

.b2-content .btn-primary {
    background: var(--brand);
    color: var(--cream);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .2em;
    padding: 14px 28px;
    border-radius: 2px;
    border: none;
    width: 100%;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all .3s ease;
    display: block;
    text-align: center;
}

.b2-content .btn-primary:hover {
    background: var(--brand-deep);
    transform: translateY(-1px);
}

.b2-content .btn-secondary {
    background: transparent;
    border: 1px solid rgba(85, 29, 47, 0.35);
    color: var(--brand);
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .2em;
    padding: 14px 28px;
    border-radius: 2px;
    width: 100%;
    cursor: pointer;
    transition: all .3s ease;
    display: block;
    text-align: center;
}

.b2-content .btn-secondary:hover {
    border-color: var(--brand-soft);
    color: var(--brand-soft);
    background: rgba(139, 94, 109, 0.08);
}

/* blade 4 — headline */
.b4-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 44px;
}

.b4 .ghost {
    position: absolute;
    bottom: -8%;
    left: -5%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30vw;
    line-height: 1;
    color: rgba(85, 29, 47, 0.04);
    pointer-events: none;
    z-index: 0;
}

.b4 .headline {
    position: relative;
    z-index: 2;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 12vw, 120px);
    color: var(--brand);
    line-height: .82;
    letter-spacing: .02em;
}

.b4 .headline .accent,
.b4 .headline .gold {
    color: var(--brand-soft);
    display: block;
}

.b4 .subline {
    position: relative;
    z-index: 2;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    color: var(--brand-soft);
    letter-spacing: .35em;
    margin-top: 22px;
}

.b4 .pills {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.b4 .pill {
    background: rgba(139, 94, 109, 0.08);
    border: 1px solid rgba(85, 29, 47, 0.15);
    border-radius: 50px;
    padding: 6px 16px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--brand);
    letter-spacing: .12em;
}

/* blade 7 — vertical address */
.b7 .vaddr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    writing-mode: vertical-rl;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: .18em;
    white-space: nowrap;
}

/* floating overlays */
.hero-logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 40px;
}

.hero-logo svg {
    width: 28px;
    height: 28px;
    flex: none;
}

.hero-logo .nm {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--brand);
    letter-spacing: .08em;
}

.hero-bottombar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10;
    background: linear-gradient(to right, transparent 0%, var(--brand-soft) 30%, var(--brand-soft) 70%, transparent 100%);
    box-shadow: none;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 56px;
    z-index: 10;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 400;
    font-size: 9px;
    color: var(--brand-soft);
    letter-spacing: .3em;
}

/* ============ WHY CHOOSE US ============ */
.why {
    background: var(--paper);
    padding: 120px 48px;
    position: relative;
}

.section-head {
    max-width: 1320px;
    margin: 0 auto 64px;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--wine);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: "";
    width: 46px;
    height: 1px;
    background: var(--wine);
}

.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.02;
    color: var(--ink);
    max-width: 780px;
}

.section-head h2 em {
    color: var(--wine);
    font-style: italic;
}

.why-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    background: var(--brand-muted);
    border: 1px solid rgba(85, 29, 47, 0.12);
}

.why-card {
    background: var(--paper);
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    transition: background .4s ease;
}

.why-card.span6 {
    grid-column: span 6;
}

.why-card.span4 {
    grid-column: span 4;
}

.why-card.span12 {
    grid-column: span 12;
}

.why-card .num {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .2em;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.why-card .ic {
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
    color: var(--wine);
    transition: color .4s ease;
}

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--ink);
    transition: color .4s ease;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    transition: color .4s ease;
}

.why-card:hover {
    background: var(--wine);
}

.why-card:hover .ic,
.why-card:hover h3 {
    color: var(--gold);
}

.why-card:hover p {
    color: rgba(245, 240, 232, 0.85);
}

.why-card:hover .num {
    color: var(--cream);
}

.why-card.span12 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-card.span12 .big-stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 9vw, 120px);
    color: var(--wine);
    line-height: .9;
    transition: color .4s ease;
}

.why-card.span12:hover .big-stat {
    color: var(--gold);
}

/* ============ SERVICES — EDITORIAL SPREAD ============ */
.editorial {
    background: var(--cream);
    color: var(--ink);
    padding: 90px 0 100px;
    position: relative;
}

.ed-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.ed-masthead {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 3px solid var(--ink);
    padding-bottom: 14px;
    margin-bottom: 6px;
}

.ed-masthead .ttl {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 600;
    letter-spacing: -.01em;
}

.ed-masthead .issue {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-align: right;
    line-height: 1.6;
}

.ed-subrule {
    display: flex;
    justify-content: space-between;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--wine);
    border-bottom: 1px solid var(--ink);
    padding: 8px 0 14px;
    margin-bottom: 48px;
}

/* hero feature service */
.ed-feature {
    margin-bottom: 18px;
}

.ed-feature .kicker {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 8px;
}

.ed-feature .display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 12vw, 140px);
    line-height: .82;
    letter-spacing: .01em;
    color: var(--ink);
}

.ed-feature .display span {
    color: var(--wine);
}

.ed-feature-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
    margin-top: 26px;
    border-top: 1px solid var(--ink);
    padding-top: 24px;
}

.ed-feature-body .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 22px;
}

.ed-feature-fig {
    position: relative;
    margin: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid rgba(85, 29, 47, 0.14);
}

.ed-feature-fig::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(139, 94, 109, 0.35);
    pointer-events: none;
}

.ed-feature-fig img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.04);
}

.ed-feature-cap {
    display: block;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(85, 29, 47, 0.1);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-align: center;
    color: var(--brand-soft);
}

.ed-feature-body .col p {
    font-size: 13.5px;
    line-height: 1.72;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 12px;
    text-align: justify;
}

.ed-feature-body .col .smallcap {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--wine);
    display: block;
    margin-bottom: 8px;
}

.ed-rule {
    height: 1px;
    background: var(--ink);
    margin: 54px 0 44px;
}

/* multi-column secondary services */
.ed-columns {
    column-count: 3;
    column-gap: 42px;
    column-rule: 1px solid rgba(85, 29, 47, 0.15);
}

.ed-item {
    break-inside: avoid;
    margin-bottom: 36px;
}

.ed-item .n {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .2em;
    color: var(--wine);
}

.ed-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.1;
    margin: 6px 0 10px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 8px;
}

.ed-item p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
    text-align: justify;
}

.ed-pullquote {
    margin: 54px auto;
    max-width: 880px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.25;
    color: var(--wine);
}

.ed-pullquote::before,
.ed-pullquote::after {
    content: "———";
    display: block;
    color: var(--ink);
    font-style: normal;
    font-size: 14px;
    letter-spacing: .4em;
    margin: 18px 0;
}

/* ============ SCROLL-COUNT SERVICES ============ */
.count-section {
    position: relative;
    background: var(--paper);
    color: var(--brand);
    padding: 140px 24px 160px;
    overflow: hidden;
}

.count-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--wine), var(--gold));
    z-index: 5;
    transition: width .15s linear;
}

.count-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 90px;
}

.count-head .eyebrow {
    color: var(--gold);
    justify-content: center;
}

.count-head .eyebrow::before {
    background: var(--gold);
}

.count-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 500;
    color: var(--brand);
}

.count-head h2 em {
    color: var(--gold);
    font-style: italic;
}

.count-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.count-item {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}

.count-item.in {
    opacity: 1;
    transform: none;
}

.count-item .bignum {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(120px, 22vw, 240px);
    line-height: .8;
    background: linear-gradient(180deg, var(--brand), rgba(139, 94, 109, 0.2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.count-item .cname {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 600;
    color: var(--brand);
    margin: 6px 0 18px;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity .7s ease .25s, transform .7s ease .25s;
}

.count-item.in .cname {
    opacity: 1;
    transform: none;
}

.count-item .cdesc {
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--cream-dim);
    font-weight: 300;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease .45s, transform .7s ease .45s;
}

.count-item.in .cdesc {
    opacity: 1;
    transform: none;
}

.count-item .cline {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 22px auto 0;
}

/* ============ PREMIUM SERVICE BAND ============ */
.premium {
    position: relative;
    background: linear-gradient(135deg, var(--wine-dark), var(--wine) 55%, var(--wine-deep));
    color: var(--cream);
    padding: 130px 48px;
    overflow: hidden;
}

.premium .glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 94, 109, 0.2), transparent 70%);
    top: -200px;
    right: -120px;
}

.premium-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.premium .eyebrow {
    color: var(--gold);
}

.premium .eyebrow::before {
    background: var(--gold);
}

.premium h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 22px;
}

.premium h2 em {
    color: var(--gold);
    font-style: italic;
}

.premium p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.82);
    font-weight: 300;
    margin-bottom: 18px;
}

.premium-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 36px;
}

.premium-feats .pf {
    border-left: 2px solid var(--gold);
    padding-left: 16px;
}

.premium-feats .pf .ic {
    width: 26px;
    height: 26px;
    color: var(--gold);
    margin-bottom: 10px;
}

.premium-feats .pf h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.premium-feats .pf p {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.premium-badge {
    justify-self: center;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(139, 94, 109, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--cream);
    padding: 28px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.premium-badge::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(139, 94, 109, 0.45);
    border-radius: 50%;
    pointer-events: none;
}

.premium-badge-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 50%;
}

/* ============ SERVICE AREAS ============ */
.areas {
    background: var(--paper);
    padding: 120px 48px;
    position: relative;
}

.areas::before {
    content: "";
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 94, 109, 0.35), transparent);
}

.areas-intro {
    max-width: 640px;
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
}

.areas-layout {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 32px;
    align-items: stretch;
}

.areas-hub {
    background: linear-gradient(160deg, var(--wine-dark) 0%, var(--wine) 55%, var(--wine-deep) 100%);
    color: var(--cream);
    padding: 40px 36px;
    border: 1px solid rgba(139, 94, 109, 0.45);
    position: relative;
    overflow: hidden;
}

.areas-hub::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 94, 109, 0.18), transparent 70%);
    top: -60px;
    right: -60px;
    pointer-events: none;
}

.areas-hub-badge {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.areas-hub h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    line-height: .92;
    letter-spacing: .04em;
    color: var(--cream);
    margin-bottom: 8px;
}

.areas-hub-region {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.55);
    margin-bottom: 20px;
}

.areas-hub p:last-of-type {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(245, 240, 232, 0.82);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.areas-hub-cta {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 22px;
    background: var(--gold);
    color: var(--wine-dark);
    font-weight: 600;
    transition: background .3s ease, transform .3s ease;
    position: relative;
    z-index: 1;
}

.areas-hub-cta:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.areas-panel {
    background: var(--cream);
    border: 1px solid rgba(111, 54, 77, 0.12);
    padding: 32px 36px 36px;
}

.areas-panel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--wine);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(111, 54, 77, 0.12);
}

.areas-dot {
    color: var(--gold);
}

.areas-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.areas-grid a {
    display: block;
    padding: 12px 14px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: .06em;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(111, 54, 77, 0.1);
    transition: border-color .25s ease, color .25s ease, background .25s ease;
}

.areas-grid a:hover {
    border-color: var(--gold);
    color: var(--wine);
    background: #fff;
}

/* ============ FAQ ============ */
.faq {
    background: var(--paper);
    padding: 120px 48px;
}

.faq-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid rgba(85, 29, 47, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(85, 29, 47, 0.12);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 4px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 600;
    color: var(--ink);
}

.faq-q .qn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    color: var(--wine);
    margin-right: 8px;
}

.faq-q .pm {
    flex: none;
    width: 30px;
    height: 30px;
    border: 1px solid var(--wine);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wine);
    transition: all .35s ease;
    position: relative;
}

.faq-q .pm::before,
.faq-q .pm::after {
    content: "";
    position: absolute;
    background: var(--wine);
    transition: all .35s ease;
}

.faq-q .pm::before {
    width: 12px;
    height: 1.5px;
}

.faq-q .pm::after {
    width: 1.5px;
    height: 12px;
}

.faq-item.open .pm {
    background: var(--wine);
}

.faq-item.open .pm::before,
.faq-item.open .pm::after {
    background: var(--cream);
}

.faq-item.open .pm::after {
    transform: scaleY(0);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease;
}

.faq-a p {
    padding: 0 50px 30px 4px;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* ============ CONTACT ============ */
.contact {
    background: var(--ink);
    color: var(--cream);
    padding: 0;
}

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

.contact-info {
    padding: 110px 64px;
}

.contact-info .eyebrow {
    color: var(--gold);
}

.contact-info .eyebrow::before {
    background: var(--gold);
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 26px;
}

.contact-info h2 em {
    color: var(--gold);
    font-style: italic;
}

.contact-info>p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--cream-dim);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 42px;
}

.ci-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 0;
    border-top: 1px solid rgba(245, 240, 232, 0.12);
}

.ci-row .ic {
    width: 30px;
    height: 30px;
    flex: none;
    color: var(--gold);
}

.ci-row .det .k {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.ci-row .det .v {
    font-size: 18px;
    color: var(--cream);
}

.ci-row .det .v.big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    letter-spacing: .03em;
}

.contact-map {
    position: relative;
    min-height: 540px;
    filter: grayscale(.4) contrast(1.05);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    inset: 0;
}

.contact-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(85, 29, 47, 0.22), transparent 60%);
    pointer-events: none;
}

/* ============ FOOTER ============ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer {
    position: relative;
    overflow: hidden;
    background: var(--brand-dark);
    color: var(--cream);
}

/* white crest — echoes logo arch */
.footer-crest {
    position: relative;
    background: var(--paper);
    padding: 56px 24px 72px;
    text-align: center;
}

.footer-arch {
    position: absolute;
    left: 50%;
    bottom: -1px;
    transform: translateX(-50%);
    width: min(520px, 92vw);
    height: 48px;
    background: var(--paper);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    box-shadow: 0 12px 0 var(--brand-dark);
}

.footer-crest-inner {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-block;
    line-height: 0;
}

.footer-logo-img {
    display: block;
    height: clamp(100px, 14vw, 140px);
    width: auto;
    max-width: min(280px, 85vw);
    margin: 0 auto;
    object-fit: contain;
    transition: transform .35s ease;
}

.footer-logo:hover .footer-logo-img {
    transform: translateY(-4px);
}

.footer-motto {
    margin-top: 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brand-soft);
}

/* maroon body */
.footer-main {
    position: relative;
    padding: 64px 48px 48px;
    background: linear-gradient(165deg, var(--brand) 0%, var(--brand-deep) 48%, var(--brand-dark) 100%);
}

.footer-louvers {
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.footer-louvers span {
    flex: 1;
    min-height: 8px;
    background: rgba(139, 94, 109, 0.35);
    border-radius: 1px;
}

.footer-main-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 48px;
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 48px;
    align-items: start;
}

.footer-cta-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}

.footer-cta-label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--brand-soft);
    margin-bottom: 10px;
}

.footer-cta-phone {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 56px);
    line-height: .95;
    letter-spacing: .02em;
    color: var(--cream);
    margin-bottom: 14px;
    transition: color .3s ease;
}

.footer-cta-phone:hover {
    color: rgba(255, 255, 255, 0.85);
}

.footer-cta-card>p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
    font-weight: 300;
}

.footer-cta-btn {
    display: inline-block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 14px 24px;
    background: var(--cream);
    color: var(--brand);
    transition: background .3s ease, transform .3s ease;
}

.footer-cta-btn:hover {
    background: var(--brand-soft);
    color: var(--cream);
    transform: translateY(-2px);
}

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

.footer-nav-block h6 {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--brand-soft);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav-block ul {
    list-style: none;
}

.footer-nav-block li {
    margin-bottom: 10px;
}

.footer-nav-block a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    transition: color .25s ease, padding-left .25s ease;
}

.footer-nav-block a:hover {
    color: var(--cream);
    padding-left: 4px;
}

.footer-nav-block address {
    font-style: normal;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
}

.footer-nav-block address a {
    display: inline;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.footer-badges li {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid rgba(139, 94, 109, 0.6);
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.footer-news p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 300;
    margin-bottom: 16px;
}

.footer-news-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.15);
}

.footer-news-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--cream);
    padding: 14px 14px;
    font-size: 14px;
}

.footer-news-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-news-form button {
    flex: none;
    background: var(--brand-soft);
    color: var(--cream);
    border: none;
    padding: 0 18px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s ease;
}

.footer-news-form button:hover {
    background: var(--cream);
    color: var(--brand);
}

.footer-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 20px 48px;
    background: var(--brand-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bar span:first-child {
    justify-self: start;
}

.footer-bar span:last-child {
    justify-self: end;
}

.footer-bar-mid {
    color: var(--brand-soft);
    letter-spacing: .2em;
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1);
}

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

/* ============ RESPONSIVE ============ */
@media(max-width:980px) {

    .premium-inner,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .premium-badge {
        margin-top: 40px;
    }

    .areas-layout {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ed-feature-body {
        grid-template-columns: 1fr;
    }

    .ed-columns {
        column-count: 2;
    }

    .why-card.span6,
    .why-card.span4 {
        grid-column: span 6;
    }

    .footer-main-inner {
        grid-template-columns: 1fr;
        padding-left: 0;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-louvers {
        display: none;
    }

    .footer-bar {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bar span:first-child,
    .footer-bar span:last-child {
        justify-self: center;
    }

    .contact-map {
        min-height: 380px;
    }

    /* blade hero — collapse thin decorative blades, keep content blades */
    .b3,
    .b5,
    .b6 {
        display: none;
    }

    .b1 {
        width: 36px;
    }

    .b7 {
        width: 36px;
    }

    .b2 {
        width: 280px;
    }
}

@media(max-width:680px) {
    .nav {
        padding: 18px 22px;
    }

    .nav-links {
        display: none;
    }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .burger span {
        width: 26px;
        height: 2px;
        background: var(--cream);
    }

    .why,
    .faq,
    .areas {
        padding: 80px 22px;
    }

    .areas::before {
        left: 22px;
        right: 22px;
    }

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

    .areas-panel {
        padding: 24px 20px 28px;
    }

    .ed-wrap {
        padding: 0 22px;
    }

    .ed-columns {
        column-count: 1;
    }

    .ed-feature-body {
        grid-template-columns: 1fr;
    }

    .why-card.span6,
    .why-card.span4,
    .why-card.span12 {
        grid-column: span 12;
    }

    .why-card.span12 {
        grid-template-columns: 1fr;
    }

    .premium,
    .contact-info {
        padding: 80px 24px;
    }

    .footer-crest {
        padding: 48px 20px 64px;
    }

    .footer-main {
        padding: 48px 22px 36px;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bar {
        padding: 18px 22px;
        font-size: 9px;
    }

    .why-grid {
        grid-template-columns: repeat(12, 1fr);
    }

    /* blade hero → stacked bands on phones */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        clip-path: polygon(0 0, 100% 0, 100% 96%, 85% 100%, 0 100%);
    }

    .blade {
        width: 100% !important;
        flex: none !important;
        border-right: none;
        border-bottom: 1px solid rgba(85, 29, 47, 0.1);
    }

    .b1 {
        height: 40px;
    }

    .b1 .vphone {
        writing-mode: horizontal-tb;
        transform: translate(-50%, -50%);
        letter-spacing: .3em;
    }

    .b2 {
        height: auto;
        padding: 90px 0 36px;
    }

    .b2-content {
        position: relative;
        padding: 0 28px;
    }

    .b4 {
        height: auto;
        min-width: 0;
        padding: 30px 0 50px;
    }

    .b4-content {
        position: relative;
        padding: 0 28px;
    }

    .b4 .ghost {
        font-size: 60vw;
        bottom: -4%;
    }

    .b7 {
        height: 38px;
    }

    .b7 .vaddr {
        writing-mode: horizontal-tb;
        transform: translate(-50%, -50%);
    }

    .b6 {
        display: block !important;
        height: 320px;
        order: 2;
    }

    .b4 {
        order: 1;
    }

    .b2 {
        order: 3;
    }

    .b7 {
        order: 4;
    }

    .hero-visual {
        padding: 28px 22px 32px;
    }

    .hero-visual__matte {
        max-width: min(88vw, 320px);
        height: 240px;
        margin: 0 auto;
        transform: rotate(0deg);
    }

    .hero-visual__ghost {
        display: none;
    }

    .hero-visual__ribbon {
        left: max(22px, calc(50% - 170px));
        transform: none;
        top: 6%;
    }

    .hero-visual__badge {
        right: max(22px, calc(50% - 170px));
        transform: none;
        bottom: 8%;
    }

    .hero-visual__vlabel {
        display: none;
    }

    .hero:hover .b4 {
        width: 100% !important;
    }

    .hero-scroll {
        display: none;
    }
}