/* ==========================================================================
   THE NAIL SPOT NG — Design System v2
   A ground-up rebuild. No Bootstrap, no jQuery, no template cruft.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
    /* Brand ------------------------------------------------------------- */
    --ink: #1E1719;
    --ink-2: #3B2E32;
    --ink-3: #6B595E;
    --muted: #8C7A7F;

    --cream: #FBF7F4;
    --cream-2: #F5EDE8;
    --blush: #F0DCD3;
    --blush-2: #E5C7BA;

    --accent: #B26A50;
    --accent-dark: #96543D;
    --accent-soft: #F6E7E0;

    --gold: #C29A5B;
    --line: #E8DCD5;
    --white: #FFFFFF;

    /* Surfaces ---------------------------------------------------------- */
    --bg: var(--cream);
    --surface: var(--white);
    --surface-alt: var(--cream-2);
    --dark: #1A1315;

    /* Type -------------------------------------------------------------- */
    --font-display: "Cormorant Garamond", "Times New Roman", serif;
    --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --fs-hero: clamp(2.85rem, 7.2vw, 6.5rem);
    --fs-h1: clamp(2.4rem, 5.2vw, 4.25rem);
    --fs-h2: clamp(2rem, 4.2vw, 3.4rem);
    --fs-h3: clamp(1.4rem, 2.2vw, 2rem);
    --fs-h4: clamp(1.15rem, 1.6vw, 1.4rem);
    --fs-lead: clamp(1.02rem, 1.35vw, 1.18rem);
    --fs-body: 1rem;
    --fs-sm: 0.875rem;
    --fs-xs: 0.775rem;

    /* Space ------------------------------------------------------------- */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.5rem;
    --sp-6: 2rem;
    --sp-7: 3rem;
    --sp-8: 4rem;
    --sp-9: 6rem;
    --section-y: clamp(4rem, 9vw, 8rem);

    /* Shape ------------------------------------------------------------- */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 24px;
    --r-xl: 34px;
    --r-pill: 999px;

    --shadow-sm: 0 2px 10px rgba(30, 23, 25, .05);
    --shadow-md: 0 10px 34px rgba(30, 23, 25, .08);
    --shadow-lg: 0 26px 70px rgba(30, 23, 25, .13);

    --ease: cubic-bezier(.22, .61, .36, 1);
    --t-fast: .2s var(--ease);
    --t: .38s var(--ease);

    --wrap: 1240px;
    --header-h: 84px;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink-2);
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.68;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.is-locked {
    overflow: hidden;
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.015em;
    margin: 0 0 var(--sp-4);
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0;
}

p {
    margin: 0 0 var(--sp-4);
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--t-fast);
}

a:hover {
    color: var(--accent-dark);
}

ul,
ol {
    margin: 0 0 var(--sp-4);
    padding-left: 1.15rem;
}

