.spectacles-hero {
    min-height: 62rem;
    padding: 2.2rem 1.125rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f3e8 0 66%, #ebe4d5 66% 100%);
}

.spectacles {
    display: flex;
    flex-direction: column;
}

.lens {
    width: 100%;
    min-width: 0;
    position: relative;
    overflow: hidden;
    border: .375rem solid var(--color-ink);
}

.lens--photo {
    height: 22.5rem;
    order: 1;
    background: var(--color-walnut);
    border-radius: 37% 28% 38% 27% / 28% 35% 30% 38%;
}

.lens--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
    filter: saturate(.95) contrast(1.04);
    transition: filter 900ms ease, transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.lens--copy {
    min-height: 27.5rem;
    padding: 3rem 1.9rem;
    order: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-paper);
    border-radius: 24% 17% 26% 15% / 10% 13% 11% 14%;
}

.bridge {
    width: 4.75rem;
    height: 2.4rem;
    margin-block: -.25rem;
    order: 2;
    position: relative;
    align-self: center;
    border-right: .375rem solid var(--color-ink);
    border-left: .375rem solid var(--color-ink);
    border-radius: 0 0 40% 40%;
}

.bridge i {
    width: 2.2rem;
    height: .44rem;
    position: absolute;
    left: 50%;
    top: .82rem;
    display: block;
    background: var(--color-coral);
    transform: translateX(-50%) rotate(-6deg);
}

.temple {
    display: none;
}

.lens--copy h1 {
    margin-top: 1.2rem;
    color: var(--color-ink);
    font-size: clamp(2.75rem, 13vw, 3.65rem);
    line-height: .94;
}

.hero-intro {
    margin: 1.6rem 0;
    color: var(--color-ink-deep);
    font-size: .94rem;
    line-height: 1.6;
}

.hero-address {
    margin-top: 2.3rem;
    color: var(--color-ink);
    font-size: .49rem;
    font-weight: 700;
    letter-spacing: .16em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
}

.hero-address span {
    margin-inline: .75rem;
    color: var(--color-coral);
}

.motion-ready [data-hero] .bridge {
    opacity: 0;
    transform: translateY(-.8rem);
    transition: opacity 380ms ease, transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.motion-ready [data-hero].hero-ready .bridge {
    opacity: 1;
    transform: translateY(0);
}

.motion-ready [data-hero] .lens {
    opacity: 0;
    clip-path: inset(48% 0 48% 0 round 2rem);
    transition: opacity 420ms ease 260ms, clip-path 920ms cubic-bezier(.22, 1, .36, 1) 260ms;
}

.motion-ready [data-hero].hero-ready .lens {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 0);
}

.motion-ready [data-hero] .lens--photo img {
    filter: blur(.65rem) saturate(.75);
    transform: scale(1.045);
}

.motion-ready [data-hero].hero-ready .lens--photo img {
    filter: blur(0) saturate(.95) contrast(1.04);
    transform: scale(1);
}

.fitting {
    min-height: 56rem;
    padding: 5.3rem var(--page-gutter) 5rem;
    position: relative;
    overflow: hidden;
    color: var(--color-cream);
    background: var(--color-walnut-dark);
}

.signature {
    position: absolute;
    top: 1rem;
    right: -3.4rem;
    color: rgb(255 255 255 / 2.5%);
    font-family: "Brush Script MT", "Segoe Script", cursive;
    font-size: 9rem;
    line-height: 1;
    transform: rotate(-6deg);
}

.signature::after {
    content: "Arcolini";
    position: absolute;
    inset: 0;
    color: rgb(255 255 255 / 5.5%);
}

.motion-ready .signature::after {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.35s cubic-bezier(.16, 1, .3, 1);
}

.motion-ready .signature.is-signed::after {
    clip-path: inset(0 0 0 0);
}

.fitting-heading,
.fitting-intro,
.fit-lines {
    position: relative;
    z-index: 1;
}

.fitting h2,
.vision-slip h2,
.adjustment h2,
.contact h2 {
    font-size: clamp(3rem, 13.2vw, 4rem);
    line-height: .94;
}

.fitting h2 {
    margin-top: 1.6rem;
}

.fitting-intro {
    margin: 2.8rem 0 4.2rem;
    color: #ead7ce;
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.55;
}

.fit-lines article {
    min-height: 6.4rem;
    padding: .9rem 0 1.45rem;
    position: relative;
    border-top: 1px solid rgb(255 255 255 / 42%);
}

