/* =========================================================
   KRUNCH FITNESS
   MASTER STYLESHEET
   Version: Final Foundation
   ========================================================= */


/* =========================================================
   01. ROOT / DESIGN TOKENS
   ========================================================= */

:root {

    /* Brand */

    --krunch-yellow: #ffd400;
    --krunch-yellow-light: #ffe34d;
    --krunch-yellow-dark: #e5bd00;

    /* Core */

    --black: #0a0a0a;
    --black-soft: #151515;
    --black-muted: #252525;

    --white: #ffffff;
    --off-white: #f7f7f5;
    --grey-50: #fafafa;
    --grey-100: #f1f1ef;
    --grey-200: #e4e4e1;
    --grey-300: #d1d1cd;
    --grey-500: #73736f;
    --grey-700: #383836;

    /* Typography */

    --font-display:
        "Barlow Condensed",
        Impact,
        Haettenschweiler,
        "Arial Narrow",
        sans-serif;

    --font-body:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    /* Layout */

    --container: 1440px;
    --container-narrow: 1100px;

    --gutter: clamp(20px, 4vw, 64px);

    /* Radius */

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Shadows */

    --shadow-soft:
        0 10px 40px rgba(0, 0, 0, 0.07);

    --shadow-card:
        0 20px 60px rgba(0, 0, 0, 0.10);

    --shadow-heavy:
        0 30px 90px rgba(0, 0, 0, 0.16);

    /* Motion */

    --ease:
        cubic-bezier(0.22, 1, 0.36, 1);

    --ease-fast:
        cubic-bezier(0.4, 0, 0.2, 1);

    --transition-fast:
        180ms var(--ease-fast);

    --transition:
        350ms var(--ease);

    --transition-slow:
        650ms var(--ease);

}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;

    background: var(--white);

    overflow-x: hidden;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


body {
    margin: 0;
    padding: 0;

    min-width: 320px;

    background: var(--white);
    color: var(--black);

    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}


body,
button,
input,
textarea,
select {
    font-family: var(--font-body);
}


img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}


img {
    height: auto;
}


iframe {
    display: block;
    max-width: 100%;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


button {
    border: 0;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
a {
    touch-action: manipulation;
}


ul,
ol {
    margin: 0;
    padding: 0;
}


p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 0.92;
}


::selection {
    background: var(--krunch-yellow);
    color: var(--black);
}


/* =========================================================
   03. ACCESSIBILITY
   ========================================================= */

:focus-visible {
    outline: 3px solid var(--krunch-yellow);
    outline-offset: 4px;
}


.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================================
   04. GLOBAL CONTAINER
   ========================================================= */

.container {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    margin-inline: auto;
}


.container-narrow {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container-narrow)
    );

    margin-inline: auto;
}


/* =========================================================
   05. GLOBAL SECTIONS
   ========================================================= */

.section {
    position: relative;

    padding-block:
        clamp(60px, 7vw, 110px);

    background: var(--white);

    isolation: isolate;
}


.section-soft {
    background: var(--off-white);
}


.section-yellow {
    background: var(--krunch-yellow);
    color: var(--black);
}


.section-black {
    background: var(--black);
    color: var(--white);
}


/* =========================================================
   06. TYPOGRAPHY
   ========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: var(--black);

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.16em;
    line-height: 1.2;

    text-transform: uppercase;
}


.eyebrow::before {
    content: "";

    display: block;

    width: 28px;
    height: 4px;

    background: var(--krunch-yellow);

    flex: 0 0 auto;
}


.section-yellow .eyebrow::before {
    background: var(--black);
}


h1,
h2 {
    margin-bottom: 0;

    font-size:
        clamp(38px, 5.5vw, 100px);

    text-transform: uppercase;
}


h3 {
    margin-bottom: 0;

    font-size:
        clamp(25px, 3.2vw, 58px);

    text-transform: uppercase;
}


h4 {
    font-size:
        clamp(14px, 3vw, 36px);
}


p {
    margin-bottom: 1.2rem;

    color: var(--grey-700);
}


p:last-child {
    margin-bottom: 0;
}


.section-black p {
    color: rgba(255, 255, 255, 0.72);
}


.section-yellow p {
    color: rgba(10, 10, 10, 0.72);
}


/* =========================================================
   07. SECTION HEADER
   ========================================================= */

.section-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(280px, 0.7fr);

    gap:
        clamp(30px, 4vw, 60px);

    align-items: start;

    margin-bottom:
        clamp(25px, 3vw, 45px);
}


.section-header > p {
    max-width: 560px;

    margin-bottom: 0;

    font-size:
        clamp(15px, 1.4vw, 18px);

    line-height: 1.65;
}


/* =========================================================
   08. BUTTONS
   ========================================================= */

.button {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding:
        15px 24px;

    gap: 14px;

    border: 2px solid var(--black);

    background: var(--krunch-yellow);
    color: var(--black);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 0.08em;

    line-height: 1;

    text-transform: uppercase;

    overflow: hidden;

    transition:
        transform var(--transition),
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition);
}


.button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--black);

    transform:
        translateY(102%);

    transition:
        transform var(--transition);
}


.button > * {
    position: relative;
    z-index: 2;
}


.button {
    z-index: 1;
}


.button:hover {
    color: var(--white);

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16);
}


.button:hover::before {
    transform: translateY(0);
}


.button:active {
    transform: translateY(-1px);
}


.button-dark {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}


