:root {
    --cream: #fff7e8;
    --paper: #fffdf7;
    --ink: #171713;
    --coral: #ff5b4d;
    --coral-dark: #db352c;
    --blue: #2451ff;
    --blue-dark: #1836b8;
    --yellow: #ffd95a;
    --soft-yellow: #fff0aa;
    --line: rgba(23, 23, 19, .18);
    --white: #fff;
    --shadow: 0 20px 60px rgba(31, 25, 7, .12);
    --radius: 28px;
    --font-body: "DM Sans", Arial, sans-serif;
    --font-display: "Manrope", "DM Sans", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

button,
input,
select,
textarea,
a,
p,
li,
label,
span {
    font-size: inherit;
}

small,
.small {
    font-size: 16px !important;
}

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

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

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

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

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -.055em;
}

.page-shell {
    width: min(1320px, calc(100% - 56px));
    margin-inline: auto;
}

.site-main {
    min-height: 45vh;
}

.section-space {
    padding: 118px 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-150%);
}

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

.round-label,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 40px;
    padding: 7px 17px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .045em;
    line-height: 1.2;
    text-transform: uppercase;
}

.round-label--yellow {
    background: var(--yellow);
}

.section-kicker {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--blue);
}

.pop-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 58px;
    padding: 14px 25px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--coral);
    box-shadow: 4px 4px 0 var(--ink);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pop-button:hover,
.pop-button:focus-visible {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 1px 1px 0 var(--ink);
    transform: translate(3px, 3px);
}

.pop-button--small {
    min-height: 48px;
    padding: 10px 20px;
    box-shadow: none;
    font-size: 16px;
}

.pop-button--blue {
    background: var(--blue);
    color: var(--white);
}

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

.plain-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 2px solid currentColor;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.plain-link i {
    transition: transform .2s ease;
}

.plain-link:hover i {
    transform: translateX(5px);
}

.plain-link--light {
    color: var(--white);
}

/* Header */
.color-header {
    position: relative;
    z-index: 1060;
    background: var(--cream);
}

.color-announcement {
    min-height: 40px;
    background: var(--blue);
    color: var(--white);
}

.color-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 40px;
}

.color-announcement__inner > div {
    overflow: hidden;
}

.color-announcement__inner p {
    margin: 0;
}

.color-announcement__inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 700;
}

.color-navbar {
    border-bottom: 2px solid var(--ink);
    background: var(--cream);
}

.color-navbar__inner {
    display: flex;
    align-items: center;
    min-height: 92px;
}

.color-brand {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    column-gap: 12px;
    flex: 0 0 auto;
    line-height: 1;
}

.color-brand__icon {
    position: relative;
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    overflow: hidden;
}

.color-brand__icon span {
    position: absolute;
    width: 28px;
    height: 12px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    transform: rotate(-42deg);
}

.color-brand__icon span:nth-child(1) {
    top: 5px;
    left: -7px;
    background: var(--coral);
}

.color-brand__icon span:nth-child(2) {
    top: 18px;
    left: 9px;
    background: var(--blue);
}

.color-brand__icon span:nth-child(3) {
    right: -8px;
    bottom: 3px;
    background: var(--white);
}

.color-brand__name {
    max-width: 230px;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: clamp(20px, 1.7vw, 28px);
    font-weight: 800;
    letter-spacing: -.05em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.color-brand small {
    margin-top: 4px;
    color: var(--blue);
    font-size: 16px !important;
    font-weight: 800;
    letter-spacing: .11em;
}

.desktop-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.1vw, 34px);
    flex: 1 1 auto;
    padding: 0 28px;
}

.desktop-navigation a {
    position: relative;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-navigation a::after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 5px;
    border-radius: 999px;
    background: var(--coral);
    content: "";
    transform: translateX(-50%);
    transition: width .2s ease;
}

.desktop-navigation a:hover::after,
.desktop-navigation a.active::after {
    width: 100%;
}

.color-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.location-button,
.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ink);
    background: var(--white);
    color: var(--ink);
}

.location-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
}

.menu-toggle {
    display: none;
    gap: 12px;
    min-width: 112px;
    height: 50px;
    padding: 0 16px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
}

.menu-toggle__icon {
    position: relative;
    width: 22px;
    height: 16px;
}

.menu-toggle__icon i {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: top .25s ease, transform .25s ease;
}