.fit-lines span {
    display: block;
    color: #d6aa9a;
    font-size: .52rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.fit-lines strong {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
}

.fit-lines i {
    width: 30%;
    height: .32rem;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--color-coral);
    transform: scaleX(.24);
    transform-origin: right center;
    transition: transform 460ms cubic-bezier(.22, 1, .36, 1);
}

.fit-lines article:hover i,
.fit-lines article.is-active i {
    transform: scaleX(1);
}

.vision-slip {
    min-height: 61rem;
    padding: 5.3rem var(--page-gutter) 6.25rem;
    background: var(--color-mist);
}

.vision-slip h2 {
    margin-top: 1.6rem;
    color: var(--color-ink);
}

.slip-heading > p:last-child {
    margin: 2rem 0 3.2rem;
    color: #40566d;
    font-size: .98rem;
    line-height: 1.75;
}

.slip {
    padding: 1.8rem 1.55rem 2.15rem;
    position: relative;
    background: #fffdfa;
    border: 1px solid rgb(16 47 85 / 35%);
    box-shadow: .6rem .7rem 0 rgb(16 47 85 / 9%);
    transform: rotate(.6deg);
}

.slip::before {
    content: "";
    position: absolute;
    inset: .72rem;
    border: 1px dashed rgb(122 63 44 / 26%);
    pointer-events: none;
}

.slip-top,
.slip-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-walnut);
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.slip-top {
    justify-content: space-between;
}

.slip-top span:last-child {
    display: none;
}

.slip ul {
    margin: 2rem 0;
    padding: 0;
    position: relative;
    z-index: 1;
    list-style: none;
    border-top: 2px solid var(--color-ink);
}

.slip li {
    min-height: 7rem;
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    grid-template-rows: auto auto;
    column-gap: .65rem;
    align-content: center;
    border-bottom: 1px solid var(--color-line);
}

.check {
    grid-row: 1 / span 2;
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    align-self: center;
    color: var(--color-paper);
    background: var(--color-coral);
    border-radius: 50%;
}

.check svg {
    width: 1.15rem;
    height: 1.15rem;
    overflow: visible;
}

.check path {
    fill: none;
    stroke: currentColor;
    stroke-dasharray: 24;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.8;
}

.motion-ready .slip .check path {
    stroke-dashoffset: 24;
}

.motion-ready .slip.is-visible .check path {
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 520ms ease var(--check-delay);
}

.slip strong {
    color: var(--color-ink);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
}

.slip small {
    margin-top: .35rem;
    color: #687988;
    font-size: .66rem;
    letter-spacing: .03em;
    line-height: 1.4;
}

.slip-bottom i {
    width: 2.2rem;
    border-bottom: 1px solid var(--color-line);
}

.adjustment {
    --ruler-progress: 0;
    min-height: 70rem;
    position: relative;
    background: var(--color-paper);
}

.bench-photo {
    height: 31.25rem;
    position: relative;
    overflow: hidden;
}

.bench-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 53% center;
}

.ruler {
    width: 2.7rem;
    padding: 2rem .45rem 2rem 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    color: var(--color-paper);
    background: rgb(8 28 53 / 82%);
    font-size: .48rem;
}

.ruler::before {
    content: "";
    width: .18rem;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--color-coral);
    transform: scaleY(var(--ruler-progress));
    transform-origin: center top;
}

.ruler span {
    width: 2rem;
    padding-top: .3rem;
    border-top: 1px solid rgb(255 255 255 / 72%);
    text-align: right;
}

.ruler i {
    width: 1rem;
    border-top: 1px solid rgb(255 255 255 / 48%);
}

.adjustment-copy {
    min-height: 35rem;
    padding: 5rem var(--page-gutter) 6.4rem;
}

.adjustment-copy h2 {
    margin-top: 1.6rem;
    color: var(--color-ink);
}

.adjustment-copy > p:not(.section-tag) {
    margin: 2.2rem 0 1.9rem;
    color: #465b6f;
    font-size: 1rem;
    line-height: 1.75;
}

.side-note {
    display: none;
}

.contact {
    min-height: 46rem;
    padding: 5rem .75rem 5.8rem;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.case-lid {
    width: 86vw;
    height: 11.5rem;
    position: absolute;
    left: 50%;
    top: 5.2rem;
    border: .25rem solid var(--color-walnut-dark);
    border-radius: 48% 48% 12% 12% / 80% 80% 20% 20%;
    background: #955038;
    box-shadow: inset 0 .75rem 1.9rem rgb(255 255 255 / 8%);
    transform: translateX(-50%) rotate(-2deg);
    transform-origin: center bottom;
    transition: transform 760ms cubic-bezier(.22, 1, .36, 1);
}

.contact.is-open .case-lid {
    transform: translateX(-50%) translateY(-.35rem) rotate(-5deg);
}

.case-body {
    width: min(94vw, 35rem);
    min-height: 31rem;
    margin: 6.6rem auto 0;
    padding: 4.3rem 2.15rem 3.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-cream);
    background: var(--color-ink);
    border: .375rem solid var(--color-walnut-dark);
    border-radius: 44% 44% 13% 13% / 22% 22% 12% 12%;
    box-shadow: 0 1.5rem 3rem rgb(8 28 53 / 18%);
}