.button-dark::before {
    background: var(--krunch-yellow);
}


.button-dark:hover {
    color: var(--black);
}


.button-small {
    min-height: 44px;

    padding:
        12px 18px;

    font-size: 10px;
}


.button span {
    font-size: 18px;

    line-height: 0;

    transition:
        transform var(--transition);
}


.button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   09. HEADER
   ========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background: var(--krunch-yellow);
    color: var(--black);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.header-inner {
    min-height: 82px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 28px;
}


.brand {
    display: inline-flex;

    align-items: center;

    flex: 0 0 auto;

    line-height: 0;
}


.brand-logo {
    display: block;

    width: 180px;
    height: auto;

    max-height: 60px;

    object-fit: contain;
    object-position: left center;

    transition:
        transform var(--transition);
}


.brand:hover .brand-logo {
    transform: scale(1.025);
}


.main-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap:
        clamp(18px, 2.6vw, 42px);

    margin-left: auto;
}


.nav-link {
    position: relative;

    padding:
        10px 0;

    color: var(--black);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.08em;

    line-height: 1;

    text-transform: uppercase;
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 2px;

    height: 2px;

    background: var(--black);

    transform:
        scaleX(0);

    transform-origin: right;

    transition:
        transform var(--transition);
}


.nav-link:hover::after,
.nav-link.is-active::after {
    transform:
        scaleX(1);

    transform-origin: left;
}


.header-actions {
    display: flex;

    align-items: center;

    gap: 12px;
}


.header-actions .button {
    border-color: var(--black);
}


.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;

    background: transparent;

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 23px;
    height: 2px;

    background: var(--black);

    transition:
        transform var(--transition),
        opacity var(--transition);
}


.menu-toggle.is-open span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.is-open span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* =========================================================
   10. PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: flex-end;

    padding-block:
        clamp(80px, 10vw, 140px);

    background:
        var(--white);

    overflow: hidden;
}


.page-hero::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width:
        clamp(180px, 28vw, 500px);

    height:
        clamp(180px, 28vw, 500px);

    background: var(--krunch-yellow);

    border-radius: 0 0 0 100%;

    z-index: -1;
}


.page-hero::after {
    content: "";

    position: absolute;

    right:
        clamp(25px, 6vw, 90px);

    bottom:
        clamp(30px, 5vw, 70px);

    width:
        clamp(90px, 10vw, 180px);

    aspect-ratio: 1;

    border:
        3px solid var(--black);

    border-radius: 50%;

    opacity: 0.08;

    z-index: -1;
}


.page-hero .container {
    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );
}


.page-hero h1 {
    max-width: 1000px;
}


.page-hero-description {
    max-width: 640px;

    margin-top: 35px;

    margin-bottom: 0;

    font-size:
        clamp(16px, 1.7vw, 22px);

    line-height: 1.65;
}


.page-hero-compact {
    min-height: auto;

    padding-block:
        clamp(70px, 8vw, 120px);
}


/* =========================================================
   11. ABOUT INTRO
   ========================================================= */

.about-intro {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(220px, 0.5fr);

    gap:
        clamp(45px, 10vw, 170px);

    align-items: start;
}


.about-intro-copy {
    max-width: 720px;
}


.about-intro-copy p {
    font-size:
        clamp(17px, 1.6vw, 22px);

    line-height: 1.75;
}


.about-intro-stat {
    padding:
        clamp(28px, 4vw, 55px);

    border-top:
        6px solid var(--black);

    background: var(--krunch-yellow);
}


.stat-number {
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-display);

    font-size:
        clamp(80px, 11vw, 170px);

    font-weight: 900;

    line-height: 0.8;

    letter-spacing: -0.05em;
}


.stat-label {
    display: block;

    max-width: 180px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.1em;

    line-height: 1.4;

    text-transform: uppercase;
}


/* =========================================================
   12. SPLIT SECTIONS
   ========================================================= */

.split-section {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap:
        clamp(45px, 7vw, 110px);

    align-items: center;
}


.split-media {
    position: relative;

    overflow: hidden;

    min-width: 0;

    background: var(--grey-100);
}


.split-media::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 42%;
    height: 8px;

    background: var(--krunch-yellow);
}


.split-media img {
    width: 100%;
    height: 100%;

    min-height: 500px;

    object-fit: cover;

    transition:
        transform 900ms var(--ease);
}


.split-media:hover img {
    transform: scale(1.035);
}


.split-content {
    max-width: 620px;
}


.split-content p {
    margin-top: 30px;

    font-size:
        clamp(16px, 1.4vw, 19px);

    line-height: 1.8;
}


/* =========================================================
   13. NUMBERED LIST
   ========================================================= */

.numbered-list {
    list-style: none;

    border-top:
        1px solid var(--grey-200);
}


.numbered-item {
    display: grid;

    grid-template-columns:
        100px
        minmax(0, 1fr);

    gap:
        clamp(25px, 5vw, 80px);

    padding-block:
        clamp(30px, 4vw, 55px);

    border-bottom:
        1px solid var(--grey-200);
}


.numbered-item-number {
    font-family: var(--font-display);

    font-size:
        clamp(22px, 3vw, 36px);

    font-weight: 800;

    line-height: 1;

    color: var(--grey-500);
}


.numbered-item h3 {
    margin-bottom: 15px;

    font-size:
        clamp(30px, 4vw, 52px);
}


.numbered-item p {
    max-width: 680px;

    margin-bottom: 0;

    font-size:
        clamp(15px, 1.3vw, 18px);

    line-height: 1.75;
}