.menu-toggle__icon i:first-child {
    top: 4px;
}

.menu-toggle__icon i:last-child {
    top: 11px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 7px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 7px;
    transform: rotate(-45deg);
}

.mobile-navigation {
    position: fixed;
    z-index: 1050;
    inset: 0;
    display: none;
    padding-top: var(--header-height, 134px);
    background: var(--blue);
    color: var(--white);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .3s ease, transform .3s ease;
}

.mobile-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-navigation__shapes span {
    position: fixed;
    border: 2px solid var(--ink);
    border-radius: 50%;
    pointer-events: none;
}

.mobile-navigation__shapes span:first-child {
    top: 22%;
    right: -110px;
    width: 240px;
    height: 240px;
    background: var(--coral);
}

.mobile-navigation__shapes span:last-child {
    bottom: -95px;
    left: -55px;
    width: 190px;
    height: 190px;
    background: var(--yellow);
}

.mobile-navigation__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - var(--header-height, 134px));
    padding-top: 24px;
    padding-bottom: 40px;
}

.mobile-navigation nav {
    display: flex;
    flex-direction: column;
}

.mobile-navigation nav a {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.mobile-navigation nav a small {
    color: var(--yellow);
    font-weight: 800;
}

.mobile-navigation nav a span {
    font-family: var(--font-display);
    font-size: clamp(28px, 7vw, 48px);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
}

.mobile-navigation nav a > i {
    font-size: 24px;
}

.mobile-navigation__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 30px;
}

.mobile-navigation__footer p {
    max-width: 560px;
    margin: 0;
    font-size: 17px;
}

/* Hero */
.pop-hero {
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}

.pop-hero::before {
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    content: "";
}

.pop-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
    align-items: center;
    gap: clamp(40px, 5vw, 86px);
    min-height: min(760px, calc(100vh - 134px));
    padding-top: 62px;
    padding-bottom: 66px;
}

.pop-hero__copy {
    position: relative;
    z-index: 2;
}

.pop-hero h1 {
    max-width: 720px;
    margin: 27px 0 25px;
    font-size: clamp(56px, 6.6vw, 108px);
    line-height: .89;
}

.pop-hero h1 span,
.pop-heading h2 span,
.made-for-you h2 span {
    color: var(--blue);
}

.pop-hero__copy > p {
    max-width: 590px;
    margin-bottom: 30px;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.6;
}

.pop-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.pop-hero__mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
    padding-top: 20px;
    border-top: 2px solid var(--ink);
}

.pop-hero__mini span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.pop-hero__mini b {
    color: var(--coral-dark);
    font-family: var(--font-display);
}

.pop-hero__visual {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 20px 24px 26px 18px;
}

.pop-hero__image {
    position: relative;
    aspect-ratio: 1.15;
    border: 2px solid var(--ink);
    border-radius: 44% 44% 24px 24px;
    background: var(--coral);
    box-shadow: 10px 10px 0 var(--ink);
    overflow: hidden;
}

.pop-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pop-sticker {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.05;
    text-align: center;
    transform: rotate(-9deg);
}

.pop-sticker--top {
    top: 0;
    right: 0;
}

.pop-sticker--bottom {
    bottom: 0;
    left: 0;
    width: 130px;
    height: 130px;
    background: var(--blue);
    color: var(--white);
    transform: rotate(8deg);
}

.pop-hero__dot {
    position: absolute;
    top: 15%;
    left: -18px;
    width: 35px;
    height: 35px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--coral);
}

.pop-ticker {
    border-bottom: 2px solid var(--ink);
    background: var(--yellow);
    overflow: hidden;
}

.pop-ticker > div {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 66px;
    animation: colorTicker 25s linear infinite;
}

.pop-ticker span {
    padding: 0 25px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .08em;
}

.pop-ticker i {
    width: 12px;
    height: 12px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--coral);
}

@keyframes colorTicker {
    to {
        transform: translateX(-50%);
    }
}

/* Headings and mood cards */
.pop-heading,
.service-board__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.pop-heading h2,
.service-board h2,
.made-for-you h2 {
    margin: 16px 0 0;
    font-size: clamp(48px, 6vw, 86px);
    line-height: .95;
}

.pop-heading > p {
    max-width: 460px;
    margin: 0 0 5px;
    font-size: 19px;
}

.pop-heading--compact {
    margin-bottom: 40px;
}

.mood-menu {
    background: var(--paper);
}

