/* site.css = base.css + nav.css + footer.css concatenated for one request. Edit the source files and re-run the concat. */

/* ==========================================================================
   Plymouth Dance Centre — base.css
   "Harbour Pulse" design system: harbour navy + Signal Coral, editorial
   poster composition, DM Serif Display headlines over Manrope body.
   Original identity for Plymouth — intentionally unlike the post-it family.
   ========================================================================== */

/* --- Self-hosted fonts (Google Fonts, SIL Open Font License) — no cross-origin CSS chain --- */
@font-face { font-family: "DM Serif Display"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/DMSerifDisplay-400-normal.woff2") format("woff2"); }
@font-face { font-family: "DM Serif Display"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/DMSerifDisplay-400-italic.woff2") format("woff2"); }
@font-face { font-family: "Manrope"; font-style: normal; font-weight: 400 800; font-display: swap; src: url("../fonts/Manrope-variable.woff2") format("woff2-variations"), url("../fonts/Manrope-variable.woff2") format("woff2"); }

:root {
    /* Palette */
    --ink: #071c2c;
    --navy: #09263a;
    --navy-deep: #061824;
    --coral: #f35a4a;
    --coral-press: #e84c3c;
    --coral-ink: #b83a24;    /* darker coral for SMALL text on light backgrounds (AA 4.5:1) */
    --sand: #f3f0e8;
    --paper: #fcfbf8;
    --mist: #dae4e3;
    --text: #23333d;
    --muted: #52626a;   /* AA on paper + sand */
    --line: rgba(7, 28, 44, 0.16);

    /* Type */
    --serif: "DM Serif Display", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --fs-sm: 0.8125rem;
    --fs-base: 0.9375rem;

    /* Rhythm */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.5rem;
    --container: 1120px;
    --transition: 0.2s ease;
}

/* --- Reset --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font: 15px/1.6 var(--sans);
    -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

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

/* --- Editorial headline voice --- */
.headline {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.9;
    color: var(--ink);
    margin: 0;
}

.headline i {
    color: var(--coral);
    font-weight: 400;
}

.headline--light {
    color: #fff;
}

/* --- Eyebrow kicker --- */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5d66;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0 0 22px;
}

.eyebrow span {
    display: inline-block;
    width: 27px;
    height: 2px;
    background: var(--coral);
}

.eyebrow--light {
    color: #c5d7d8;
}

/* --- Buttons --- */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: transform 0.16s ease, background var(--transition), color var(--transition);
}

.button:active {
    transform: scale(0.97);
}

.button--coral {
    background: var(--coral);
    color: #fff;
}

.button--coral:hover {
    background: var(--coral-press);
}

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

.button--dark:hover {
    background: var(--coral);
}

.button--outline {
    color: var(--ink);
    border: 1px solid var(--ink);
    background: transparent;
}

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

/* --- Underlined text link --- */
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.1em;
    border-bottom: 2px solid var(--coral);
    padding: 0 0 6px;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--coral);
}

.text-link--light {
    color: #fff;
}

/* --- Coral rule marker (coordinates / pricing strips) --- */
.signal-bar {
    border-top: 2px solid var(--coral);
    padding-top: 9px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    color: #3f5961;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
}

.signal-bar b {
    color: var(--coral-ink);
    font-size: 13px;
    letter-spacing: 0.22em;
    line-height: 0.5;
}

/* --- Call-to-action form card (shared: hub, theme pages, homepage) --- */
.cta-zone {
    background: var(--navy-deep);
    color: #fff;
    padding: 90px clamp(24px, 7vw, 112px);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(35px, 5vw, 80px);
    align-items: center;
}

.cta-zone__pitch h2 {
    font-size: clamp(40px, 4.8vw, 64px);
}

.cta-zone__pitch > p:not(.eyebrow) {
    color: #c2d2d5;
    line-height: 1.75;
    max-width: 400px;
    margin: 24px 0 0;
}

.cta-zone__points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.cta-zone__points li {
    display: flex;
    gap: 12px;
    align-items: baseline;
    color: #dce5e3;
    font-size: 14px;
}

.cta-zone__points i {
    color: var(--coral);
    font-size: 12px;
}

.form-card {
    background: #fff;
    padding: 0 30px 30px;
    box-shadow: 0 30px 70px -25px rgba(0, 0, 0, 0.55);
    color: var(--text);
}

.form-card__banner {
    background: var(--coral);
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(24px, 2.4vw, 30px);
    letter-spacing: -0.02em;
    line-height: 1.1;
    padding: 16px 22px;
    margin: 0 -30px;
    position: relative;
    top: -18px;
}

.form-card__sub {
    color: #52626a;
    font-size: 13px;
    margin: -4px 0 22px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.form-grid .req {
    color: var(--coral);
}

.form-grid .full-field {
    grid-column: span 2;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    appearance: none;
    width: 100%;
    background: #f2f5f5;
    border: 1px solid #d7dee1;
    padding: 12px 14px;
    border-radius: 0;
    color: var(--ink);
    outline: none;
    font-size: 14px;
    font-family: var(--sans);
    font-weight: 500;
    resize: vertical;
    transition: border-color var(--transition), background var(--transition);
}

.form-grid select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23071c2c' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 34px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--coral);
    background: #fff;
}