/* =========================================================
   14. LOCATION CARDS
   ========================================================= */

.locations-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        clamp(15px, 2vw, 30px);
}


.location-card {
    position: relative;

    min-width: 0;

    min-height: 570px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background: var(--black);

    color: var(--white);
}


.location-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.48) 42%,
            rgba(0, 0, 0, 0.04) 78%
        );

    z-index: 1;
}


.location-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.9;

    transition:
        transform 800ms var(--ease),
        opacity 500ms var(--ease);
}


.location-card:hover img {
    transform: scale(1.07);

    opacity: 0.78;
}


.location-card-content {
    position: relative;

    z-index: 2;

    width: 100%;

    padding:
        clamp(25px, 3vw, 42px);
}


.location-number {
    display: block;

    margin-bottom: 16px;

    color: var(--krunch-yellow);

    font-family: var(--font-display);

    font-size: 20px;
    font-weight: 800;

    line-height: 1;
}


.location-card h3 {
    margin-bottom: 10px;

    font-size:
        clamp(36px, 4vw, 58px);
}


.location-card p {
    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
}


.location-card-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--white);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        color var(--transition-fast);
}


.location-card-link span {
    color: var(--krunch-yellow);

    font-size: 19px;

    transition:
        transform var(--transition);
}


.location-card-link:hover {
    color: var(--krunch-yellow);
}


.location-card-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   15. LOCATION DETAIL PAGE
   ========================================================= */

.location-list {
    display: grid;

    gap:
        clamp(45px, 7vw, 110px);
}


.location-detail {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.85fr);

    background: var(--off-white);

    overflow: hidden;
}


.location-detail:nth-child(even) {
    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);
}


.location-detail:nth-child(even)
.location-detail-media {
    order: 2;
}


.location-detail:nth-child(even)
.location-detail-content {
    order: 1;
}


.location-detail-media {
    min-height: 500px;

    overflow: hidden;
}


.location-detail-media img {
    width: 100%;
    height: 100%;

    min-height: 500px;

    object-fit: cover;

    transition:
        transform 900ms var(--ease);
}


.location-detail:hover
.location-detail-media img {
    transform: scale(1.035);
}


.location-detail-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding:
        clamp(30px, 6vw, 90px);
}


.location-detail-content .location-number {
    margin-bottom: 25px;

    color: var(--black);

    font-size: 22px;
}


.location-detail-content .eyebrow {
    margin-bottom: 14px;
}


.location-detail-content h3 {
    margin-bottom: 12px;

    font-size:
        clamp(46px, 5vw, 80px);
}


.location-area {
    margin-bottom: 25px;

    color: var(--black);

    font-weight: 800;
}


.location-detail-content p:not(.location-area) {
    max-width: 500px;

    margin-bottom: 30px;

    font-size:
        clamp(15px, 1.25vw, 18px);
}


.location-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   16. MAP
   ========================================================= */

.map-wrapper {
    position: relative;

    width: 100%;

    min-height:
        clamp(380px, 55vw, 700px);

    overflow: hidden;

    background: var(--grey-200);

    border:
        1px solid var(--grey-200);

    box-shadow:
        var(--shadow-soft);
}


.map-wrapper iframe {
    width: 100%;
    height: 100%;

    min-height:
        clamp(380px, 55vw, 700px);

    border: 0;
}


.map-note {
    margin-top: 12px;

    color: var(--grey-500);

    font-size: 11px;
}


/* =========================================================
   17. LOCATION SELECTOR
   ========================================================= */

.location-selector {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    border-top:
        1px solid var(--grey-200);
}


.location-selector-item {
    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 20px;

    min-height: 100px;

    padding:
        20px 25px;

    border-bottom:
        1px solid var(--grey-200);

    border-right:
        1px solid var(--grey-200);

    background: var(--white);

    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        padding var(--transition);
}


.location-selector-item:last-child {
    border-right: 0;
}


.location-selector-item > span:first-child {
    color: var(--grey-500);

    font-family: var(--font-display);

    font-size: 18px;
}


.location-selector-item strong {
    font-family: var(--font-display);

    font-size:
        clamp(25px, 3vw, 38px);

    line-height: 1;

    text-transform: uppercase;
}


.location-selector-item > span:last-child {
    font-size: 22px;

    transition:
        transform var(--transition);
}


.location-selector-item:hover {
    padding-left: 32px;

    background: var(--krunch-yellow);
}


.location-selector-item:hover > span:last-child {
    transform: translateX(5px);
}


/* =========================================================
   18. LEGAL PAGES
   ========================================================= */

.legal-layout {
    display: grid;

    grid-template-columns:
        250px
        minmax(0, 1fr);

    gap:
        clamp(40px, 8vw, 130px);

    align-items: start;
}


.legal-sidebar {
    position: sticky;

    top: 30px;

    padding-top: 8px;
}


.legal-nav {
    display: flex;

    flex-direction: column;

    margin-top: 15px;
}


.legal-nav a {
    padding:
        11px 0;

    border-bottom:
        1px solid var(--grey-200);

    color: var(--grey-500);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.04em;

    line-height: 1.35;

    text-transform: uppercase;

    transition:
        color var(--transition-fast),
        padding-left var(--transition);
}


.legal-nav a:hover {
    padding-left: 7px;

    color: var(--black);
}


.legal-content {
    width: 100%;

    max-width: 850px;
}