.mood-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mood-card {
    position: relative;
    min-height: 480px;
    padding: 28px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    box-shadow: 7px 7px 0 var(--ink);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.mood-card:hover {
    color: var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    transform: translate(5px, 5px);
}

.mood-card--coral {
    background: var(--coral);
}

.mood-card--blue {
    background: var(--blue);
    color: var(--white);
}

.mood-card--blue:hover {
    color: var(--white);
}

.mood-card--yellow {
    background: var(--yellow);
}

.mood-card__number {
    font-family: var(--font-display);
    font-weight: 800;
}

.mood-card__swatch {
    display: grid;
    place-items: center;
    height: 185px;
}

.mood-card__swatch::before,
.mood-card__swatch i {
    display: block;
    border: 2px solid var(--ink);
    content: "";
}

.mood-card__swatch::before {
    width: 150px;
    height: 72px;
    border-radius: 999px;
    background: var(--cream);
    transform: rotate(-22deg);
}

.mood-card__swatch i {
    position: absolute;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--yellow);
    transform: translate(45px, 24px);
}

.mood-card--blue .mood-card__swatch::before {
    background: var(--coral);
    transform: rotate(22deg);
}

.mood-card--blue .mood-card__swatch i {
    background: var(--yellow);
    transform: translate(-45px, 25px);
}

.mood-card--yellow .mood-card__swatch::before {
    border-radius: 80px 80px 16px 16px;
    background: var(--blue);
    transform: rotate(0);
}

.mood-card--yellow .mood-card__swatch i {
    background: var(--coral);
    transform: translate(48px, -18px);
}

.mood-card h3 {
    margin: 8px 0 10px;
    font-size: clamp(30px, 3vw, 43px);
    line-height: 1;
}

.mood-card p {
    max-width: 320px;
    margin-bottom: 25px;
    font-size: 17px;
    line-height: 1.5;
}

.mood-card__link {
    position: absolute;
    right: 28px;
    bottom: 27px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 17px;
    border-top: 2px solid currentColor;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
}

/* Service board */
.service-board {
    position: relative;
    background: var(--yellow);
}

.service-board h2 {
    font-size: clamp(48px, 5.8vw, 82px);
}

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

.service-tile {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 165px;
    padding: 28px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    background: var(--cream);
    transition: background-color .2s ease, color .2s ease;
}

.service-tile:hover {
    background: var(--blue);
    color: var(--white);
}

.service-tile__number {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
}

.service-tile h3 {
    margin: 0 0 7px;
    font-size: clamp(25px, 2.3vw, 35px);
    line-height: 1.1;
}

.service-tile p {
    margin: 0;
    font-size: 16px;
}

.service-tile > i {
    font-size: 28px;
}

/* Story */
.made-for-you {
    background: var(--coral);
}

.made-for-you__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(56px, 8vw, 120px);
}

.made-for-you__image {
    position: relative;
    padding: 0 28px 28px 0;
}

.made-for-you__image::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border: 2px solid var(--ink);
    border-radius: 200px 200px 24px 24px;
    background: var(--blue);
    content: "";
}

.made-for-you__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: .82;
    border: 2px solid var(--ink);
    border-radius: 200px 200px 24px 24px;
    object-fit: cover;
}

.made-for-you__image .pop-sticker {
    right: -28px;
    bottom: 75px;
}

.made-for-you h2 {
    max-width: 720px;
}

.made-for-you h2 span {
    color: var(--cream);
}

.made-for-you__copy > p {
    max-width: 680px;
    margin: 28px 0;
    font-size: 19px;
}

.made-for-you ul {
    margin: 0 0 34px;
    padding: 0;
    border-top: 2px solid var(--ink);
    list-style: none;
}

.made-for-you li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    padding: 17px 0;
    border-bottom: 2px solid var(--ink);
}

.made-for-you li b {
    font-family: var(--font-display);
    font-size: 16px;
}

.made-for-you li span,
.made-for-you li strong,
.made-for-you li small {
    display: block;
}

.made-for-you li strong {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.2;
}

.made-for-you li small {
    margin-top: 5px;
    line-height: 1.4;
}

/* Shared hot products from Razor library */
.popular-picks {
    background: var(--paper);
}

.popular-picks .container,
.home-hot-services .container {
    max-width: 1320px;
    padding-right: 28px;
    padding-left: 28px;
}