button {
    font: inherit;
    cursor: pointer;
    border: 0;
    background: none;
    color: inherit;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection {
    background: var(--blush);
    color: var(--ink);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    background: var(--ink);
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: 0 0 var(--r-sm) 0;
}

.skip-link:focus {
    left: 0;
    color: #fff;
}

/* --------------------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: clamp(1.15rem, 4vw, 2.5rem);
}

.wrap--wide {
    max-width: 1480px;
}

.wrap--narrow {
    max-width: 820px;
}

.section {
    padding-block: var(--section-y);
    position: relative;
}

.section--tight {
    padding-block: clamp(3rem, 6vw, 5rem);
}

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

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

.section--dark {
    background: var(--dark);
    color: rgba(255, 255, 255, .74);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: #fff;
}

.grid {
    display: grid;
    gap: var(--sp-5);
}

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

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

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

.flex {
    display: flex;
}

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

.center {
    align-items: center;
}

.wrap-gap {
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-inline: auto;
}

.mt-5 {
    margin-top: var(--sp-5);
}

.mt-6 {
    margin-top: var(--sp-6);
}

.mt-7 {
    margin-top: var(--sp-7);
}

.mt-8 {
    margin-top: var(--sp-8);
}

.hide-lg {
    display: none;
}

/* --------------------------------------------------------------------------
   4. TYPE HELPERS / SECTION HEADS
   -------------------------------------------------------------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--sp-3);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: .6;
}

.eyebrow--center::after {
    content: "";
    width: 26px;
    height: 1px;
    background: currentColor;
    opacity: .6;
}

.section--dark .eyebrow {
    color: var(--blush-2);
}

.lead {
    font-size: var(--fs-lead);
    color: var(--ink-3);
    max-width: 58ch;
}

.section--dark .lead {
    color: rgba(255, 255, 255, .7);
}

.sec-head {
    max-width: 640px;
    margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}

.sec-head--center {
    margin-inline: auto;
    text-align: center;
}

.sec-head--center .lead {
    margin-inline: auto;
}

.sec-head h2 {
    margin-bottom: var(--sp-4);
}

.sec-head--split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--sp-6);
    flex-wrap: wrap;
}

.sec-head--split>div:first-child {
    max-width: 620px;
}

.accent-word {
    font-style: italic;
    color: var(--accent);
}

.script {
    font-family: var(--font-display);
    font-style: italic;
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    --btn-bg: var(--ink);
    --btn-fg: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1rem 1.9rem;
    background: var(--btn-bg);
    color: var(--btn-fg);
    border-radius: var(--r-pill);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}

.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: translateY(101%);
    transition: transform var(--t);
    z-index: -1;
    border-radius: inherit;
}

.btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:hover::after {
    transform: translateY(0);
}

.btn i,
.btn svg {
    font-size: .9em;
    transition: transform var(--t);
}

.btn:hover i,
.btn:hover svg {
    transform: translateX(3px);
}

.btn--accent {
    --btn-bg: var(--accent);
}

.btn--accent::after {
    background: var(--ink);
}

.btn--light {
    --btn-bg: #fff;
    --btn-fg: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn--ghost {
    --btn-bg: transparent;
    --btn-fg: var(--ink);
    border: 1px solid var(--line);
}

.btn--ghost:hover {
    border-color: var(--accent);
}

.section--dark .btn--ghost {
    --btn-fg: #fff;
    border-color: rgba(255, 255, 255, .25);
}

.btn--sm {
    padding: .7rem 1.35rem;
    font-size: var(--fs-xs);
}

.btn--lg {
    padding: 1.2rem 2.4rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 3px;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-size: 0 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    transition: background-size var(--t), color var(--t-fast);
}

.link-arrow:hover {
    color: var(--accent);
    background-size: 100% 1px;
}

.link-arrow i {
    transition: transform var(--t);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, .7);
    font-size: var(--fs-xs);
    letter-spacing: .04em;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-5);
    min-height: 42px;
}

.topbar a {
    color: rgba(255, 255, 255, .78);
}

.topbar a:hover {
    color: #fff;
}

.topbar-list {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-list i {
    color: var(--blush-2);
    margin-right: .45rem;
}

.topbar-socials {
    display: flex;
    gap: var(--sp-4);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 244, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--t), border-color var(--t), background var(--t);
}

.site-header.is-stuck {
    background: rgba(251, 247, 244, .96);
    border-color: var(--line);
    box-shadow: 0 4px 24px rgba(30, 23, 25, .05);
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
    min-height: var(--header-h);
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-shrink: 0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ink);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: .02em;
    flex-shrink: 0;
}

.brand-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.05;
    letter-spacing: -.01em;
}

.brand-sub {
    display: block;
    font-size: .58rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}

.nav {
    display: none;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.2vw, 2rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav a {
    position: relative;
    color: var(--ink-2);
    font-size: .92rem;
    font-weight: 500;
    padding: .35rem 0;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--t);
}

.nav a:hover::after,
.nav li.active a::after {
    width: 100%;
}

.nav li.active a {
    color: var(--ink);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.burger {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    gap: 5px;
    background: var(--white);
    transition: background var(--t), border-color var(--t);
}

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform var(--t), opacity var(--t);
}

.burger:hover {
    border-color: var(--accent);
}

/* Mobile drawer ------------------------------------------------------- */
.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(380px, 86vw);
    background: var(--white);
    z-index: 200;
    transform: translateX(102%);
    transition: transform .45s var(--ease);
    display: flex;
    flex-direction: column;
    padding: var(--sp-5) var(--sp-5) var(--sp-6);
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}