.legal-updated {
    display: inline-block;

    margin-bottom:
        clamp(35px, 5vw, 60px);

    padding:
        9px 13px;

    background: var(--krunch-yellow);

    color: var(--black);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


.legal-block {
    scroll-margin-top: 40px;

    padding-bottom:
        clamp(40px, 5vw, 70px);

    margin-bottom:
        clamp(40px, 5vw, 70px);

    border-bottom:
        1px solid var(--grey-200);
}


.legal-block:last-of-type {
    margin-bottom: 0;
}


.legal-block h2 {
    margin-bottom: 24px;

    font-size:
        clamp(38px, 5vw, 65px);
}


.legal-block h3 {
    margin-top: 35px;
    margin-bottom: 14px;

    font-family: var(--font-body);

    font-size: 18px;
    font-weight: 800;

    line-height: 1.3;

    letter-spacing: 0;
    text-transform: none;
}


.legal-block p {
    max-width: 760px;

    font-size:
        clamp(15px, 1.3vw, 17px);

    line-height: 1.85;
}


.legal-block ul,
.legal-block ol {
    margin:
        20px 0 25px 20px;
}


.legal-block li {
    margin-bottom: 12px;

    padding-left: 7px;

    color: var(--grey-700);

    line-height: 1.75;
}


.legal-block a {
    color: var(--black);

    font-weight: 800;

    text-decoration:
        underline;

    text-decoration-color:
        var(--krunch-yellow);

    text-decoration-thickness:
        3px;

    text-underline-offset:
        4px;
}


.legal-block a:hover {
    background: var(--krunch-yellow);

    text-decoration: none;
}


.legal-notice {
    margin-top:
        clamp(45px, 6vw, 75px);

    padding:
        clamp(25px, 4vw, 45px);

    border-left:
        6px solid var(--krunch-yellow);

    background: var(--off-white);
}


.legal-notice strong {
    display: block;

    margin-bottom: 12px;

    font-family: var(--font-display);

    font-size: 28px;

    text-transform: uppercase;
}


.legal-notice p {
    margin-bottom: 0;

    color: var(--grey-700);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   19. FOOTER
   ========================================================= */

.site-footer {
    position: relative;

    background: var(--krunch-yellow);
    color: var(--black);

    overflow: hidden;
}


.site-footer::before {
    content: "KRUNCH";

    position: absolute;

    right:
        clamp(-40px, -2vw, -10px);

    bottom:
        -0.1em;

    font-family: var(--font-display);

    font-size:
        clamp(100px, 20vw, 330px);

    font-weight: 900;

    line-height: 0.7;

    letter-spacing: -0.06em;

    opacity: 0.055;

    pointer-events: none;
}


.footer-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(280px, 1.6fr)
        repeat(3, minmax(130px, 0.65fr));

    gap:
        clamp(30px, 6vw, 70px);

    padding-block:
        10px;
}


.footer-brand {
    max-width: 390px;
}


.footer-brand .brand {
    margin-bottom: 18px;
}


.footer-brand p {
    max-width: 350px;

    color: rgba(10, 10, 10, 0.68);

    font-size: 13px;

    line-height: 1.7;
}


.footer-column {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h3 {
    margin-bottom: 20px;

    font-family: var(--font-body);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.12em;

    line-height: 1;

    text-transform: uppercase;
}


.footer-column a {
    position: relative;

    display: inline-block;

    padding:
        5px 0;

    color: rgba(10, 10, 10, 0.68);

    font-size: 13px;
    font-weight: 600;

    line-height: 1.4;

    transition:
        color var(--transition-fast),
        transform var(--transition);
}


.footer-column a:hover {
    color: var(--black);

    transform: translateX(5px);
}


.footer-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-block:
        10px;

    border-top:
        1px solid rgba(0, 0, 0, 0.15);

    color: rgba(10, 10, 10, 0.62);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.03em;
}


/* =========================================================
   20. MOBILE STICKY BUTTON
   ========================================================= */

.mobile-location-button {
    display: none;

    position: fixed;

    z-index: 900;

    left: 14px;
    right: 14px;

    bottom:
        calc(
            14px +
            env(safe-area-inset-bottom)
        );

    min-height: 54px;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 20px;

    border:
        2px solid var(--black);

    background: var(--krunch-yellow);
    color: var(--black);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.18);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}


.mobile-location-button span {
    font-size: 18px;

    line-height: 1;
}


/* =========================================================
   21. HOVER IMAGE EFFECT BASE
   ========================================================= */

@media (hover: hover) {

    .location-card,
    .location-detail,
    .split-media {
        cursor: default;
    }

}