.popular-picks .card,
.popular-picks [class*="service"] > div,
.popular-picks [class*="product"] > div {
    border-color: var(--ink);
    border-radius: 22px;
}

.popular-picks .btn,
.popular-picks button {
    min-height: 48px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

/* Gallery */
.color-gallery {
    border-top: 2px solid var(--ink);
}

.color-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1.22fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.color-gallery figure {
    position: relative;
    margin: 0;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.color-gallery__look {
    grid-row: span 2;
}

.color-gallery__look img,
.color-gallery__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-gallery__look img {
    min-height: 760px;
}

.color-gallery__hero {
    min-height: 430px;
}

.color-gallery figure::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(13, 14, 15, .64));
    content: "";
    pointer-events: none;
}

.color-gallery figcaption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 23px;
    left: 28px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    color: var(--white);
}

.color-gallery figcaption strong {
    font-family: var(--font-display);
    font-size: 25px;
}

.color-gallery figcaption span {
    font-size: 16px;
}

.color-gallery__quote {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 305px;
    padding: 42px 48px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--blue);
    color: var(--white);
    overflow: hidden;
}

.color-gallery__quote::after {
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 180px;
    height: 180px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    content: "";
}

.color-gallery__quote > span {
    height: 36px;
    color: var(--yellow);
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
}

.color-gallery__quote p {
    margin: 12px 0 22px;
    font-family: var(--font-display);
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.color-gallery__quote small {
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: .08em;
}

/* Studio */
.studio-visit {
    position: relative;
    min-height: 700px;
    border-top: 2px solid var(--ink);
    overflow: hidden;
}

.studio-visit__image,
.studio-visit__image::after,
.studio-visit__image img {
    position: absolute;
    inset: 0;
}

.studio-visit__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-visit__image::after {
    background: linear-gradient(90deg, rgba(16, 20, 37, .76), rgba(16, 20, 37, .1) 72%);
    content: "";
}

.studio-visit__overlay {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 700px;
    color: var(--white);
}

.studio-visit__overlay > div {
    max-width: 720px;
}

.studio-visit h2 {
    margin: 25px 0;
    font-size: clamp(54px, 6.6vw, 96px);
    line-height: .92;
}

.studio-visit p {
    max-width: 520px;
    margin-bottom: 30px;
    font-size: 20px;
}

.studio-visit__overlay > div > div {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* Inner pages */
.inner-banner {
    position: relative;
    min-height: 380px;
    border-bottom: 2px solid var(--ink);
    background: var(--yellow);
    overflow: hidden;
}

.inner-banner__content {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    padding-bottom: 66px;
}

.inner-banner h1 {
    margin: 24px 0 22px;
    font-size: clamp(65px, 9vw, 128px);
    line-height: .82;
}

.inner-banner nav {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 16px;
    font-weight: 700;
}

.inner-banner nav a {
    border-bottom: 2px solid var(--ink);
}

.inner-banner__art i {
    position: absolute;
    border: 2px solid var(--ink);
}

.inner-banner__art i:nth-child(1) {
    top: -60px;
    right: 12%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--coral);
}

.inner-banner__art i:nth-child(2) {
    right: 5%;
    bottom: -55px;
    width: 190px;
    height: 280px;
    border-radius: 100px 100px 20px 20px;
    background: var(--blue);
    transform: rotate(28deg);
}

.inner-banner__art i:nth-child(3) {
    right: 29%;
    bottom: 22px;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--cream);
}

.is-inner .site-main {
    padding: 70px 0 100px;
    background: var(--paper);
}

.is-inner .site-main > .container,
.is-inner .site-main > form > .container {
    max-width: 1320px;
}

.is-inner .card,
.is-inner .list-group-item,
.is-inner .accordion-item {
    border: 2px solid var(--line);
    border-radius: 20px;
    background-color: var(--white);
}

.is-inner .btn,
.modal .btn {
    min-height: 48px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
}

.is-inner .btn-primary,
.modal .btn-primary {
    border-color: var(--blue);
    background-color: var(--blue);
}

.is-inner .form-control,
.is-inner .form-select,
.modal .form-control,
.modal .form-select {
    min-height: 52px;
    border: 2px solid var(--line);
    border-radius: 14px;
    font-size: 17px;
}

.is-inner .nav-link,
.is-inner .dropdown-item,
.is-inner .form-label,
.modal label {
    font-size: 16px;
}