.drawer.is-open {
    transform: translateX(0);
}

.drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--sp-6);
}

.drawer-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream-2);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: var(--ink);
    transition: background var(--t), transform var(--t);
}

.drawer-close:hover {
    background: var(--blush);
    transform: rotate(90deg);
}

.drawer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.drawer-nav li+li {
    border-top: 1px solid var(--line);
}

.drawer-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .95rem 0;
    font-family: var(--font-display);
    font-size: 1.55rem;
    color: var(--ink);
}

.drawer-nav a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.drawer-foot {
    margin-top: auto;
    padding-top: var(--sp-6);
}

.drawer-foot .btn {
    width: 100%;
}

.drawer-meta {
    margin-top: var(--sp-5);
    font-size: var(--fs-sm);
    color: var(--ink-3);
    line-height: 1.9;
}

.drawer-meta i {
    color: var(--accent);
    width: 18px;
    margin-right: .5rem;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 19, 21, .45);
    backdrop-filter: blur(3px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
}

.overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 60vw;
    height: 60vw;
    max-width: 780px;
    max-height: 780px;
    right: -18vw;
    top: -22vw;
    background: radial-gradient(circle, var(--blush) 0%, rgba(240, 220, 211, 0) 68%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

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

.hero-grid {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: center;
}

.hero-title {
    font-size: var(--fs-hero);
    line-height: .98;
    letter-spacing: -.025em;
    margin-bottom: var(--sp-5);
}

.hero-title .accent-word {
    display: inline-block;
}

.hero-lead {
    font-size: var(--fs-lead);
    color: var(--ink-3);
    max-width: 46ch;
    margin-bottom: var(--sp-6);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-4);
    align-items: center;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--sp-5);
    margin-top: clamp(2.25rem, 4vw, 3rem);
    padding-top: clamp(1.75rem, 3vw, 2.25rem);
    border-top: 1px solid var(--line);
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-num {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
}

.proof-label {
    font-size: var(--fs-xs);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--line);
}

/* Hero collage --------------------------------------------------------- */
.hero-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.hero-media figure {
    margin: 0;
    overflow: hidden;
    background: var(--cream-2);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}

.hero-media figure:hover img {
    transform: scale(1.05);
}

.hero-img-1 {
    grid-row: span 2;
    border-radius: 200px 200px var(--r-lg) var(--r-lg);
    aspect-ratio: 3/4.6;
}

.hero-img-2 {
    border-radius: var(--r-lg);
    aspect-ratio: 1/1;
}

.hero-img-3 {
    border-radius: var(--r-lg) var(--r-lg) 200px 200px;
    aspect-ratio: 3/3.2;
}

.hero-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 50%;
    width: clamp(96px, 11vw, 130px);
    height: clamp(96px, 11vw, 130px);
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
    padding: .5rem;
}

.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--ink);
    line-height: 1;
}