/* =========================================================
   22. LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    :root {
        --gutter: clamp(22px, 4vw, 42px);
    }


    .header-inner {
        min-height: 76px;
    }


    .brand-logo {
        width: 160px;
        max-height: 54px;
    }


    .main-nav {
        gap: 20px;
    }


    .nav-link {
        font-size: 10px;
    }


    .header-actions .button {
        display: none;
    }


    .locations-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .location-card:last-child {
        grid-column:
            1 / -1;
    }


    .footer-main {
        grid-template-columns:
            minmax(240px, 1.5fr)
            repeat(3, minmax(120px, 0.7fr));
    }

}


/* =========================================================
   23. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .section-header {
        grid-template-columns:
            1fr;

        gap: 25px;

        align-items: start;
    }


    .section-header > p {
        max-width: 680px;
    }


    .about-intro {
        grid-template-columns:
            1fr;
    }


    .about-intro-stat {
        width: min(100%, 350px);
    }


    .split-section {
        grid-template-columns:
            1fr;
    }


    .split-content {
        max-width: 760px;
    }


    .split-media {
        order: 2;
    }


    .split-content {
        order: 1;
    }


    .split-media img {
        min-height: 420px;
    }


    .location-detail,
    .location-detail:nth-child(even) {
        grid-template-columns:
            1fr;
    }


    .location-detail:nth-child(even)
    .location-detail-media,
    .location-detail:nth-child(even)
    .location-detail-content {
        order: initial;
    }


    .location-detail-media,
    .location-detail-media img {
        min-height: 420px;
    }


    .legal-layout {
        grid-template-columns:
            1fr;
    }


    .legal-sidebar {
        position: relative;

        top: auto;

        padding: 0;

        border-bottom:
            1px solid var(--grey-200);

        padding-bottom: 25px;
    }


    .legal-nav {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0 25px;
    }


    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .footer-brand {
        grid-column:
            1 / -1;

        max-width: 600px;
    }

}


/* =========================================================
   24. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 760px) {

    :root {
        --gutter: 20px;
    }


    html {
        scroll-padding-top: 20px;
    }


    body {
        padding-bottom:
            calc(
                78px +
                env(safe-area-inset-bottom)
            );
    }


    .container {
        width:
            calc(100% - (var(--gutter) * 2));
    }


    .section {
        padding-block:
            70px;
    }


    /* ---------------------------------------------
       HEADER
    --------------------------------------------- */

    .site-header {
        position: sticky;

        top: 0;
    }


    .header-inner {
        min-height: 68px;

        gap: 12px;
    }


    .brand-logo {
        width: 140px;
        max-height: 48px;
    }


    .header-actions {
        margin-left: auto;
    }


    .menu-toggle {
        display: flex;
    }


    .main-nav {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: flex;

        align-items: stretch;

        flex-direction: column;

        gap: 0;

        margin: 0;

        padding:
            10px 20px 20px;

        background: var(--krunch-yellow);

        border-top:
            1px solid rgba(0, 0, 0, 0.08);

        box-shadow:
            0 20px 30px rgba(0, 0, 0, 0.10);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-10px);

        pointer-events: none;

        transition:
            opacity var(--transition),
            visibility var(--transition),
            transform var(--transition);
    }


    .main-nav.is-open {
        opacity: 1;
        visibility: visible;

        transform:
            translateY(0);

        pointer-events: auto;
    }


    .nav-link {
        display: block;

        padding:
            17px 5px;

        border-bottom:
            1px solid rgba(0, 0, 0, 0.12);

        font-size: 11px;
    }


    .nav-link:last-child {
        border-bottom: 0;
    }


    .nav-link::after {
        display: none;
    }


        /* ---------------------------------------------
        HERO
        --------------------------------------------- */

        .page-hero {
    min-height: 460px;

    padding-block:
        70px 80px;
}


        .page-hero::before {
            width: 220px;
            height: 220px;
        }


        .page-hero h1 {
            font-size:
                clamp(60px, 18vw, 105px);

            line-height: 0.88;
        }


        .page-hero-description {
            max-width: 100%;

            margin-top: 28px;

            font-size: 15px;

            line-height: 1.65;
        }


    /* ---------------------------------------------
       TYPOGRAPHY
    --------------------------------------------- */

    .eyebrow {
        margin-bottom: 16px;

        font-size: 9px;
    }


    .eyebrow::before {
        width: 22px;
        height: 3px;
    }


    .section h2 {
        font-size:
            clamp(54px, 17vw, 90px);

        line-height: 0.9;
    }


    /* ---------------------------------------------
       SECTION HEADER
    --------------------------------------------- */

    .section-header {
        margin-bottom: 45px;
    }


    .section-header > p {
        margin-top: 5px;

        font-size: 15px;

        line-height: 1.7;
    }


    /* ---------------------------------------------
       BUTTONS
    --------------------------------------------- */

    .button {
        width: auto;

        min-height: 52px;

        padding:
            14px 19px;

        font-size: 10px;
    }


    /* ---------------------------------------------
       ABOUT
    --------------------------------------------- */

    .about-intro-copy p {
        font-size: 16px;

        line-height: 1.75;
    }


    .about-intro-stat {
        width: 100%;

        padding: 30px;
    }


    .stat-number {
        font-size:
            clamp(85px, 28vw, 130px);
    }


    /* ---------------------------------------------
       SPLIT
    --------------------------------------------- */

    .split-section {
        gap: 45px;
    }


    .split-content p {
        margin-top: 22px;

        font-size: 15px;

        line-height: 1.75;
    }


    .split-media img {
        min-height: 350px;
    }


    /* ---------------------------------------------
       NUMBERED LIST
    --------------------------------------------- */

    .numbered-item {
        grid-template-columns:
            48px
            minmax(0, 1fr);

        gap: 18px;

        padding-block: 30px;
    }


    .numbered-item-number {
        font-size: 17px;
    }


    .numbered-item h3 {
        margin-bottom: 12px;

        font-size:
            clamp(30px, 10vw, 48px);
    }


    .numbered-item p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* ---------------------------------------------
       LOCATION CARDS
    --------------------------------------------- */

    .locations-grid {
        grid-template-columns:
            1fr;

        gap: 15px;
    }


    .location-card,
    .location-card:last-child {
        grid-column: auto;

        min-height:
            clamp(480px, 130vw, 620px);
    }


    .location-card-content {
        padding: 25px;
    }


    .location-card h3 {
        font-size:
            clamp(42px, 13vw, 62px);
    }


    /* ---------------------------------------------
       LOCATION DETAIL
    --------------------------------------------- */

    .location-list {
        gap: 50px;
    }


    .location-detail-media,
    .location-detail-media img {
        min-height:
            clamp(280px, 78vw, 430px);
    }


    .location-detail-content {
        padding: 30px 24px 35px;
    }


    .location-detail-content h3 {
        font-size:
            clamp(48px, 14vw, 72px);
    }


    .location-detail-content p:not(.location-area) {
        font-size: 15px;
    }


    .location-actions .button {
        width: 100%;
    }


    /* ---------------------------------------------
       MAP
    --------------------------------------------- */

    .map-wrapper {
        min-height: 360px;
    }


    .map-wrapper iframe {
        min-height: 360px;
    }


    /* ---------------------------------------------
       LOCATION SELECTOR
    --------------------------------------------- */

    .location-selector {
        grid-template-columns:
            1fr;
    }


    .location-selector-item {
        min-height: 80px;

        grid-template-columns:
            35px
            minmax(0, 1fr)
            auto;

        padding:
            18px 15px;

        border-right: 0;
    }


    .location-selector-item:hover {
        padding-left: 20px;
    }


    .location-selector-item strong {
        font-size:
            clamp(28px, 9vw, 38px);
    }


    /* ---------------------------------------------
       LEGAL
    --------------------------------------------- */

    .legal-nav {
        grid-template-columns:
            1fr;
    }


    .legal-nav a {
        padding-block: 12px;
    }


    .legal-content {
        max-width: 100%;
    }


    .legal-updated {
        margin-bottom: 40px;
    }


    .legal-block {
        scroll-margin-top: 90px;

        padding-bottom: 45px;

        margin-bottom: 45px;
    }


    .legal-block h2 {
        font-size:
            clamp(40px, 13vw, 62px);
    }


    .legal-block h3 {
        font-size: 17px;
    }


    .legal-block p,
    .legal-block li {
        font-size: 14px;

        line-height: 1.8;
    }


    /* ---------------------------------------------
       FOOTER
    --------------------------------------------- */

    .footer-main {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            40px 25px;
    }


    .footer-brand {
        grid-column:
            1 / -1;
    }


    .footer-brand .brand-logo {
        width: 145px;
    }


    .footer-column h3 {
        margin-bottom: 14px;
    }


    .footer-column a {
        font-size: 12px;

        padding: 6px 0;
    }


    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding-block: 17px;

        font-size: 9px;

        line-height: 1.5;
    }


    /* ---------------------------------------------
       MOBILE CTA
    --------------------------------------------- */

    .mobile-location-button {
        display: flex;
    }

}