.site-ad:empty {
    display: none;
}

.site-ad img {
    margin-inline: auto;
}

/* Footer */
.color-footer {
    padding: 110px 0 28px;
    background: var(--blue);
    color: var(--white);
}

.color-footer__lead {
    position: relative;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, .45);
}

.color-footer__lead::after {
    position: absolute;
    top: 5%;
    right: 3%;
    width: 165px;
    height: 165px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--coral);
    content: "";
}

.color-footer__lead h2 {
    position: relative;
    z-index: 1;
    margin: 28px 0 34px;
    font-size: clamp(62px, 8vw, 120px);
    line-height: .84;
}

.color-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 70px;
    padding: 60px 0;
}

.color-footer__grid h3 {
    margin-bottom: 20px;
    color: var(--yellow);
    font-size: 20px;
    letter-spacing: 0;
}

.color-footer__grid p {
    max-width: 390px;
    margin-bottom: 14px;
    font-size: 17px;
}

.color-footer__grid a {
    display: block;
    width: fit-content;
    margin-bottom: 9px;
    border-bottom: 1px solid transparent;
    font-size: 17px;
}

.color-footer__grid a:hover {
    border-color: currentColor;
}

.color-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .45);
    font-size: 16px;
}

.color-footer__bottom > div {
    display: flex;
    gap: 28px;
}

.color-footer__bottom a {
    border-bottom: 1px solid currentColor;
}

.back-to-top {
    position: fixed;
    z-index: 1000;
    right: 124px;
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--yellow);
    color: var(--ink);
    font-size: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-booking {
    display: none;
}

/* Tablet */
@media (max-width: 1199.98px) {
    .desktop-navigation {
        display: none;
    }

    .color-navbar__inner {
        justify-content: space-between;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-navigation {
        display: block;
    }

    .pop-hero__grid {
        grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr);
        gap: 35px;
    }

    .pop-hero__mini {
        grid-template-columns: 1fr;
    }

    .mood-card {
        min-height: 450px;
    }
}