.form-grid ::placeholder {
    color: #97a6aa;
}

.form-card .form-button {
    grid-column: span 2;
    width: 100%;
    padding: 17px 20px;
    font-size: 13px;
    margin-top: 4px;
}

.form-card .form-note {
    grid-column: span 2;
    color: #5a6a70;
    font-size: 11px;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

@media (max-width: 860px) {
    .cta-zone {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {
    .cta-zone {
        padding: 65px 20px 75px;
    }

    .form-card {
        padding: 0 20px 22px;
    }

    .form-card__banner {
        margin: 0 -20px;
        padding: 14px 18px;
    }

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

    .form-grid .full-field,
    .form-card .form-button,
    .form-card .form-note {
        grid-column: span 1;
    }
}

/* --- Shared section shell --- */
.section-pad {
    padding: 112px clamp(24px, 7vw, 112px);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: end;
    margin: 0 auto 51px;
    max-width: var(--container);
}

.section-heading h2 {
    font-size: clamp(46px, 5.4vw, 76px);
}

.section-intro {
    max-width: 349px;
    margin: 0 9% 4px 0;
    color: var(--muted);
    line-height: 1.75;
}

@media (max-width: 860px) {
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .section-intro {
        margin: 0;
    }
}

@media (max-width: 600px) {
    .section-heading h2 {
        font-size: 48px;
    }

    .button {
        padding: 14px 16px;
    }
}

/* ==========================================================================
   Icons — replaces Font Awesome (253 KB of webfonts for 11 glyphs).
   Same class names (.fas .fa-check etc) so no markup changes; each icon is a
   tiny original SVG used as a mask, coloured by currentColor.
   ========================================================================== */
.fas, .fab {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    background-color: currentColor;
    -webkit-mask: var(--icon) center / contain no-repeat;
    mask: var(--icon) center / contain no-repeat;
}

.fa-check        { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M2 8.5l4 4L14 4' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }
.fa-plus         { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 2v12M2 8h12' stroke='black' stroke-width='2.4' stroke-linecap='round'/></svg>"); }
.fa-chevron-down { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 6l5 5 5-5' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>"); }
.fa-star         { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 1.5l2 4.3 4.7.5-3.5 3.2 1 4.6L8 11.8 3.8 14.1l1-4.6L1.3 6.3 6 5.8z'/></svg>"); }
.fa-heart        { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 14.2S1.6 10.2 1.6 5.6A3.4 3.4 0 0 1 8 4a3.4 3.4 0 0 1 6.4 1.6c0 4.6-6.4 8.6-6.4 8.6z'/></svg>"); }
.fa-envelope     { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M1.5 3.5h13v9h-13z' fill='none' stroke='black' stroke-width='1.6'/><path d='M1.8 4l6.2 5 6.2-5' fill='none' stroke='black' stroke-width='1.6'/></svg>"); }
.fa-phone        { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.4 1.6l2.3 2.6-1.4 1.9c.9 2 2.3 3.4 4.3 4.3l1.9-1.4 2.6 2.3-1.7 2.1C8 14 2 8 2.6 3.3z'/></svg>"); }
.fa-location-dot { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M8 15s5-5.2 5-8.8A5 5 0 0 0 3 6.2C3 9.8 8 15 8 15zm0-6.6a2.2 2.2 0 1 1 0-4.4 2.2 2.2 0 0 1 0 4.4z'/></svg>"); }
.fa-clock        { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='6.2' fill='none' stroke='black' stroke-width='1.6'/><path d='M8 4.5V8l2.6 1.6' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round'/></svg>"); }
.fa-facebook-f   { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M9.2 15V9h2l.3-2.4H9.2V5.1c0-.7.2-1.2 1.2-1.2h1.3V1.8A17 17 0 0 0 9.8 1.7c-1.9 0-3.2 1.1-3.2 3.2v1.7h-2V9h2v6z'/></svg>"); }
.fa-instagram    { --icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='2' y='2' width='12' height='12' rx='3.4' fill='none' stroke='black' stroke-width='1.6'/><circle cx='8' cy='8' r='2.8' fill='none' stroke='black' stroke-width='1.6'/><circle cx='11.6' cy='4.4' r='.9'/></svg>"); }


/* ==========================================================================
   Plymouth Dance Centre — nav.css
   Harbour-navy masthead, uppercase Manrope links, coral CTA, navy dropdowns.
   Structure mirrors the network convention (nav__* classes, 750px mobile
   breakpoint, hover dropdowns on desktop, drawer + accordions on mobile)
   so js/nav.js works unchanged.
   ========================================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy-deep);
    color: #fff;
}

.header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 64px);
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-5);
}

/* --- Brand lockup --- */
.brand {
    display: flex;
    gap: 10px;
    align-items: center;
}

.brand__mark {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand__type {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: 0.14em;
    font-size: 12px;
    color: #fff;
}

.brand__type b {
    font-weight: 800;
}

.brand__type em {
    font-style: normal;
    color: #b9ced1;
    font-size: 8px;
    letter-spacing: 0.24em;
    margin-top: 5px;
}

.brand__signal {
    display: block;
    width: 22px;
    height: 2px;
    margin-left: 2px;
    background: var(--coral);
    box-shadow: 7px 6px 0 rgba(243, 90, 74, 0.42), 14px 12px 0 rgba(243, 90, 74, 0.15);
}

/* --- Nav list --- */
.nav__list {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1.4vw, 1.4rem);
}

.nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: var(--sp-2) var(--sp-2);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.82);
    transition: color var(--transition);
}

.nav__link:hover {
    color: #fff;
}

/* Coral underline signal on hover */
.nav__link::after {
    content: "";
    position: absolute;
    left: var(--sp-2);
    right: var(--sp-2);
    bottom: 2px;
    height: 2px;
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav__link:hover::after {
    transform: scaleX(1);
}

.nav__link i {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

/* Coral CTA pill */
.nav__link--cta {
    background: var(--coral);
    color: #fff;
    padding: 12px 16px;
}

.nav__link--cta:hover {
    background: var(--coral-press);
}

.nav__link--cta::after {
    display: none;
}

/* --- Dropdowns (desktop) --- */
.nav__item--has-dropdown {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    max-height: 70vh;
    overflow-y: auto;
    background: var(--navy);
    border-top: 3px solid var(--coral);
    padding: var(--sp-3) 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    box-shadow: 0 18px 44px -12px rgba(6, 24, 36, 0.55);
}

.nav__dropdown a {
    display: block;
    padding: 0.5rem var(--sp-4);
    font-size: var(--fs-sm);
    color: #b9ced1;
    transition: color var(--transition), background-color var(--transition), padding-left var(--transition);
}

.nav__dropdown a:hover {
    color: #fff;
    background: rgba(243, 90, 74, 0.16);
    padding-left: calc(var(--sp-4) + 4px);
}

@media (min-width: 751px) {
    .nav__item--has-dropdown:hover > .nav__dropdown,
    .nav__item--has-dropdown:focus-within > .nav__dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav__item--has-dropdown:hover .nav__link i {
        transform: rotate(180deg);
    }
}

@media (max-width: 1024px) and (min-width: 751px) {
    .brand__mark {
        width: 38px;
        height: 38px;
    }

    .nav__link {
        font-size: 10px;
        padding: var(--sp-1) var(--sp-1);
    }

    .nav__link--cta {
        padding: 10px 12px;
    }
}

/* --- Hamburger --- */
.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    align-items: center;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile drawer --- */
@media (max-width: 750px) {
    .nav__toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 76px;
        right: 0;
        bottom: 0;
        width: 85vw;
        background: var(--navy-deep);
        transform: translateX(100%);
        transition: transform 280ms ease;
        overflow-y: auto;
        padding: var(--sp-5);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav__item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav__link {
        width: 100%;
        justify-content: space-between;
        padding: var(--sp-4) var(--sp-2);
        font-size: var(--fs-sm);
    }

    .nav__link--cta {
        margin-top: var(--sp-4);
        justify-content: center;
    }

    .nav__dropdown {
        position: static;
        transform: none;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        border-top: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        transition: max-height 320ms ease;
    }

    .nav__item--has-dropdown.active .nav__dropdown {
        max-height: 60vh;
        overflow-y: auto;
    }

    .nav__item--has-dropdown.active .nav__link i {
        transform: rotate(180deg);
    }
}


/* ==========================================================================
   Plymouth Dance Centre — footer.css
   Harbour-navy footer with giant PLYMOUTH watermark and coral coordinates.
   ========================================================================== */

.site-footer {
    background: var(--navy-deep);
    color: #c1d1d3;
    padding: 45px clamp(24px, 5vw, 80px) 31px;
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 0.75fr 1.2fr;
    column-gap: 40px;
    row-gap: 35px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: "PLYMOUTH";
    position: absolute;
    right: -16px;
    bottom: -41px;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(88px, 14vw, 220px);
    font-weight: 800;
    letter-spacing: -0.08em;
    pointer-events: none;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

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

.site-footer__tagline {
    font-size: 12px;
    line-height: 1.6;
    max-width: 242px;
    margin: 12px 0 0;
}

/* --- Link columns --- */
.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 11px;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding-top: 6px;
}

.site-footer__links a:hover {
    color: var(--coral);
}

.site-footer__heading {
    color: #fff;
    font-size: 10px;
    letter-spacing: 0.18em;
    margin-bottom: 4px;
}

/* --- Contact block --- */
.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
    padding-top: 6px;
}

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-footer__contact-list i {
    color: var(--coral);
    width: 16px;
    text-align: center;
}

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

.site-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.site-footer__social a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #c1d1d3;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.site-footer__social a:hover {
    border-color: var(--coral);
    background: var(--coral);
    color: #fff;
}

.site-footer__coordinates {
    color: var(--coral);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 800;
    margin-top: 9px;
}

.site-footer__copyright {
    grid-column: 1 / -1;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #8aa1a6;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 860px) {
    .site-footer {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 40px 24px 25px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .site-footer__copyright {
        grid-column: auto;
    }
}