/* =========================================================
   25. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    :root {
        --gutter: 16px;
    }


    .section {
        padding-block:
            58px;
    }


    .header-inner {
        min-height: 64px;
    }


    .brand-logo {
        width: 125px;
        max-height: 44px;
    }


    .menu-toggle {
        width: 44px;
        height: 44px;
    }


    .page-hero {
    min-height: 400px;

    padding-block:
        60px 65px;
}


    .page-hero h1 {
        font-size:
            clamp(55px, 19vw, 88px);
    }


    .section h2 {
        font-size:
            clamp(50px, 17vw, 78px);
    }


    .button {
        min-height: 50px;

        padding-inline: 17px;
    }


    .split-media img {
        min-height: 300px;
    }


    .location-card,
    .location-card:last-child {
        min-height:
            470px;
    }


    .location-card h3 {
        font-size:
            clamp(40px, 13vw, 58px);
    }


    .location-detail-content {
        padding:
            27px 20px 32px;
    }


    .location-detail-content h3 {
        font-size:
            clamp(44px, 14vw, 64px);
    }


    .map-wrapper,
    .map-wrapper iframe {
        min-height: 320px;
    }


    .legal-notice {
        padding: 24px 20px;
    }


    .footer-main {
        grid-template-columns:
            1fr;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-column {
        width: 100%;
    }


    .footer-column a {
        padding-block: 7px;
    }


    .mobile-location-button {
        left: 10px;
        right: 10px;

        bottom:
            calc(
                10px +
                env(safe-area-inset-bottom)
            );
    }

}


/* =========================================================
   26. VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    :root {
        --gutter: 14px;
    }


    .brand-logo {
        width: 115px;
    }


    .page-hero h1 {
        font-size: 53px;
    }


    .section h2 {
        font-size: 48px;
    }


    .location-card h3 {
        font-size: 38px;
    }


    .location-detail-content h3 {
        font-size: 42px;
    }


    .numbered-item {
        grid-template-columns:
            35px
            minmax(0, 1fr);

        gap: 12px;
    }

}


/* =========================================================
   28. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

}


/* =========================================================
   29. HIGH CONTRAST / FORCED COLORS
   ========================================================= */

@media (forced-colors: active) {

    .button,
    .location-selector-item,
    .legal-notice {
        border: 1px solid CanvasText;
    }


    .button::before {
        display: none;
    }


    .button:hover {
        background: Highlight;
        color: HighlightText;
    }

}


/* =========================================================
   30. PRINT
   ========================================================= */