.hero-badge span {
    font-size: .58rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

.stars {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   8. MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
    background: var(--ink);
    color: var(--blush);
    padding-block: clamp(.9rem, 2vw, 1.35rem);
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: slide-left 34s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track span {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.9rem);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
}

.marquee-track span::after {
    content: "✦";
    font-style: normal;
    font-size: .7em;
    color: var(--accent);
}

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

/* --------------------------------------------------------------------------
   9. CARDS — SERVICES
   -------------------------------------------------------------------------- */
.card {
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-2);
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.service-card:hover .service-card__media img {
    transform: scale(1.07);
}

.service-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, .93);
    color: var(--ink);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .4rem .85rem;
    border-radius: var(--r-pill);
}

.service-card__body {
    padding: clamp(1.35rem, 2.5vw, 1.85rem);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card__body h3 {
    font-size: 1.5rem;
    margin-bottom: .6rem;
}

.service-card__body p {
    color: var(--ink-3);
    font-size: .95rem;
    margin-bottom: var(--sp-5);
}

.service-card__foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--line);
}

.price-from {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--ink);
    font-weight: 600;
}

.price-from small {
    font-family: var(--font-body);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    font-weight: 500;
}

/* Feature (icon) cards -------------------------------------------------- */
.feature {
    text-align: left;
    padding: clamp(1.5rem, 3vw, 2.15rem);
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    height: 100%;
    transition: transform var(--t), box-shadow var(--t), background var(--t);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    margin-bottom: var(--sp-4);
    transition: background var(--t), color var(--t);
}

.feature:hover .feature-icon {
    background: var(--accent);
    color: #fff;
}

.feature h4 {
    margin-bottom: .5rem;
}

.feature p {
    font-size: .92rem;
    color: var(--ink-3);
    margin: 0;
}

.section--dark .feature {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .09);
}

.section--dark .feature p {
    color: rgba(255, 255, 255, .65);
}

/* --------------------------------------------------------------------------
   10. SPLIT / ABOUT
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: center;
}

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

.split-media {
    position: relative;
}

.split-media img {
    width: 100%;
    border-radius: var(--r-lg);
    object-fit: cover;
}

.media-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
}

.media-stack img:first-child {
    grid-column: span 2;
    aspect-ratio: 16/10;
}

.media-stack img:not(:first-child) {
    aspect-ratio: 1/1;
}

.media-frame {
    position: relative;
}

.media-frame::after {
    content: "";
    position: absolute;
    inset: 16px -16px -16px 16px;
    border: 1px solid var(--blush-2);
    border-radius: var(--r-lg);
    z-index: -1;
}

.floating-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: var(--r-md);
    padding: 1.1rem 1.4rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .9rem;
    max-width: 260px;
}

.floating-card i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.floating-card strong {
    display: block;
    color: var(--ink);
    font-size: .95rem;
    line-height: 1.3;
}

.floating-card span {
    font-size: var(--fs-xs);
    color: var(--muted);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--sp-6);
    display: grid;
    gap: .8rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: var(--ink-2);
    font-size: .97rem;
}

.check-list i {
    color: var(--accent);
    margin-top: .35rem;
    font-size: .8rem;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. PRICE LIST
   -------------------------------------------------------------------------- */
.price-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 3.5vw, 2.75rem);
    height: 100%;
}

.price-panel h3 {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--line);
    margin-bottom: var(--sp-5);
    font-size: 1.65rem;
}

.price-panel h3 i {
    color: var(--accent);
    font-size: 1rem;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: .75rem;
    padding: .8rem 0;
}

.price-row+.price-row {
    border-top: 1px dashed var(--line);
}

.price-row__name {
    color: var(--ink);
    font-weight: 500;
    font-size: 1rem;
}

.price-row__name small {
    display: block;
    font-size: var(--fs-xs);
    color: var(--muted);
    font-weight: 400;
    letter-spacing: .01em;
    margin-top: 2px;
}

.price-row__dots {
    flex: 1;
    border-bottom: 1px dotted var(--blush-2);
    transform: translateY(-4px);
    min-width: 20px;
}