.contact-title {
    padding-top: 1.4rem;
}

.contact-title > p {
    margin-bottom: 1.6rem;
    color: #a8c0ce;
    font-size: .5rem;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.contact h2 {
    color: var(--color-paper);
}

.contact-data {
    margin-top: 2.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .95rem;
    color: #bdcad2;
    font-style: normal;
}

.contact-data a {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    color: var(--color-paper);
    border-bottom: 1px solid rgb(255 255 255 / 45%);
    text-decoration: none;
}

.contact-data .phone {
    color: #f0a89b;
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.contact-data span {
    line-height: 1.65;
}

@media (min-width: 48rem) {
    .spectacles-hero {
        min-height: 51rem;
        padding: 4.7rem 1.9rem 3.5rem;
    }

    .spectacles {
        min-height: 35.5rem;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 3.6rem minmax(0, 1fr);
        align-items: center;
    }

    .lens {
        height: 35rem;
        border-width: .44rem;
    }

    .lens--copy {
        min-height: 0;
        padding: 2.35rem 2.6rem;
        grid-column: 1;
        grid-row: 1;
        border-radius: 38% 28% 42% 31% / 29% 37% 33% 42%;
    }

    .lens--photo {
        grid-column: 3;
        grid-row: 1;
        border-radius: 28% 40% 29% 42% / 39% 27% 43% 30%;
    }

    .bridge {
        width: auto;
        height: 5.1rem;
        margin-inline: -.2rem;
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        border: 0;
        border-top: .44rem solid var(--color-ink);
        border-radius: 50% 50% 0 0;
    }

    .bridge i {
        width: .8rem;
        height: 2.65rem;
        top: -.85rem;
        transform: translateX(-50%) rotate(12deg);
    }

    .temple {
        width: 15vw;
        height: .44rem;
        position: absolute;
        top: 50%;
        z-index: 0;
        display: block;
        background: var(--color-ink);
        transform-origin: center;
    }

    .temple--left {
        left: -5vw;
        transform: rotate(8deg);
    }

    .temple--right {
        right: -5vw;
        transform: rotate(-8deg);
    }

    .motion-ready [data-hero] .temple--left {
        transform: rotate(8deg) scaleX(0);
        transform-origin: right center;
    }

    .motion-ready [data-hero] .temple--right {
        transform: rotate(-8deg) scaleX(0);
        transform-origin: left center;
    }

    .motion-ready [data-hero].hero-ready .temple--left,
    .motion-ready [data-hero].hero-ready .temple--right {
        transform: rotate(8deg) scaleX(1);
        transition: transform 620ms cubic-bezier(.22, 1, .36, 1);
    }

    .motion-ready [data-hero].hero-ready .temple--right {
        transform: rotate(-8deg) scaleX(1);
    }

    .lens--copy h1 {
        font-size: clamp(2.7rem, 5.7vw, 3.55rem);
    }

    .hero-intro {
        font-size: .88rem;
    }

    .hero-address {
        margin-top: 2.7rem;
        font-size: .6rem;
    }

    .fitting {
        min-height: 47.5rem;
        padding: 6.5rem 7vw 5.6rem;
        display: grid;
        grid-template-columns: 1.08fr .92fr;
        gap: 2.5rem 6vw;
    }

    .signature {
        top: -1.4rem;
        right: -1rem;
        font-size: 15rem;
    }

    .fitting h2,
    .vision-slip h2,
    .adjustment h2 {
        font-size: clamp(3.9rem, 7.7vw, 5rem);
    }

    .fitting-intro {
        margin: 0;
        align-self: end;
        font-size: 1.25rem;
    }

    .fit-lines {
        margin-top: 3.5rem;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.8rem;
    }

    .fit-lines i {
        width: 44%;
    }

    .vision-slip {
        min-height: 75rem;
        padding: 7rem 8vw;
    }

    .slip-heading {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 3rem;
        align-items: end;
    }

    .slip-heading .section-tag {
        grid-column: 1 / -1;
    }

    .slip-heading > p:last-child {
        margin: 0 0 .45rem;
    }

    .slip {
        margin-top: 5rem;
        padding: 2.3rem 3rem 2.6rem;
        box-shadow: .9rem 1rem 0 rgb(16 47 85 / 9%);
        transform: rotate(1deg);
    }

    .slip-top span:last-child {
        display: inline;
    }

    .slip li {
        min-height: 7.6rem;
        grid-template-columns: 3rem 1fr;
    }

    .slip strong {
        font-size: 1.7rem;
    }

    .adjustment {
        min-height: 75rem;
    }

    .bench-photo {
        height: 41rem;
    }

    .ruler {
        width: 3.35rem;
    }

    .adjustment-copy {
        min-height: 34rem;
        padding: 6rem 9vw 7rem;
    }

    .adjustment-copy > p:not(.section-tag) {
        max-width: 37rem;
        font-size: 1.1rem;
    }

    .side-note {
        position: absolute;
        right: 1.2rem;
        bottom: 3rem;
        display: block;
        color: #8b989f;
        font-size: .48rem;
        letter-spacing: .18em;
        text-transform: uppercase;
        writing-mode: vertical-rl;
    }

    .contact {
        min-height: 51rem;
        padding: 7.2rem 4vw;
    }

    .case-lid {
        width: min(72vw, 56rem);
        height: 14.5rem;
        top: 4.4rem;
    }

    .case-body {
        width: min(90vw, 61rem);
        min-height: 27rem;
        margin-top: 8.4rem;
        padding: 4.7rem 7%;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 3.8rem;
        align-items: center;
        border-width: .5rem;
        border-radius: 46% 46% 16% 16% / 30% 30% 18% 18%;
    }

    .contact-title {
        padding-top: 0;
    }

    .contact h2 {
        font-size: clamp(4rem, 8vw, 5.4rem);
    }

    .contact-data {
        margin-top: 0;
    }

    .contact-data .phone {
        font-size: 2.2rem;
    }
}

@media (min-width: 73.75rem) {
    .spectacles-hero {
        min-height: 53rem;
        padding: 5.7rem 5vw 4.5rem;
    }

    .spectacles {
        max-width: 81rem;
        min-height: 36rem;
        margin: 0 auto;
        grid-template-columns: minmax(0, 1fr) 5.4rem minmax(0, 1fr);
    }

    .lens {
        height: 35.5rem;
        border-width: .56rem;
    }

    .lens--copy {
        padding: clamp(3.2rem, 4.7vw, 5.4rem);
    }

    .lens--copy h1 {
        font-size: clamp(3.65rem, 4.8vw, 4.9rem);
    }

    .hero-intro {
        max-width: 29rem;
        margin-block: 1.9rem;
        font-size: 1rem;
    }

    .bridge {
        border-top-width: .56rem;
    }

    .temple {
        height: .56rem;
    }

    .fitting {
        min-height: 52.5rem;
        padding: 8rem 8vw 6.9rem;
        gap: 2.5rem 9vw;
    }

    .signature {
        top: -2rem;
        font-size: clamp(15rem, 24vw, 22rem);
    }

    .fitting h2,
    .vision-slip h2,
    .adjustment h2,
    .contact h2 {
        font-size: clamp(4.5rem, 6.5vw, 6.3rem);
    }

    .fitting-intro {
        max-width: 34rem;
        font-size: 1.45rem;
    }

    .fit-lines {
        margin-top: 5rem;
    }

    .fit-lines strong {
        font-size: 2.1rem;
    }

    .vision-slip {
        min-height: 55.5rem;
        padding: 7.8rem 8vw;
        display: grid;
        grid-template-columns: .78fr 1.22fr;
        gap: 9vw;
        align-items: center;
    }

    .slip-heading {
        display: block;
    }

    .slip-heading h2 {
        margin-top: 1.6rem;
    }

    .slip-heading > p:last-child {
        max-width: 29rem;
        margin-top: 2.2rem;
    }

    .slip {
        margin-top: 0;
    }

    .adjustment {
        min-height: 57.5rem;
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    }

    .bench-photo {
        height: auto;
        min-height: 57.5rem;
    }

    .ruler {
        width: 3.4rem;
    }

    .adjustment-copy {
        min-height: 0;
        padding: 6.2rem 8vw 6.2rem 6vw;
        align-self: center;
    }

    .contact {
        min-height: 43.75rem;
        padding: 7.2rem 9vw;
    }

    .case-lid {
        width: min(56rem, 72vw);
    }

    .case-body {
        width: min(62rem, 79vw);
    }
}