@media print {

    body {
        background: #ffffff;
        color: #000000;

        padding: 0;
    }


    .site-header,
    .site-footer,
    .mobile-location-button,
    .menu-toggle,
    .legal-sidebar,
    .button {
        display: none !important;
    }


    .section,
    .section-soft,
    .section-yellow {
        padding-block: 30px;

        background: #ffffff !important;

        color: #000000 !important;
    }


    .page-hero {
        min-height: auto;

        padding-block: 30px;
    }


    .page-hero::before,
    .page-hero::after {
        display: none;
    }


    a {
        text-decoration: underline;
    }


    .location-card,
    .location-detail {
        break-inside: avoid;
    }

}


/* =========================================================
   27. HOMEPAGE HERO
   =========================================================
   
   Homepage hero only.
   Does NOT affect .page-hero or inner pages.
   ========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    isolation: isolate;

    background: var(--black);

    color: var(--white);
}


/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.hero-media {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: -2;
}


.hero-media::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.55) 38%,
            rgba(0, 0, 0, 0.20) 68%,
            rgba(0, 0, 0, 0.10) 100%
        );

    z-index: 1;
}


.hero-media img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center center;

    transition:
        transform 1200ms var(--ease);
}


.hero:hover .hero-media img {
    transform: scale(1.015);
}


/* ---------------------------------------------------------
   HERO CONTENT
   --------------------------------------------------------- */

.hero-content {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - (var(--gutter) * 2)),
        var(--container)
    );

    padding-block:
        90px;
}


.hero-content .eyebrow {
    color: var(--white);
}


.hero-content .eyebrow::before {
    background: var(--krunch-yellow);
}


.hero-title {
    max-width: 780px;

    margin-bottom: 0;

    color: var(--white);

    font-size:
        clamp(72px, 10vw, 170px);

    font-weight: 900;

    line-height: 0.82;

    letter-spacing: -0.045em;

    text-transform: uppercase;
}


.hero-title em {
    color: var(--krunch-yellow);

    font-style: normal;
}


.hero-description {
    max-width: 540px;

    margin-top: 32px;

    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.78);

    font-size:
        clamp(15px, 1.4vw, 19px);

    line-height: 1.7;
}


.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.hero-actions .button {
    flex: 0 0 auto;
}


.button-outline {
    background: transparent;

    border-color: var(--white);

    color: var(--white);
}


.button-outline::before {
    background: var(--krunch-yellow);
}


.button-outline:hover {
    color: var(--black);

    border-color: var(--krunch-yellow);
}


/* ---------------------------------------------------------
   HERO SCROLL INDICATOR
   --------------------------------------------------------- */