@media (max-width: 991.98px) {
    .section-space {
        padding: 90px 0;
    }

    .pop-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 70px;
    }

    .pop-hero__copy {
        max-width: 820px;
    }

    .pop-hero__visual {
        width: min(100%, 800px);
        margin-inline: auto;
    }

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

    .mood-menu__grid {
        grid-template-columns: 1fr;
    }

    .mood-card {
        min-height: 390px;
    }

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

    .made-for-you__grid {
        grid-template-columns: 1fr;
    }

    .made-for-you__image {
        width: min(100%, 650px);
    }

    .color-gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .color-gallery__look {
        grid-row: auto;
    }

    .color-gallery__look img,
    .color-gallery__hero {
        min-height: 520px;
    }

    .color-gallery__quote {
        grid-column: span 2;
    }

    .color-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .color-footer__grid > div:first-child {
        grid-column: span 2;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    html,
    body {
        font-size: 17px;
    }

    .page-shell {
        width: min(100% - 32px, 1320px);
    }

    .section-space {
        padding: 76px 0;
    }

    .color-announcement__inner {
        justify-content: center;
        min-height: 38px;
        text-align: center;
    }

    .color-announcement__inner > div {
        display: none;
    }

    .color-navbar__inner {
        min-height: 80px;
    }

    .color-brand {
        column-gap: 9px;
    }

    .color-brand__icon {
        width: 42px;
        height: 42px;
    }

    .color-brand__name {
        max-width: 145px;
        font-size: 20px;
    }

    .color-brand small {
        letter-spacing: .06em;
    }

    .color-navbar__actions > .pop-button,
    .location-button {
        display: none;
    }

    .menu-toggle {
        min-width: 50px;
        width: 50px;
        padding: 0;
        border-radius: 50%;
        background: var(--yellow);
    }

    .menu-toggle__label {
        position: absolute;
        width: 1px;
        height: 1px;
        clip: rect(0, 0, 0, 0);
        overflow: hidden;
    }

    .mobile-navigation {
        padding-top: var(--header-height, 118px);
    }

    .mobile-navigation__body {
        min-height: calc(100vh - var(--header-height, 118px));
        padding-top: 14px;
        padding-bottom: 28px;
    }

    .mobile-navigation nav a {
        grid-template-columns: 36px 1fr auto;
        padding: 14px 0;
    }

    .mobile-navigation nav a span {
        font-size: clamp(26px, 8.6vw, 38px);
    }

    .mobile-navigation__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding-top: 24px;
    }

    .mobile-navigation__footer .pop-button {
        width: 100%;
    }

    .pop-hero__grid {
        gap: 40px;
        padding-top: 54px;
        padding-bottom: 52px;
    }

    .pop-hero h1 {
        font-size: clamp(51px, 15.8vw, 77px);
    }

    .pop-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .pop-hero__mini {
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 34px;
    }

    .pop-hero__visual {
        padding: 12px 13px 18px 10px;
    }

    .pop-hero__image {
        aspect-ratio: .9;
        border-radius: 45% 45% 20px 20px;
        box-shadow: 6px 6px 0 var(--ink);
    }

    .pop-hero__image img {
        object-position: 60% center;
    }

    .pop-sticker {
        width: 88px;
        height: 88px;
    }

    .pop-sticker--bottom {
        width: 104px;
        height: 104px;
    }

    .pop-heading,
    .service-board__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        margin-bottom: 42px;
    }

    .pop-heading h2,
    .service-board h2,
    .made-for-you h2 {
        font-size: clamp(45px, 13vw, 65px);
    }

    .mood-card {
        min-height: 420px;
        padding: 23px;
        box-shadow: 5px 5px 0 var(--ink);
    }

    .mood-card__link {
        right: 23px;
        left: 23px;
    }

    .service-tile {
        grid-template-columns: 50px 1fr auto;
        gap: 14px;
        min-height: 145px;
        padding: 20px 16px;
    }

    .service-tile__number {
        width: 46px;
        height: 46px;
    }

    .made-for-you__grid {
        gap: 65px;
    }

    .made-for-you__image {
        padding: 0 16px 16px 0;
    }

    .made-for-you__image .pop-sticker {
        right: -5px;
        bottom: 40px;
    }

    .made-for-you__copy > p {
        font-size: 18px;
    }

    .color-gallery__grid {
        grid-template-columns: 1fr;
    }

    .color-gallery__look img,
    .color-gallery__hero {
        min-height: 440px;
    }

    .color-gallery__quote {
        grid-column: auto;
        min-height: 290px;
        padding: 35px 28px;
    }

    .color-gallery figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .studio-visit,
    .studio-visit__overlay {
        min-height: 650px;
    }

    .studio-visit__image::after {
        background: rgba(16, 20, 37, .58);
    }

    .studio-visit h2 {
        font-size: clamp(50px, 14vw, 72px);
    }

    .inner-banner {
        min-height: 330px;
    }

    .inner-banner__content {
        padding-top: 60px;
        padding-bottom: 55px;
    }

    .inner-banner h1 {
        font-size: clamp(55px, 16vw, 78px);
    }

    .inner-banner__art i:nth-child(1) {
        top: auto;
        right: -55px;
        bottom: -85px;
        width: 190px;
        height: 190px;
    }

    .inner-banner__art i:nth-child(2),
    .inner-banner__art i:nth-child(3) {
        display: none;
    }

    .color-footer {
        padding-top: 80px;
        padding-bottom: 88px;
    }

    .color-footer__lead {
        padding-bottom: 60px;
    }

    .color-footer__lead::after {
        top: -10px;
        right: -45px;
        width: 120px;
        height: 120px;
    }

    .color-footer__lead h2 {
        font-size: clamp(58px, 17vw, 84px);
    }

    .color-footer__grid,
    .color-footer__grid > div:first-child {
        grid-template-columns: 1fr;
        grid-column: auto;
        gap: 38px;
    }

    .color-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .color-footer__bottom > div {
        flex-direction: column;
        gap: 9px;
    }

    .mobile-booking {
        position: fixed;
        z-index: 1040;
        right: 16px;
        bottom: 16px;
        left: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        padding: 12px 21px;
        border: 2px solid var(--ink);
        border-radius: 999px;
        background: var(--coral);
        box-shadow: 4px 4px 0 var(--ink);
        font-family: var(--font-display);
        font-size: 17px;
        font-weight: 800;
    }

    body.menu-open .mobile-booking,
    .back-to-top {
        display: none;
    }
}

@media (max-width: 389.98px) {
    .color-brand__name {
        max-width: 115px;
    }

    .color-brand small {
        display: none;
    }

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

    .service-tile > i {
        display: none;
    }
}

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

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