.price-row__price {
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

.price-note {
    background: var(--accent-soft);
    border-radius: var(--r-md);
    padding: 1rem 1.25rem;
    font-size: .9rem;
    color: var(--ink-2);
    display: flex;
    gap: .75rem;
    align-items: flex-start;
}

.price-note i {
    color: var(--accent);
    margin-top: .25rem;
}

/* --------------------------------------------------------------------------
   12. GALLERY
   -------------------------------------------------------------------------- */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.filter-btn {
    padding: .6rem 1.3rem;
    border-radius: var(--r-pill);
    border: 1px solid var(--line);
    background: var(--white);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--ink-3);
    transition: all var(--t-fast);
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

.masonry {
    columns: 3;
    column-gap: var(--sp-4);
}

.masonry .gal-item {
    break-inside: avoid;
    margin-bottom: var(--sp-4);
}

.gal-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    display: block;
    background: var(--cream-2);
    cursor: zoom-in;
}

.gal-item img {
    width: 100%;
    transition: transform 1s var(--ease), filter var(--t);
}

.gal-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 19, 21, .55), rgba(26, 19, 21, 0) 55%);
    opacity: 0;
    transition: opacity var(--t);
}

.gal-item:hover::after {
    opacity: 1;
}

.gal-item:hover img {
    transform: scale(1.05);
}

.gal-item__label {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: .04em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--t), transform var(--t);
}

.gal-item:hover .gal-item__label {
    opacity: 1;
    transform: translateY(0);
}

.gal-item.is-hidden {
    display: none;
}

/* Lightbox -------------------------------------------------------------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(20, 14, 16, .93);
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t), visibility var(--t);
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 100%;
    max-height: 86vh;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
}

.lb-btn {
    position: absolute;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    transition: background var(--t);
}

.lb-btn:hover {
    background: var(--accent);
}

.lb-close {
    top: 22px;
    right: 22px;
}

.lb-prev {
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
}

.lb-next {
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS
   -------------------------------------------------------------------------- */
.quote-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border: 1px solid var(--line);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: .6;
    color: var(--blush);
    margin-bottom: .5rem;
}

.quote-card p {
    color: var(--ink-2);
    font-size: 1.02rem;
    margin-bottom: var(--sp-5);
}

.quote-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: var(--sp-4);
    border-top: 1px solid var(--line);
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.quote-foot strong {
    display: block;
    color: var(--ink);
    font-size: .95rem;
}

.quote-foot span {
    font-size: var(--fs-xs);
    color: var(--muted);
}

.slider {
    position: relative;
}

.slider-track {
    display: flex;
    gap: var(--sp-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track>* {
    scroll-snap-align: start;
    flex: 0 0 min(100%, 380px);
}

.slider-nav {
    display: flex;
    gap: .6rem;
    margin-top: var(--sp-5);
    justify-content: center;
}

.slider-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    display: grid;
    place-items: center;
    transition: all var(--t-fast);
}

.slider-nav button:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}

/* --------------------------------------------------------------------------
   14. FORMS
   -------------------------------------------------------------------------- */
.field {
    position: relative;
    margin-bottom: var(--sp-4);
}

.field label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: .5rem;
}

.input,
select.input,
textarea.input {
    width: 100%;
    padding: .95rem 1.15rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    appearance: none;
}

.input::placeholder {
    color: #B6A6A9;
}

.input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

textarea.input {
    min-height: 140px;
    resize: vertical;
}

select.input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B595E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 12px;
    padding-right: 2.6rem;
    cursor: pointer;
}

.form-grid {
    display: grid;
    gap: 0 var(--sp-4);
}

.form-note {
    font-size: var(--fs-xs);
    color: var(--muted);
    margin-top: var(--sp-3);
}

.form-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 3.5vw, 2.75rem);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.form-status {
    display: none;
    margin-top: var(--sp-4);
    padding: .85rem 1.1rem;
    border-radius: var(--r-md);
    font-size: .9rem;
    background: var(--accent-soft);
    color: var(--ink-2);
}