.hero-scroll {
    position: absolute;

    right:
        clamp(20px, 4vw, 64px);

    bottom:
        clamp(22px, 3vw, 42px);

    z-index: 3;

    color: rgba(255, 255, 255, 0.72);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.16em;

    line-height: 1;

    text-transform: uppercase;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


.hero-scroll::before {
    content: "";

    display: block;

    width: 1px;
    height: 42px;

    margin-bottom: 12px;

    background:
        linear-gradient(
            to bottom,
            var(--krunch-yellow),
            transparent
        );
}


/* =========================================================
   HERO — LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .hero {
        min-height: 660px;
    }


    .hero-content {
        padding-block: 80px;
    }


    .hero-title {
        max-width: 680px;

        font-size:
            clamp(68px, 11vw, 145px);
    }

}


/* =========================================================
   HERO — TABLET
   ========================================================= */

@media (max-width: 900px) {

    .hero {
        min-height: 600px;

        align-items: flex-end;
    }


    .hero-content {
        padding-block:
            70px 80px;
    }


    .hero-title {
        max-width: 620px;

        font-size:
            clamp(62px, 12vw, 120px);
    }


    .hero-description {
        max-width: 520px;

        font-size: 16px;
    }


    .hero-scroll {
        display: none;
    }

}


/* =========================================================
   HERO — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .hero {
        min-height: 570px;

        align-items: flex-end;
    }


    .hero-media::after {
        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.58) 45%,
                rgba(0, 0, 0, 0.18) 100%
            );
    }


    .hero-content {
        width:
            calc(100% - (var(--gutter) * 2));

        padding-block:
            55px 65px;
    }


    .hero-title {
        max-width: 100%;

        font-size:
            clamp(58px, 17vw, 92px);

        line-height: 0.84;
    }


    .hero-description {
        max-width: 100%;

        margin-top: 24px;

        font-size: 14px;

        line-height: 1.7;
    }


    .hero-actions {
        margin-top: 24px;

        gap: 10px;
    }


    .hero-actions .button {
        min-height: 50px;

        padding:
            14px 17px;

        font-size: 9px;
    }


    .hero-scroll {
        display: none;
    }

}


/* =========================================================
   HERO — SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 540px;
    }


    .hero-content {
        padding-block:
            45px 58px;
    }


    .hero-title {
        font-size:
            clamp(54px, 17vw, 78px);
    }


    .hero-description {
        font-size: 13px;
    }


    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }


    .hero-actions .button {
        width: 100%;
    }

}


/* =========================================================
   HERO — VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    .hero {
        min-height: 510px;
    }


    .hero-title {
        font-size: 51px;
    }


    .hero-description {
        font-size: 12.5px;
    }

}


/* =========================================================
   31. HOMEPAGE CTA — COMPACT FINAL REFINEMENT
   =========================================================
   
   Only controls the final "Find Your Krunch" CTA.
   Does not alter the global section system.
   ========================================================= */


/* ---------------------------------------------------------
   DESKTOP CTA
   --------------------------------------------------------- */

@media (min-width: 901px) {

    .cta-section {
        padding-block:
            55px;
    }


    .cta-section .section-header {
        margin-bottom: 0;
    }


    .cta-section .eyebrow {
        margin-bottom: 16px;
    }


    .cta-section h2 {
        font-size:
            clamp(52px, 6vw, 95px);
    }


    .cta-section .section-header > p {
        font-size: 16px;

        line-height: 1.65;

        margin-bottom: 0;
    }

}


/* ---------------------------------------------------------
   TABLET CTA
   --------------------------------------------------------- */

@media (min-width: 761px) and (max-width: 900px) {

    .cta-section {
        padding-block:
            55px;
    }


    .cta-section .section-header {
        margin-bottom: 0;
    }


    .cta-section h2 {
        font-size:
            clamp(50px, 9vw, 82px);
    }

}


/* ---------------------------------------------------------
   MOBILE CTA
   --------------------------------------------------------- */

@media (max-width: 760px) {

    .cta-section {
        padding-block:
            58px;
    }


    .cta-section .section-header {
        margin-bottom: 0;
    }


    .cta-section h2 {
        font-size:
            clamp(50px, 17vw, 78px);

        line-height: 0.9;
    }


    .cta-section .section-header > p {
        margin-top: 5px;

        font-size: 15px;

        line-height: 1.7;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 480px) {

    .cta-section {
        padding-block:
            52px;
    }


    .cta-section h2 {
        font-size:
            clamp(46px, 16vw, 70px);
    }

}



/* =========================================================
   33. SPACING REBALANCE
   Typography has been reduced, so sections need less air.
   ========================================================= */

@media (min-width: 901px) {

    /* -----------------------------------------------------
       GENERAL SECTION SPACING
       ----------------------------------------------------- */

    .section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    min-height: 0 !important;
}


    /* -----------------------------------------------------
       SECTION HEADERS
       ----------------------------------------------------- */

    .section-header {
        gap: 70px !important;
    }


    .section-header > div {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }


    .section-header > p {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }


    /* -----------------------------------------------------
       SPLIT SECTIONS
       ----------------------------------------------------- */

    .split {
        gap: 70px !important;
    }


    .split-content {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }


    .split-content p {
        margin-top: 18px !important;
        margin-bottom: 0 !important;
    }


    /* -----------------------------------------------------
       REMOVE ARTIFICIAL MIN HEIGHTS
       ----------------------------------------------------- */

    .section,
    .section-header,
    .split {
        min-height: 0 !important;
    }


    /* -----------------------------------------------------
       HEADINGS
       ----------------------------------------------------- */

    .section h2 {
        margin-top: 0 !important;
        margin-bottom: 18px !important;
    }


    .section h3 {
        margin-top: 0 !important;
        margin-bottom: 14px !important;
    }


    /* -----------------------------------------------------
       PARAGRAPHS
       ----------------------------------------------------- */

    .section p {
        margin-top: 0 !important;
        margin-bottom: 1rem !important;
    }

}
@media (min-width: 901px) {

    .section {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
        min-height: 0 !important;
    }

}

/* =========================================================
   34. BRAND MARQUEE
   ========================================================= */

.marquee {
    width: 100%;
    overflow: hidden;

    background: var(--yellow);
    color: var(--black);

    padding: 9px 0;

    white-space: nowrap;
}


.marquee-track {
    display: flex;
    width: max-content;

    animation:
        marquee-scroll 25s linear infinite;
}


.marquee-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 40px;

    padding-right: 40px;
}


.marquee-item {
    flex: 0 0 auto;

    font-family: var(--font-display);

    font-size:
        clamp(20px, 2.2vw, 34px);

    font-weight: 900;

    line-height: 1;

    text-transform: uppercase;

    color: var(--black);
}


/* =========================================================
   SEAMLESS LOOP
   ========================================================= */

@keyframes marquee-scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

/* ---------------------------------------------------------
   MAIN CONTACT BOXES
   --------------------------------------------------------- */

.main-contact-links {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;

    margin-top: 35px;

    max-width: 1000px;
}


.contact-box {
    display: flex;
    flex-direction: column;

    gap: 8px;

    padding: 20px 22px;

    border: 1px solid rgba(0, 0, 0, 0.18);

    color: var(--black);

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.contact-box:hover {
    background: var(--black);

    color: var(--white);

    transform: translateY(-2px);
}


.contact-box-label {
    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


.contact-box strong {
    font-size: 15px;

    font-weight: 700;

    line-height: 1.3;

    word-break: break-word;
}



/* ---------------------------------------------------------
   BRANCH CONTACT DETAILS
   --------------------------------------------------------- */

.branch-contact {
    display: flex;

    flex-wrap: wrap;

    gap: 8px 18px;

    margin-top: 16px;

    margin-bottom: 22px;
}


.branch-contact a {
    color: var(--black);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: opacity 0.2s ease;
}


.branch-contact a:hover {
    opacity: 0.55;
}



/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 760px) {

    .main-contact-links {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 25px;
    }


    .contact-box {
        padding: 16px 18px;
    }


    .branch-contact {
        flex-direction: column;

        gap: 7px;

        margin-top: 14px;
    }

}

/* =========================================================
   END OF KRUNCH FITNESS MASTER STYLESHEET
   ========================================================= */