.form-status.is-visible {
    display: block;
}

/* --------------------------------------------------------------------------
   15. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.accordion {
    display: grid;
    gap: var(--sp-3);
}

.acc-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: box-shadow var(--t), border-color var(--t);
}

.acc-item.is-open {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.acc-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    padding: 1.15rem 1.4rem;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
}

.acc-head i {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: .75rem;
    transition: transform var(--t), background var(--t), color var(--t);
}

.acc-item.is-open .acc-head i {
    transform: rotate(180deg);
    background: var(--accent);
    color: #fff;
}

.acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s var(--ease);
}

.acc-item.is-open .acc-panel {
    grid-template-rows: 1fr;
}

.acc-panel>div {
    overflow: hidden;
}

.acc-panel p {
    padding: 0 1.4rem 1.35rem;
    color: var(--ink-3);
    font-size: .95rem;
    margin: 0;
}

/* --------------------------------------------------------------------------
   16. STEPS / PROCESS
   -------------------------------------------------------------------------- */
.steps {
    counter-reset: step;
    display: grid;
    gap: var(--sp-5);
}

.step {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    counter-increment: step;
    transition: transform var(--t), box-shadow var(--t);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step::before {
    content: "0" counter(step);
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--blush-2);
    line-height: 1;
    display: block;
    margin-bottom: var(--sp-3);
    transition: color var(--t);
}

.step:hover::before {
    color: var(--accent);
}

.step h4 {
    margin-bottom: .45rem;
}

.step p {
    font-size: .93rem;
    color: var(--ink-3);
    margin: 0;
}

/* --------------------------------------------------------------------------
   17. PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
    padding-block: clamp(3.5rem, 8vw, 6.5rem);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 46vw;
    height: 46vw;
    max-width: 620px;
    max-height: 620px;
    left: 50%;
    top: -30%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(178, 106, 80, .28) 0%, rgba(178, 106, 80, 0) 65%);
    pointer-events: none;
}

.page-hero .wrap {
    position: relative;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: var(--sp-3);
}

.page-hero p {
    color: rgba(255, 255, 255, .66);
    max-width: 56ch;
    margin-inline: auto;
}

.crumbs {
    display: flex;
    justify-content: center;
    gap: .6rem;
    list-style: none;
    padding: 0;
    margin: var(--sp-5) 0 0;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .5);
}

.crumbs a {
    color: var(--blush-2);
}

.crumbs li+li::before {
    content: "/";
    margin-right: .6rem;
    opacity: .5;
}

/* --------------------------------------------------------------------------
   18. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
    position: relative;
    background: var(--ink);
    color: rgba(255, 255, 255, .74);
    border-radius: var(--r-xl);
    padding: clamp(2.5rem, 6vw, 4.5rem);
    overflow: hidden;
    text-align: center;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(178, 106, 80, .35), transparent 55%),
        radial-gradient(ellipse at 85% 100%, rgba(194, 154, 91, .22), transparent 50%);
    pointer-events: none;
}

.cta-band>* {
    position: relative;
}

.cta-band h2 {
    color: #fff;
    max-width: 18ch;
    margin-inline: auto;
}

.cta-band p {
    color: rgba(255, 255, 255, .68);
    max-width: 52ch;
    margin-inline: auto;
    margin-bottom: var(--sp-6);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .62);
    padding-top: clamp(3.5rem, 7vw, 5.5rem);
    font-size: .94rem;
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    letter-spacing: .04em;
    margin-bottom: var(--sp-5);
}

.footer-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer-brand .brand-mark {
    background: var(--accent);
}

.footer-brand .brand-name {
    color: #fff;
}

.footer-brand p {
    margin-top: var(--sp-4);
    max-width: 34ch;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .7rem;
}

.footer-list a {
    color: rgba(255, 255, 255, .62);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.footer-list a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--t);
}

.footer-list a:hover {
    color: #fff;
}

.footer-list a:hover::before {
    width: 12px;
}

.footer-contact li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent);
    margin-top: .35rem;
    width: 16px;
    flex-shrink: 0;
}

.footer-contact strong {
    display: block;
    color: #fff;
    font-weight: 500;
}

.socials {
    display: flex;
    gap: .6rem;
    margin-top: var(--sp-5);
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .16);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .78);
    transition: all var(--t);
}

.socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-block: var(--sp-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .6);
}

.footer-bottom a:hover {
    color: #fff;
}

/* Newsletter ------------------------------------------------------------ */
.newsletter {
    display: flex;
    gap: .5rem;
    margin-top: var(--sp-4);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--r-pill);
    padding: .3rem .3rem .3rem 1.1rem;
}

.newsletter input {
    flex: 1;
    min-width: 0;
    background: none;
    border: 0;
    color: #fff;
    font-family: inherit;
    font-size: .9rem;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.newsletter input:focus {
    outline: none;
}

.newsletter button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background var(--t);
}

.newsletter button:hover {
    background: #fff;
    color: var(--ink);
}

/* --------------------------------------------------------------------------
   20. FLOATING ACTIONS
   -------------------------------------------------------------------------- */
.fab-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, .38);
    transition: transform var(--t);
}

.fab-wa:hover {
    transform: scale(1.08);
    color: #fff;
}

.to-top {
    position: fixed;
    right: 20px;
    bottom: 88px;
    z-index: 90;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--t);
}

.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.to-top:hover {
    background: var(--accent);
    color: #fff;
}

/* Mobile sticky booking bar --------------------------------------------- */
.mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: flex;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(30, 23, 25, .08);
    padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom));
    gap: .5rem;
}

.mobile-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: .66rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
    padding: .35rem 0;
}

.mobile-bar a i {
    font-size: 1.05rem;
    color: var(--accent);
}

.mobile-bar a.primary {
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-pill);
    flex-direction: row;
    gap: .4rem;
    align-items: center;
    justify-content: center;
    padding: .8rem 1rem;
    font-size: .72rem;
}

.mobile-bar a.primary i {
    color: #fff;
}

/* --------------------------------------------------------------------------
   21. MOTION
   -------------------------------------------------------------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}

[data-reveal].is-in {
    opacity: 1;
    transform: none;
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* --------------------------------------------------------------------------
   22. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .masonry {
        columns: 2;
    }

    .split--reverse .split-media {
        order: 0;
    }
}

@media (max-width: 767px) {
    :root {
        --header-h: 72px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .masonry {
        columns: 1;
    }

    body {
        padding-bottom: 68px;
    }

    .fab-wa {
        bottom: 84px;
    }

    .to-top {
        bottom: 150px;
    }

    .floating-card {
        left: 0;
        bottom: -18px;
        padding: .85rem 1.1rem;
    }

    .media-frame::after {
        display: none;
    }

    .sec-head--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-proof {
        gap: var(--sp-4) var(--sp-5);
    }

    .proof-divider {
        display: none;
    }

    .btn {
        padding: .95rem 1.6rem;
    }
}

@media (min-width: 768px) {
    .form-grid--2 {
        grid-template-columns: 1fr 1fr;
    }

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

@media (min-width: 992px) {
    .hide-lg {
        display: block;
    }

    .nav {
        display: block;
    }

    .burger {
        display: none;
    }

    .mobile-bar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .fab-wa {
        right: 26px;
        bottom: 26px;
    }

    .to-top {
        right: 32px;
        bottom: 94px;
    }

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

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

    .split--60 {
        grid-template-columns: 1.25fr 1fr;
    }

    .steps {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .masonry {
        columns: 3;
    }
}

@media (max-width: 991px) {
    .topbar .wrap {
        justify-content: center;
    }

    .topbar-list li:not(:first-child) {
        display: none;
    }

    .topbar-socials {
        display: none;
    }
}
