:root {
    --mg-white: #ffffff;
    --mg-black: #000000;
    --mg-orange: #d55012;
    --mg-glass: rgba(20, 20, 20, 0.4);
    --mg-border: rgba(255, 255, 255, 0.96);
    --mg-font: "Familjen Grotesk", "Helvetica Neue", Arial, sans-serif;
}

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

html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    background: var(--mg-black);
    font-family: var(--mg-font);
}

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

.mg-categories-page {
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.mg-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(118px, 16.7vh, 189px) clamp(32px, 11.4vw, 255px) clamp(110px, 11.1vh, 126px);
    background-image: var(--mg-hero-bg);
    background-position: center;
    background-size: cover;
    color: var(--mg-white);
}

.mg-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.25);
}

.mg-logo {
    position: absolute;
    z-index: 2;
    top: clamp(24px, 3.45vh, 39px);
    left: 50%;
    width: clamp(150px, 9.1vw, 203px);
    transform: translateX(-50%);
}

.mg-logo img {
    width: 100%;
    height: auto;
}

.mg-category-grid {
    width: min(100%, 1730px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 1.34vw, 30px);
    align-items: stretch;
}

.mg-card {
    min-height: clamp(560px, 62.3vh, 704px);
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 4.25vh, 48px) clamp(24px, 1.88vw, 42px) clamp(34px, 6.9vh, 78px) clamp(32px, 2.63vw, 59px);
    border: 1px solid var(--mg-border);
    border-radius: 8px;
    background: var(--mg-glass);
    -webkit-backdrop-filter: blur(11.7px);
    backdrop-filter: blur(11.7px);
}

.mg-card__image-wrap {
    height: clamp(180px, 21.7vh, 245px);
    overflow: hidden;
    border-radius: 7.5px;
    background: rgba(255, 255, 255, 0.1);
}

.mg-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-card:first-child .mg-card__image {
    object-position: center 85%;
    transform: scale(1.02);
}

.mg-card:nth-child(2) .mg-card__image {
    object-position: center top;
}

.mg-card:nth-child(3) .mg-card__image {
    object-position: center 33%;
    transform: scale(1.08);
}

.mg-card__title {
    margin: clamp(42px, 5vh, 56px) 0 0;
    color: var(--mg-white);
    font-size: clamp(43px, 3.13vw, 70px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: capitalize;
}

.mg-card__text {
    max-width: 455px;
    margin: clamp(72px, 8.3vh, 94px) 0 0;
    color: var(--mg-white);
    font-size: clamp(16px, 0.8vw, 18px);
    font-weight: 400;
    line-height: 1.26;
    letter-spacing: 0.01em;
}

.mg-card__button {
    width: 100%;
    min-height: 40px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid var(--mg-white);
    border-radius: 999px;
    background: var(--mg-white);
    color: var(--mg-black);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mg-card--featured .mg-card__button {
    border-color: var(--mg-orange);
    background: var(--mg-orange);
    color: var(--mg-white);
}

.mg-card__button:hover,
.mg-card__button:focus-visible {
    transform: translateY(-1px);
}

.mg-card__button:focus-visible {
    outline: 2px solid var(--mg-white);
    outline-offset: 4px;
}

.mg-card__arrow {
    position: relative;
    width: 16px;
    height: 16px;
    transform: rotate(-30deg);
}

.mg-card__arrow::before,
.mg-card__arrow::after {
    position: absolute;
    content: "";
    background: currentColor;
}

.mg-card__arrow::before {
    top: 7px;
    left: 1px;
    width: 14px;
    height: 1.5px;
}

.mg-card__arrow::after {
    top: 3px;
    right: 1px;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    background: transparent;
    transform: rotate(45deg);
}

.mg-tagline {
    position: absolute;
    left: 50%;
    bottom: clamp(26px, 6.1vh, 69px);
    width: max-content;
    max-width: calc(100% - 32px);
    margin: 0;
    transform: translateX(-50%);
    color: var(--mg-white);
    font-size: clamp(27px, 1.79vw, 40px);
    font-weight: 400;
    line-height: 1.84;
    text-align: center;
    white-space: normal;
}

.mg-tagline span {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

@media (max-width: 1500px) {
    .mg-hero {
        padding-inline: clamp(32px, 5vw, 72px);
    }

    .mg-card {
        padding-left: clamp(30px, 2.6vw, 42px);
    }

    .mg-card__title {
        font-size: clamp(46px, 4.2vw, 62px);
    }

    .mg-card__text {
        margin-top: clamp(44px, 5.2vh, 70px);
    }
}

@media (max-width: 1180px) {
    .mg-hero {
        min-height: 100vh;
        min-height: 100svh;
        align-items: flex-start;
        padding: 112px 32px 104px;
    }

    .mg-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 920px;
    }

    .mg-card {
        min-height: auto;
        padding: 30px;
    }

    .mg-card:nth-child(3) {
        grid-column: 1 / -1;
    }

    .mg-card:nth-child(3) .mg-card__image-wrap {
        height: clamp(230px, 30vw, 310px);
    }

    .mg-card__image-wrap {
        height: clamp(190px, 24vw, 245px);
    }

    .mg-card__title {
        margin-top: 34px;
        font-size: clamp(44px, 6vw, 58px);
    }

    .mg-card__text {
        max-width: none;
        margin: 24px 0 34px;
    }

    .mg-tagline {
        bottom: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 760px) {
    .mg-hero {
        min-height: auto;
        padding: 100px 20px 94px;
        background-position: center top;
    }

    .mg-logo {
        top: 26px;
        width: 154px;
    }

    .mg-category-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 18px;
    }

    .mg-card {
        padding: 22px;
    }

    .mg-card:nth-child(3) {
        grid-column: auto;
    }

    .mg-card__image-wrap,
    .mg-card:nth-child(3) .mg-card__image-wrap {
        height: clamp(172px, 48vw, 245px);
    }

    .mg-card__title {
        margin-top: 28px;
        font-size: clamp(40px, 12vw, 58px);
        letter-spacing: -0.035em;
    }

    .mg-card__text {
        margin: 18px 0 26px;
        font-size: 16px;
        line-height: 1.34;
    }

    .mg-card__button {
        min-height: 44px;
    }

    .mg-tagline {
        bottom: 28px;
        width: min(340px, calc(100% - 32px));
        font-size: clamp(24px, 7vw, 32px);
    }
}

@media (max-width: 390px) {
    .mg-hero {
        padding-inline: 14px;
    }

    .mg-card {
        padding: 18px;
    }

    .mg-card__image-wrap,
    .mg-card:nth-child(3) .mg-card__image-wrap {
        height: 158px;
    }

    .mg-card__title {
        font-size: 38px;
    }

    .mg-card__text {
        font-size: 15px;
    }
}

@media (max-height: 760px) and (min-width: 1181px) {
    .mg-hero {
        padding-top: 98px;
        padding-bottom: 88px;
    }

    .mg-logo {
        top: 26px;
        width: 170px;
    }

    .mg-card {
        min-height: 520px;
        padding-top: 30px;
        padding-bottom: 44px;
    }

    .mg-card__image-wrap {
        height: 190px;
    }

    .mg-card__title {
        margin-top: 30px;
        font-size: 52px;
    }

    .mg-card__text {
        margin-top: 34px;
    }

    .mg-tagline {
        bottom: 24px;
        font-size: 30px;
        line-height: 1.2;
    }
}

@media (min-width: 1181px) and (min-height: 761px) and (max-height: 840px) {
    .mg-hero {
        padding-top: 90px;
        padding-bottom: 72px;
    }

    .mg-logo {
        top: 28px;
        width: 176px;
    }

    .mg-card {
        min-height: 560px;
        padding-top: 32px;
        padding-bottom: 54px;
    }

    .mg-card__image-wrap {
        height: 182px;
    }

    .mg-card__title {
        margin-top: 40px;
        font-size: clamp(46px, 3.8vw, 56px);
    }

    .mg-card__text {
        margin-top: 38px;
    }

    .mg-tagline {
        bottom: 22px;
        font-size: 28px;
        line-height: 1.2;
    }
}

/* Pergolas project flow */
.mg-projects-page {
    background: var(--mg-white);
    color: var(--mg-black);
    font-family: var(--mg-font);
    --mg-project-x: clamp(32px, 6.39vw, 143px);
    --mg-project-right: clamp(32px, 5.45vw, 122px);
    --mg-project-logo-w: clamp(101px, 7.01vw, 157px);
}

.mg-site-header {
    position: relative;
    z-index: 2;
    height: clamp(116px, 5.94vw, 133px);
    padding: 0 var(--mg-project-x);
    color: var(--mg-black);
}

.mg-site-header::before,
.mg-site-header::after {
    position: absolute;
    right: var(--mg-project-right);
    left: var(--mg-project-x);
    height: 1px;
    content: "";
    background: rgba(0, 0, 0, 0.35);
}

.mg-site-header::before {
    top: clamp(70px, 3.62vw, 81px);
}

.mg-site-header::after {
    top: clamp(114px, 5.94vw, 133px);
}

.mg-site-header__logo {
    position: absolute;
    top: clamp(34px, 1.81vw, 40.5px);
    left: calc(var(--mg-project-x) - 3px);
    width: var(--mg-project-logo-w);
}

.mg-site-header__logo img,
.mg-project-footer__logo img {
    width: 100%;
    height: auto;
    filter: invert(1);
}

.mg-main-nav,
.mg-utility-nav,
.mg-sub-nav {
    position: absolute;
    display: flex;
    align-items: center;
}

.mg-main-nav {
    top: clamp(42px, 2.19vw, 49px);
    left: calc(var(--mg-project-x) + var(--mg-project-logo-w) + clamp(44px, 3.26vw, 73px));
    gap: clamp(54px, 5.45vw, 122px);
}

.mg-utility-nav {
    top: clamp(88px, 4.33vw, 97px);
    right: calc(var(--mg-project-right) + 2px);
    gap: clamp(18px, 0.89vw, 20px);
}

.mg-main-nav a,
.mg-utility-nav a,
.mg-sub-nav a {
    color: currentColor;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.mg-main-nav a.is-active {
    font-weight: 700;
    text-decoration: none;
}

.mg-main-nav a:not(.is-active) {
    opacity: 0.6;
}

.mg-utility-nav a:first-child {
    font-weight: 700;
}

.mg-utility-nav a:nth-child(2) {
    color: #df5d24;
    font-weight: 700;
}

.mg-sub-nav {
    top: clamp(88px, 4.33vw, 97px);
    left: calc(var(--mg-project-x) + 3px);
    gap: clamp(42px, 3.04vw, 68px);
}

.mg-sub-nav a {
    font-size: 14px;
    letter-spacing: 0.036em;
    text-transform: none;
}

.mg-sub-nav a.is-active {
    text-decoration: none;
}

.mg-projects-hero {
    display: grid;
    grid-template-columns: minmax(260px, 480px) 1fr;
    gap: clamp(40px, 5vw, 100px);
    align-items: end;
    padding: clamp(48px, 2.59vw, 58px) var(--mg-project-right) 0 var(--mg-project-x);
}

.mg-projects-hero__copy {
    max-width: 480px;
    padding-bottom: clamp(34px, 3.17vw, 71px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.mg-projects-hero h1 {
    margin: 0;
    font-size: clamp(112px, 10.06vw, 225.25px);
    font-weight: 700;
    line-height: 1.127;
    letter-spacing: -0.031em;
    text-align: right;
}

.mg-projects-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: clamp(72px, 7.46vw, 167px) var(--mg-project-right) 32px var(--mg-project-x);
    scrollbar-width: none;
}

.mg-projects-filters::-webkit-scrollbar {
    display: none;
}

.mg-projects-filters a {
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 8px 25px;
    border: 1px solid #ededed;
    border-radius: 999px;
    background: #ededed;
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    text-decoration: none;
}

.mg-projects-filters a.is-active {
    border-color: var(--mg-black);
    background: var(--mg-black);
    color: var(--mg-white);
}

.mg-project-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(72px, 7.91vw, 177px) clamp(20px, 1.16vw, 26px);
    padding: 0 var(--mg-project-right) clamp(120px, 11.21vw, 251px) var(--mg-project-x);
}

.mg-project-grid__empty {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(0, 0, 0, 0.6);
    font-size: 18px;
}

.mg-project-card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mg-project-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 474 / 345;
}

.mg-project-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.mg-project-card:nth-child(6) .mg-project-card__image img,
.mg-project-card:nth-child(14) .mg-project-card__image img {
    height: 137.5%;
    object-position: center top;
}

.mg-project-card:nth-child(7) .mg-project-card__image img,
.mg-project-card:nth-child(15) .mg-project-card__image img {
    left: -4.82%;
    width: 109.65%;
}

.mg-project-card:nth-child(8) .mg-project-card__image img,
.mg-project-card:nth-child(16) .mg-project-card__image img {
    left: -0.07%;
    width: 129.29%;
}

.mg-project-card__title,
.mg-project-card__meta {
    display: block;
}

.mg-project-card__title {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.13;
    letter-spacing: 0.017em;
}

.mg-project-card__meta {
    margin-top: 4px;
    color: rgba(0, 0, 0, 0.5);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* Single parasol project */
.mg-project-single {
    --mg-project-x: clamp(32px, 6.39vw, 143px);
    --mg-project-right: clamp(32px, 5.45vw, 122px);
    --mg-project-logo-w: clamp(101px, 7.01vw, 157px);
    background: var(--mg-white);
    color: var(--mg-black);
}

.mg-project-single__heading {
    display: grid;
    grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 120px);
    align-items: end;
    min-height: clamp(330px, 27vw, 605px);
    padding: clamp(72px, 7.5vw, 168px) var(--mg-project-right) clamp(48px, 5.4vw, 120px) var(--mg-project-x);
}

.mg-project-single__heading p,
.mg-project-single__related-heading p {
    margin: 0 0 0.5em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mg-project-single__heading h1 {
    max-width: 1500px;
    margin: 0;
    font-size: clamp(76px, 8.5vw, 190px);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.055em;
}

.mg-project-single__hero {
    width: 100%;
    height: min(78vw, 1050px);
    min-height: 540px;
    margin: 0;
    overflow: hidden;
    background: #efefed;
}

.mg-project-single__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-project-single__intro {
    display: grid;
    grid-template-columns: minmax(140px, 0.7fr) minmax(300px, 1.65fr) minmax(220px, 0.85fr);
    gap: clamp(32px, 5vw, 112px);
    padding: clamp(88px, 9vw, 200px) var(--mg-project-right) clamp(100px, 11vw, 246px) var(--mg-project-x);
}

.mg-project-single__label {
    padding-top: 0.42em;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mg-project-single__content {
    max-width: 850px;
    font-size: clamp(28px, 2.15vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.mg-project-single__content > *:first-child {
    margin-top: 0;
}

.mg-project-single__content > *:last-child {
    margin-bottom: 0;
}

.mg-project-single__details {
    margin: 0;
}

.mg-project-single__details div {
    display: grid;
    grid-template-columns: minmax(72px, 0.6fr) 1fr;
    gap: 16px;
    padding: 16px 0 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.32);
}

.mg-project-single__details div:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.32);
}

.mg-project-single__details dt,
.mg-project-single__details dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
}

.mg-project-single__details dt {
    color: rgba(0, 0, 0, 0.5);
}

.mg-project-single__gallery {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(18px, 1.6vw, 36px);
    padding: 0 var(--mg-project-right) clamp(120px, 13vw, 290px) var(--mg-project-x);
}

.mg-project-single__gallery-item {
    grid-column: span 6;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 1 / 1.04;
    background: #efefed;
}

.mg-project-single__gallery-item--1 {
    grid-column: 1 / -1;
    aspect-ratio: 2.02 / 1;
}

.mg-project-single__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-project-single__related {
    padding: 0 var(--mg-project-right) clamp(120px, 11.21vw, 251px) var(--mg-project-x);
}

.mg-project-single__related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: clamp(42px, 5vw, 112px);
}

.mg-project-single__related-heading h2 {
    margin: 0;
    font-size: clamp(56px, 6.25vw, 140px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.mg-project-single__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(20px, 1.8vw, 40px);
}

.mg-project-footer {
    background: #1b1b1b;
    color: var(--mg-white);
    padding: 100px clamp(32px, 6.2vw, 139px) 118px;
}

.mg-project-footer__logo {
    display: block;
    width: clamp(190px, 13vw, 290px);
    margin: 0 auto 76px;
}

.mg-footer-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 177px;
    border-top: 1px solid #363636;
}

.mg-footer-group:last-child {
    border-bottom: 1px solid #363636;
}

.mg-footer-group h2 {
    margin: 0;
    font-size: clamp(24px, 1.34vw, 30px);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

.mg-footer-group span {
    font-size: 32px;
    line-height: 1;
}

.mg-site-footer {
    min-height: clamp(562px, 39.02vw, 874px);
    padding: clamp(64px, 4.46vw, 100px) clamp(32px, 6.25vw, 140px) clamp(60px, 4.11vw, 92px);
}

.mg-site-footer .mg-project-footer__logo {
    width: clamp(187px, 12.96vw, 290px);
    margin-bottom: clamp(49px, 3.44vw, 77px);
}

.mg-site-footer .mg-project-footer__logo img {
    filter: none;
}

.mg-site-footer .mg-footer-group {
    min-height: clamp(113px, 7.9vw, 177px);
    position: relative;
}

.mg-site-footer .mg-footer-group h2 {
    font-size: clamp(20px, 1.34vw, 30px);
}

/* Figma 19:2140 — Parasols single project */
.mg-single-project {
    --mg-single-x: clamp(32px, 5.8vw, 130px);
    background: var(--mg-white);
    color: var(--mg-black);
}

.mg-single-project__hero {
    position: relative;
    min-height: 47.95vw;
    overflow: hidden;
    color: var(--mg-white);
}

.mg-single-project__hero::before {
    position: absolute;
    inset: 0;
    background-image: var(--mg-project-hero);
    background-position: center;
    background-size: cover;
    content: "";
    transform: scaleX(-1);
}

.mg-single-project__hero::after {
    position: absolute;
    inset: 0 0 auto;
    height: 300px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    content: "";
}

.mg-single-project__header {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 5.45vw;
    left: var(--mg-single-x);
    height: 133px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.mg-single-project__header::after {
    position: absolute;
    top: 81px;
    right: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
    content: "";
}

.mg-single-project__logo {
    position: absolute;
    top: 40px;
    left: 0;
    width: 157px;
}

.mg-single-project__logo img {
    width: 100%;
    height: auto;
}

.mg-single-project__main-nav,
.mg-single-project__utility-nav,
.mg-single-project__sub-nav {
    position: absolute;
    display: flex;
    align-items: center;
}

.mg-single-project__main-nav {
    top: 45px;
    left: 230px;
    gap: clamp(54px, 5.45vw, 122px);
}

.mg-single-project__utility-nav {
    top: 91px;
    right: 0;
    gap: 20px;
}

.mg-single-project__sub-nav {
    top: 91px;
    left: 0;
    gap: clamp(36px, 3.04vw, 68px);
}

.mg-single-project__header a {
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-decoration: none;
    white-space: nowrap;
}

.mg-single-project__main-nav a {
    opacity: 0.6;
    text-transform: uppercase;
}

.mg-single-project__main-nav a.is-active,
.mg-single-project__utility-nav a:first-child {
    font-weight: 700;
    opacity: 1;
}

.mg-single-project__utility-nav a:nth-child(2) {
    color: #df5d24;
    font-weight: 700;
}

.mg-single-project__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(360px, 23.3vw, 522px);
    gap: clamp(60px, 7vw, 156px);
    min-height: 572px;
    padding: 100px 5.35vw 88px var(--mg-single-x);
    border-bottom: 2px solid #d9d9d9;
}

.mg-single-project__eyebrow {
    margin: 0 0 22px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.mg-single-project__intro h1 {
    margin: 0;
    font-size: clamp(90px, 8.04vw, 180px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.035em;
}

.mg-single-project__copy {
    max-width: 965px;
    margin-top: 52px;
    font-size: clamp(16px, 1.06vw, 23.76px);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.mg-single-project__copy p {
    margin: 0;
}

.mg-single-project__facts {
    align-self: center;
    margin: 18px 0 0;
}

.mg-single-project__facts div {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 20px;
    margin-bottom: 21px;
}

.mg-single-project__facts dt,
.mg-single-project__facts dd {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.mg-single-project__facts dd {
    text-align: right;
}

.mg-single-project__gallery {
    padding: 38px var(--mg-single-x) 0;
}

.mg-single-project__gallery-label {
    margin: 0 0 69px;
    font-size: clamp(16px, 1.06vw, 23.76px);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.mg-single-project__gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 31px 36px;
}

.mg-single-project__gallery-item {
    position: relative;
    height: 41.92vw;
    max-height: 939px;
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #ececec;
}

.mg-single-project__gallery-item--3,
.mg-single-project__gallery-item--8 {
    grid-column: 1 / -1;
}

.mg-single-project__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-single-project__gallery-item--1 img,
.mg-single-project__gallery-item--2 img,
.mg-single-project__gallery-item--4 img,
.mg-single-project__gallery-item--5 img,
.mg-single-project__gallery-item--6 img,
.mg-single-project__gallery-item--7 img {
    transform: scaleX(-1);
}

.mg-single-project__gallery-item--3::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    content: "";
}

.mg-single-project__play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 164px;
    height: 164px;
    display: grid;
    place-items: center;
    border: 2px solid var(--mg-white);
    border-radius: 50%;
    color: var(--mg-white);
    font-size: 50px;
    text-indent: 9px;
    transform: translate(-50%, -50%);
}

.mg-single-project__cta {
    min-height: 652px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 24px;
    text-align: center;
}

.mg-single-project__cta p {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.mg-single-project__cta h2 {
    margin: 0;
    font-size: clamp(44px, 3.2vw, 72px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.mg-single-project__cta a {
    min-width: 260px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 52px;
    border-radius: 999px;
    background: #1b1b1b;
    color: var(--mg-white);
    font-size: 14px;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .mg-single-project__header {
        height: 150px;
    }

    .mg-single-project__logo {
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-single-project__main-nav {
        top: 91px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-single-project__sub-nav,
    .mg-single-project__utility-nav,
    .mg-single-project__header::after {
        display: none;
    }

    .mg-single-project__summary {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .mg-single-project__facts {
        width: min(100%, 520px);
    }
}

@media (max-width: 640px) {
    .mg-single-project {
        --mg-single-x: 16px;
    }

    .mg-single-project__hero {
        min-height: 76vh;
        background-position: 56% center;
    }

    .mg-single-project__header {
        right: 16px;
        left: 16px;
    }

    .mg-single-project__main-nav {
        gap: 22px;
    }

    .mg-single-project__header a {
        font-size: 12px;
    }

    .mg-single-project__summary {
        min-height: 0;
        padding: 64px 16px 70px;
    }

    .mg-single-project__eyebrow {
        font-size: 15px;
    }

    .mg-single-project__intro h1 {
        font-size: clamp(62px, 20vw, 88px);
    }

    .mg-single-project__copy {
        margin-top: 34px;
        font-size: 16px;
    }

    .mg-single-project__gallery {
        padding: 30px 16px 0;
    }

    .mg-single-project__gallery-label {
        margin-bottom: 32px;
    }

    .mg-single-project__gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mg-single-project__gallery-item,
    .mg-single-project__gallery-item--3,
    .mg-single-project__gallery-item--8 {
        grid-column: auto;
        height: 92vw;
        border-radius: 10px;
    }

    .mg-single-project__play {
        width: 92px;
        height: 92px;
        font-size: 28px;
    }

    .mg-single-project__cta {
        min-height: 470px;
    }

    .mg-single-project__cta h2 {
        font-size: 42px;
    }
}

.mg-site-footer .mg-footer-group nav {
    position: absolute;
    right: clamp(150px, 10.2vw, 229px);
    top: clamp(28px, 1.83vw, 41px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(80px, 6.7vw, 150px);
    min-width: min(48vw, 900px);
}

.mg-site-footer .mg-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(7px, 0.48vw, 11px);
}

.mg-site-footer .mg-footer-column p,
.mg-site-footer .mg-footer-group nav a {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(10px, 0.63vw, 14px);
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.mg-site-footer .mg-footer-column p {
    margin-bottom: clamp(4px, 0.27vw, 6px);
    color: rgba(255, 255, 255, 0.52);
    font-size: clamp(13px, 0.8vw, 18px);
}

.mg-site-footer .mg-footer-group--products .mg-footer-column,
.mg-site-footer .mg-footer-group--support .mg-footer-column {
    grid-column: 3;
}

.mg-site-footer .mg-footer-group > span {
    position: absolute;
    top: clamp(25px, 1.7vw, 38px);
    right: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 0.89vw, 20px);
    font-weight: 300;
}

@media (max-width: 1280px) {
    .mg-site-header {
        height: 160px;
    }

    .mg-site-header__logo {
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-main-nav,
    .mg-sub-nav {
        justify-content: center;
    }

    .mg-main-nav {
        top: 92px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-utility-nav {
        display: none;
    }

    .mg-sub-nav {
        top: 132px;
        left: 50%;
        max-width: calc(100% - 48px);
        transform: translateX(-50%);
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mg-sub-nav::-webkit-scrollbar {
        display: none;
    }

    .mg-projects-hero {
        padding-top: 64px;
    }

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

@media (max-width: 900px) {
    .mg-site-header {
        height: 150px;
        --mg-project-x: 24px;
    }

    .mg-main-nav {
        gap: 22px;
    }

    .mg-projects-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 64px 24px 0;
    }

    .mg-projects-hero__copy {
        order: 2;
        padding-bottom: 0;
    }

    .mg-projects-hero h1 {
        order: 1;
        font-size: clamp(74px, 18vw, 140px);
        line-height: 0.95;
        text-align: left;
    }

    .mg-projects-filters {
        padding: 42px 24px 28px;
    }

    .mg-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 44px 18px;
        padding: 0 24px 72px;
    }

    .mg-project-single {
        --mg-project-x: 24px;
        --mg-project-right: 24px;
    }

    .mg-project-single__heading {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 430px;
        padding-top: 96px;
    }

    .mg-project-single__hero {
        min-height: 440px;
    }

    .mg-project-single__intro {
        grid-template-columns: 1fr 2fr;
    }

    .mg-project-single__details {
        grid-column: 2;
    }
}

@media (max-width: 560px) {
    .mg-site-header {
        height: 158px;
        --mg-project-x: 16px;
    }

    .mg-site-header__logo {
        top: 31px;
        width: 158px;
    }

    .mg-main-nav {
        top: 101px;
        gap: 18px;
    }

    .mg-main-nav a,
    .mg-sub-nav a {
        font-size: 12px;
    }

    .mg-sub-nav {
        top: 136px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 22px;
        overflow-x: auto;
        width: calc(100vw - 32px);
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .mg-sub-nav::-webkit-scrollbar {
        display: none;
    }

    .mg-projects-hero {
        padding-inline: 16px;
    }

    .mg-projects-hero h1 {
        font-size: clamp(62px, 22vw, 92px);
    }

    .mg-projects-hero__copy {
        font-size: 15px;
    }

    .mg-projects-filters {
        padding-inline: 16px;
        gap: 6px;
    }

    .mg-projects-filters a {
        min-height: 34px;
        padding: 7px 14px;
        font-size: 13px;
    }

    .mg-project-grid {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-inline: 16px;
    }

    .mg-project-card__title {
        font-size: 19px;
    }

    .mg-project-card__meta {
        font-size: 16px;
    }

    .mg-project-footer {
        padding: 64px 20px 80px;
    }

    .mg-project-footer__logo {
        margin-bottom: 54px;
    }

    .mg-footer-group {
        min-height: 112px;
    }

    .mg-project-single {
        --mg-project-x: 16px;
        --mg-project-right: 16px;
    }

    .mg-project-single__heading {
        min-height: 340px;
        padding: 64px 16px 48px;
    }

    .mg-project-single__heading h1 {
        font-size: clamp(58px, 19vw, 88px);
    }

    .mg-project-single__hero {
        height: 125vw;
        min-height: 0;
    }

    .mg-project-single__intro {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 72px 16px 88px;
    }

    .mg-project-single__content {
        font-size: 29px;
    }

    .mg-project-single__details {
        grid-column: auto;
    }

    .mg-project-single__gallery {
        grid-template-columns: 1fr;
        padding: 0 16px 110px;
    }

    .mg-project-single__gallery-item,
    .mg-project-single__gallery-item--1 {
        grid-column: auto;
        aspect-ratio: 4 / 5;
    }

    .mg-project-single__related {
        padding: 0 16px 96px;
    }

    .mg-project-single__related-heading {
        display: block;
    }

    .mg-project-single__related-heading p {
        margin-bottom: 24px;
    }

    .mg-project-single__related-heading h2 {
        font-size: 64px;
    }

    .mg-project-single__related-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }
}

/* Parasols home */
.mg-parasols-page {
    background: var(--mg-white);
    color: var(--mg-black);
    font-family: var(--mg-font);
    --mg-parasols-x: clamp(32px, 6.25vw, 140px);
}

.mg-parasols-hero {
    position: relative;
    min-height: clamp(760px, 50.94vw, 1141px);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 303px), linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--mg-parasols-hero);
    background-position: center;
    background-size: cover;
    color: var(--mg-white);
}

.mg-pergolas-hero {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0) 303px), linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), var(--mg-parasols-hero);
    background-position: center bottom;
}

.mg-parasols-header {
    position: relative;
    height: 134px;
    color: var(--mg-white);
}

.mg-parasols-header::before,
.mg-parasols-header::after {
    position: absolute;
    right: var(--mg-parasols-x);
    left: var(--mg-parasols-x);
    height: 1px;
    content: "";
    background: rgba(217, 217, 217, 0.4);
}

.mg-parasols-header::before {
    top: 81px;
}

.mg-parasols-header::after {
    top: 133px;
}

.mg-parasols-header__logo {
    position: absolute;
    top: 32px;
    left: var(--mg-parasols-x);
    width: 157px;
}

.mg-parasols-header__logo img {
    width: 100%;
    height: auto;
}

.mg-parasols-main-nav,
.mg-parasols-sub-nav,
.mg-parasols-utility-nav {
    position: absolute;
    display: flex;
    align-items: center;
}

.mg-parasols-main-nav {
    top: 49px;
    left: calc(var(--mg-parasols-x) + 230px);
    gap: 55px;
}

.mg-parasols-sub-nav {
    top: 97px;
    left: calc(var(--mg-parasols-x) + 9px);
    gap: 55px;
}

.mg-parasols-utility-nav {
    top: 97px;
    right: calc(var(--mg-parasols-x) + 3px);
    gap: 28px;
}

.mg-parasols-main-nav a,
.mg-parasols-sub-nav a,
.mg-parasols-utility-nav a {
    color: currentColor;
    font-size: 14px;
    line-height: 1.05;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.mg-parasols-main-nav a:not(.is-active) {
    opacity: 0.6;
}

.mg-parasols-main-nav a.is-active,
.mg-parasols-utility-nav a {
    font-weight: 500;
}

.mg-parasols-utility-nav a.is-touch {
    color: #df5d24;
}

.mg-parasols-utility-nav a[href="#search"] {
    position: relative;
    width: 14px;
    height: 14px;
    overflow: hidden;
    font-size: 0;
}

.mg-parasols-utility-nav a[href="#search"]::before {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 9px;
    height: 9px;
    border: 1px solid currentColor;
    border-radius: 50%;
    content: "";
}

.mg-parasols-utility-nav a[href="#search"]::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    width: 5px;
    height: 1px;
    content: "";
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: right center;
}

.mg-parasols-hero__content {
    position: absolute;
    left: calc(var(--mg-parasols-x) - 3px);
    top: clamp(330px, 20.45vw, 438px);
}

.mg-parasols-hero__content h1 {
    margin: 0;
    color: var(--mg-white);
    font-size: clamp(48px, 2.92vw, 65px);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: -0.015em;
}

.mg-parasols-hero__actions {
    display: flex;
    gap: 17px;
    margin-top: 72px;
}

.mg-parasols-hero__actions a {
    min-width: 277px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    color: var(--mg-white);
    font-family: Inter, var(--mg-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.mg-parasols-hero__actions span {
    transform: rotate(-10deg);
}

.mg-parasols-intro {
    padding: clamp(170px, 9.22vw, 206px) var(--mg-parasols-x) clamp(190px, 13.1vw, 294px);
    text-align: center;
}

.mg-eyebrow,
.mg-parasols-intro > p:last-child,
.mg-parasols-collection__copy > p,
.mg-parasols-story__copy > p,
.mg-parasols-cta > p {
    margin: 0;
    font-size: clamp(18px, 1.12vw, 25px);
    font-weight: 400;
    line-height: 1.25;
    text-transform: uppercase;
}

.mg-parasols-intro h2,
.mg-parasols-cta h2 {
    margin: 26px 0 52px;
    font-size: clamp(44px, 2.92vw, 65px);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: -0.015em;
}

.mg-parasols-intro h2 strong {
    font-weight: 600;
}

.mg-parasols-intro > p:last-child {
    max-width: 1153px;
    margin: 0 auto;
    text-transform: uppercase;
}

.mg-parasols-audiences {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mg-parasol-audience {
    position: relative;
    min-height: clamp(620px, 47.6vw, 1066px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    color: var(--mg-white);
    text-align: center;
    text-decoration: none;
}

.mg-parasol-audience img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.mg-parasol-audience::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.mg-parasol-audience span,
.mg-parasol-audience em {
    position: absolute;
    z-index: 2;
}

.mg-parasol-audience span {
    bottom: 158px;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 0.7;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.mg-parasol-audience em {
    bottom: 119px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    text-decoration: underline;
}

.mg-parasols-collection {
    position: relative;
    height: clamp(640px, 44.64vw, 1000px);
    margin-top: clamp(140px, 10.04vw, 225px);
    overflow: hidden;
    background: var(--mg-white);
    --mg-slide-width: min(61.25vw, 1372px);
    --mg-slide-gap: clamp(14px, 0.98vw, 22px);
    --mg-slide-step: calc(var(--mg-slide-width) + var(--mg-slide-gap));
}

.mg-parasols-collection__controls {
    position: absolute;
    top: 12.1%;
    left: var(--mg-parasols-x);
    z-index: 4;
    display: flex;
    gap: clamp(10px, 0.71vw, 16px);
}

.mg-parasols-collection__controls button,
.mg-parasols-testimonials__intro button {
    width: clamp(34px, 2.37vw, 53px);
    height: clamp(34px, 2.37vw, 53px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    background: transparent;
    color: #9a9a9a;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(22px, 1.52vw, 34px);
    line-height: 1;
    cursor: pointer;
}

.mg-parasols-testimonials__intro button:disabled {
    opacity: 0.45;
    cursor: default;
}

.mg-parasols-collection__copy {
    position: absolute;
    top: 37%;
    left: var(--mg-parasols-x);
    z-index: 3;
}

.mg-parasols-collection__copy h2,
.mg-parasols-story__copy h2 {
    margin: 62px 0 58px;
    font-size: clamp(58px, 3.98vw, 89px);
    font-weight: 500;
    line-height: 0.89;
    letter-spacing: -0.01em;
}

.mg-dark-pill,
.mg-light-pill {
    width: 257px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: rgba(38, 38, 38, 0.99);
    color: var(--mg-white);
    font-size: 18px;
    line-height: 1.15;
    text-decoration: none;
}

.mg-light-pill {
    width: 140px;
    height: 29px;
    background: var(--mg-white);
    color: var(--mg-black);
    font-size: 10px;
}

.mg-parasols-collection__copy span {
    display: block;
    margin-top: clamp(168px, 12.59vw, 282px);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
}

.mg-parasols-collection__viewport {
    position: absolute;
    top: 0;
    left: 36.875%;
    width: calc(100% - 36.875%);
    height: 100%;
    overflow: hidden;
}

.mg-parasols-collection__track {
    height: 100%;
    display: flex;
    gap: var(--mg-slide-gap);
    transition: transform 450ms ease;
    will-change: transform;
}

.mg-parasols-collection__slide {
    width: var(--mg-slide-width);
    height: 100%;
    flex: 0 0 var(--mg-slide-width);
}

.mg-parasols-collection__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mg-parasols-products {
    padding: clamp(82px, 5.76vw, 129px) 0 0;
    background: var(--mg-white);
}

.mg-parasols-products__heading {
    margin-bottom: clamp(54px, 3.88vw, 87px);
    text-align: center;
}

.mg-parasols-products__heading p {
    margin: 0;
    color: var(--mg-black);
    font-size: clamp(18px, 1.12vw, 25px);
    font-weight: 400;
    line-height: 1.24;
    text-transform: uppercase;
}

.mg-parasols-products__heading a {
    display: inline-block;
    margin-top: 18px;
    color: var(--mg-black);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(15px, 0.8vw, 18px);
    font-weight: 400;
    line-height: 1.15;
    text-decoration: none;
}

.mg-parasols-products__heading a::after {
    display: block;
    height: 1px;
    margin-top: 1px;
    content: "";
    background: currentColor;
}

.mg-parasols-products__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(4px, 0.36vw, 8px);
}

.mg-parasols-products article {
    min-width: 0;
    position: relative;
    padding: 0;
}

.mg-parasols-products__link {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.mg-parasols-products__link:focus-visible {
    outline: 2px solid var(--mg-black);
    outline-offset: 4px;
}

.mg-parasols-products__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: clamp(72px, 7vw, 140px) var(--mg-parasols-x);
    font-size: clamp(20px, 1.4vw, 30px);
    text-align: center;
}

/* Dynamic parasol collection archive */
.mg-parasol-archive {
    min-height: 100vh;
    background: var(--mg-white);
    color: var(--mg-black);
    --mg-archive-x: clamp(24px, 6.25vw, 140px);
    --mg-parasols-x: clamp(24px, 6.25vw, 140px);
}

.mg-parasol-archive__masthead {
    min-height: 155px;
    background: var(--mg-white);
    color: var(--mg-black);
}

.mg-parasol-archive__masthead .mg-parasols-header {
    height: 155px;
    color: var(--mg-black);
}

.mg-parasol-archive__masthead .mg-parasols-header::before,
.mg-parasol-archive__masthead .mg-parasols-header::after {
    right: var(--mg-parasols-x);
    left: var(--mg-parasols-x);
    background: rgba(0, 0, 0, 0.3);
}

.mg-parasol-archive__masthead .mg-parasols-header__logo img {
    filter: invert(1);
}

.mg-parasol-archive__masthead .mg-parasols-header::before {
    top: 81px;
}

.mg-parasol-archive__masthead .mg-parasols-header::after {
    top: 133px;
}

.mg-parasol-archive__masthead .mg-parasols-header__logo {
    top: 40.5px;
    left: var(--mg-parasols-x);
    width: 157px;
}

.mg-parasol-archive__masthead .mg-parasols-main-nav {
    top: 44px;
    left: calc(var(--mg-parasols-x) + 352px);
    gap: 54px;
}

.mg-parasol-archive__masthead .mg-parasols-sub-nav {
    top: 97px;
    left: calc(var(--mg-parasols-x) + 9px);
    gap: 68px;
}

.mg-parasol-archive__masthead .mg-parasols-utility-nav {
    top: 97px;
    right: calc(var(--mg-parasols-x) + 30px);
    gap: 28px;
}

.mg-parasol-archive__masthead .mg-parasols-main-nav a,
.mg-parasol-archive__masthead .mg-parasols-sub-nav a,
.mg-parasol-archive__masthead .mg-parasols-utility-nav a {
    font-size: 14px;
    line-height: 20.8px;
}

.mg-parasol-archive__masthead .mg-parasols-main-nav a {
    letter-spacing: 0.42px;
}

.mg-parasol-archive__masthead .mg-parasols-sub-nav a {
    letter-spacing: 0.5px;
    text-transform: none;
}

.mg-parasol-archive__masthead .mg-parasols-sub-nav a.is-active {
    text-transform: none;
}

.mg-parasol-archive__masthead .mg-parasols-main-nav a.is-active,
.mg-parasol-archive__masthead .mg-parasols-utility-nav a {
    font-weight: 700;
}

.mg-parasol-archive__intro {
    padding: clamp(100px, 9vw, 190px) var(--mg-archive-x) clamp(72px, 6vw, 125px);
    text-align: center;
}

.mg-parasol-archive__intro p {
    margin: 0 0 24px;
    font-size: clamp(16px, 1.12vw, 25px);
    text-transform: uppercase;
}

.mg-parasol-archive__intro h1 {
    margin: 0;
    font-size: clamp(52px, 5.1vw, 112px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.mg-parasol-archive__filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 var(--mg-archive-x) clamp(46px, 4vw, 82px);
}

.mg-parasol-archive__filters a {
    min-width: 132px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid #d4d4d4;
    border-radius: 999px;
    color: var(--mg-black);
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
}

.mg-parasol-archive__filters a.is-active {
    border-color: #1c1c1c;
    background: #1c1c1c;
    color: var(--mg-white);
}

.mg-parasol-archive__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding-bottom: clamp(100px, 9vw, 190px);
}

.mg-parasol-archive__card,
.mg-parasol-archive__card a {
    min-width: 0;
}

.mg-parasol-archive__card a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mg-parasol-archive__media {
    position: relative;
    aspect-ratio: 554 / 750;
    overflow: hidden;
    background: #f3f3f3;
}

.mg-parasol-archive__panel {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.mg-parasol-archive__product {
    position: absolute;
    z-index: 2;
    height: auto;
    pointer-events: none;
}

.mg-parasol-archive__product--1 {
    top: 32%;
    left: 7.76%;
    width: 62.82%;
}

.mg-parasol-archive__product--3 {
    top: 34.4%;
    left: 3.6%;
    width: 90.81%;
}

.mg-parasol-archive__product--4 {
    top: 36.27%;
    left: 8.12%;
    width: 84.3%;
}

.mg-parasol-archive__card h2 {
    margin: 22px 20px 0;
    font-size: clamp(15px, 0.9vw, 20px);
    font-weight: 500;
}

.mg-parasol-archive__empty {
    grid-column: 1 / -1;
    padding: 80px var(--mg-archive-x);
    text-align: center;
}

/* Figma 19:1962 — dynamic pergolas collection */
.mg-pergola-collection-page {
    background: var(--mg-white);
    color: var(--mg-black);
    font-family: var(--mg-font);
    --mg-pergola-collection-x: clamp(24px, 6.25vw, 140px);
    --mg-parasols-x: clamp(24px, 6.25vw, 140px);
}

.mg-pergola-collection-page__masthead .mg-parasols-main-nav {
    left: calc(var(--mg-parasols-x) + 230px);
}

.mg-pergola-collection-page__masthead .mg-parasols-sub-nav {
    gap: clamp(34px, 3vw, 68px);
}

.mg-pergola-collection-page__masthead .mg-parasols-sub-nav a {
    text-transform: none;
}

.mg-pergola-collection-page__masthead .mg-parasols-utility-nav a[href="#search"] {
    color: var(--mg-black);
}

.mg-pergola-collection-hero {
    min-height: clamp(420px, 28.84vw, 646px);
    display: grid;
    grid-template-columns: minmax(0, 1198fr) minmax(0, 1042fr);
    align-items: center;
}

.mg-pergola-collection-hero img {
    width: 100%;
    height: clamp(420px, 28.84vw, 646px);
    display: block;
    object-fit: cover;
}

.mg-pergola-collection-hero h1 {
    max-width: 720px;
    justify-self: end;
    margin: 0 var(--mg-pergola-collection-x) 0 48px;
    font-size: clamp(86px, 7.32vw, 164px);
    font-weight: 700;
    line-height: 0.82;
    letter-spacing: -0.031em;
    text-align: right;
}

.mg-pergola-collection-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: clamp(70px, 5.49vw, 123px) var(--mg-pergola-collection-x) clamp(44px, 1.96vw, 44px);
}

.mg-pergola-collection-filters a {
    min-width: 182px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ededed;
    border-radius: 999px;
    background: #ededed;
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
    line-height: 20.8px;
    text-align: center;
    text-decoration: none;
}

.mg-pergola-collection-filters a.is-active {
    border-color: var(--mg-black);
    background: var(--mg-black);
    color: var(--mg-white);
}

.mg-pergola-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 8px;
}

.mg-pergola-collection-grid article {
    min-width: 0;
    margin-bottom: clamp(76px, 5.76vw, 129px);
}

.mg-pergola-collection-grid a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.mg-pergola-collection-card__media {
    position: relative;
    aspect-ratio: 554 / 750;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
}

.mg-pergola-collection-card__product {
    width: 74%;
    height: auto;
    display: block;
    object-fit: contain;
}

.mg-pergola-collection-card__product--2 {
    width: 82%;
}

.mg-pergola-collection-card__product--3 {
    width: 72%;
}

.mg-pergola-collection-card__product--4 {
    width: 78%;
}

.mg-pergola-collection-grid h2 {
    margin: clamp(18px, 1.25vw, 28px) 0 0 clamp(13px, 1.92vw, 43px);
    font-size: clamp(14px, 0.8vw, 18px);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: 0.01em;
}

.mg-pergola-collection-grid__empty {
    grid-column: 1 / -1;
    padding: 80px var(--mg-pergola-collection-x);
    text-align: center;
}

.mg-pergola-collection-cta {
    min-height: clamp(330px, 15.32vw, 343px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 var(--mg-pergola-collection-x) clamp(70px, 6.7vw, 150px);
    text-align: center;
}

.mg-pergola-collection-cta p {
    margin: 0 0 21px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(12px, 0.8vw, 18px);
    line-height: 1.16;
    text-transform: uppercase;
}

.mg-pergola-collection-cta h2 {
    margin: 0 0 clamp(36px, 2.5vw, 56px);
    font-size: clamp(48px, 2.92vw, 65px);
    font-weight: 400;
    line-height: 1.13;
    letter-spacing: -0.015em;
}

@media (max-width: 1020px) {
    .mg-pergola-collection-page__masthead .mg-parasols-header__logo {
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-pergola-collection-page__masthead .mg-parasols-main-nav {
        top: 92px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-pergola-collection-page__masthead .mg-parasols-sub-nav {
        left: 24px;
        right: 24px;
        gap: 32px;
        overflow-x: auto;
    }

    .mg-pergola-collection-hero {
        grid-template-columns: 1fr;
    }

    .mg-pergola-collection-hero h1 {
        justify-self: start;
        margin: 64px var(--mg-pergola-collection-x) 0;
        font-size: clamp(72px, 12vw, 116px);
        text-align: left;
    }

    .mg-pergola-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .mg-pergola-collection-page {
        --mg-pergola-collection-x: 16px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-header {
        height: 148px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-header::before {
        top: 74px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-header::after {
        top: 124px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-header__logo {
        top: 24px;
        width: 118px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-main-nav {
        top: 84px;
        left: 50%;
        width: calc(100% - 32px);
        justify-content: center;
        gap: 18px;
        transform: translateX(-50%);
    }

    .mg-pergola-collection-page__masthead .mg-parasols-sub-nav {
        top: 123px;
        left: 16px;
        right: 16px;
        gap: 18px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-sub-nav a {
        font-size: 11px;
    }

    .mg-pergola-collection-hero img {
        height: 270px;
    }

    .mg-pergola-collection-hero h1 {
        margin-top: 46px;
        font-size: clamp(56px, 17vw, 80px);
    }

    .mg-pergola-collection-filters {
        gap: 7px;
        padding-top: 58px;
    }

    .mg-pergola-collection-filters a {
        min-width: calc(50% - 4px);
        height: 38px;
        font-size: 13px;
    }

    .mg-pergola-collection-grid {
        gap: 8px;
        padding: 0 8px;
    }

    .mg-pergola-collection-grid article {
        margin-bottom: 38px;
    }

    .mg-pergola-collection-card__media {
        aspect-ratio: 1 / 1.08;
    }

    .mg-pergola-collection-card__product,
    .mg-pergola-collection-card__product--2,
    .mg-pergola-collection-card__product--3,
    .mg-pergola-collection-card__product--4 {
        width: 84%;
    }

    .mg-pergola-collection-grid h2 {
        margin: 10px 0 0;
        font-size: 12px;
    }

    .mg-pergola-collection-cta {
        min-height: 0;
        padding: 64px 16px 92px;
    }
}

@media (max-width: 900px) {
    .mg-parasol-archive__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mg-parasol-archive__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

/* Figma 19:2232 — dynamic single parasol product */
.mg-product-single {
    --mg-product-x: clamp(24px, 6.25vw, 140px);
    background: var(--mg-white);
    color: var(--mg-black);
    font-family: var(--mg-font);
}

.mg-product-header {
    position: relative;
    height: 134px;
    margin: 0 var(--mg-product-x);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.mg-product-header::before {
    position: absolute;
    top: 81px;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: rgba(0, 0, 0, 0.3);
}

.mg-product-header__logo {
    position: absolute;
    top: 40px;
    left: 0;
    width: 157px;
}

.mg-product-header__logo img {
    width: 100%;
    filter: invert(1);
}

.mg-product-header nav {
    position: absolute;
    display: flex;
    align-items: center;
}

.mg-product-header__main {
    top: 44px;
    left: 230px;
    gap: 55px;
}

.mg-product-header__collections {
    top: 96px;
    left: 9px;
    gap: clamp(28px, 3vw, 68px);
}

.mg-product-header__utility {
    top: 96px;
    right: 3px;
    gap: 28px;
}

.mg-product-header a {
    color: inherit;
    font-size: 14px;
    line-height: 20.8px;
    letter-spacing: 0.03em;
    text-decoration: none;
    white-space: nowrap;
}

.mg-product-header__main a {
    text-transform: uppercase;
}

.mg-product-header__main a:not(.is-active) {
    opacity: 0.6;
}

.mg-product-header__main .is-active,
.mg-product-header__utility a {
    font-weight: 700;
}

.mg-product-header__utility .is-touch {
    color: #d55012;
}

.mg-product-header__search {
    width: 19px;
    height: 19px;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.mg-product-header__search::after {
    position: absolute;
    right: -3px;
    bottom: 0;
    width: 6px;
    height: 1px;
    content: "";
    background: currentColor;
    transform: rotate(48deg);
}

.mg-product-single__product {
    display: grid;
    grid-template-columns: minmax(0, 889fr) minmax(0, 939fr);
    gap: clamp(70px, 6.07vw, 136px);
    padding: 71px var(--mg-product-x) 81px;
}

.mg-product-single__hero {
    width: 100%;
    aspect-ratio: 889 / 790;
    border-radius: 20px;
    object-fit: cover;
}

.mg-product-single__finishes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.mg-product-single__finishes figure {
    position: relative;
    aspect-ratio: 440 / 484;
    margin: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #f9f9f9;
}

.mg-product-single__finishes img {
    width: 100%;
    height: 86%;
    padding: 11% 4% 0;
    object-fit: contain;
}

.mg-product-single__finishes figcaption {
    position: absolute;
    right: 25px;
    bottom: 20px;
    left: 25px;
    font-size: 12px;
    line-height: 20.8px;
    text-transform: capitalize;
}

.mg-product-single__details h1 {
    margin: -12px 0 14px;
    font-size: clamp(44px, 2.86vw, 64px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
}

.mg-product-single__details h1 strong {
    font-weight: 700;
}

.mg-product-single__description {
    margin-bottom: 104px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 21.5px;
}

.mg-product-single__description p {
    margin: 0;
}

.mg-product-single__details h2 {
    margin: 0 0 21px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 30px;
    line-height: 35px;
}

.mg-product-single__data dl {
    margin: 0;
}

.mg-product-single__data dl > div {
    min-height: 58px;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    border-bottom: 1px solid #919191;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
}

.mg-product-single__data dt,
.mg-product-single__data dd {
    margin: 0;
}

.mg-product-single__data dd {
    padding-left: 55px;
}

.mg-product-single__specifications {
    margin-top: 115px;
}

.mg-product-single__spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12%;
    row-gap: 70px;
}

.mg-product-single__spec-grid h3,
.mg-product-single__spec-grid p {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 23px;
}

.mg-product-single__spec-grid h3 {
    margin-bottom: 25px;
}

.mg-product-single__spec-grid p {
    white-space: pre-line;
}

.mg-product-single__general {
    margin-top: 157px;
}

.mg-product-single__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px;
    margin-top: 144px;
}

.mg-product-single__actions a,
.mg-product-single__cta a {
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #c3c3c3;
    border-radius: 999px;
    background: rgba(227, 227, 227, 0.99);
    color: inherit;
    font-size: 18px;
    line-height: 20.8px;
    text-decoration: none;
}

.mg-product-single__actions .is-primary,
.mg-product-single__cta a {
    border-color: #262626;
    background: #262626;
    color: var(--mg-white);
}

.mg-product-single__lifestyle {
    margin: 0 var(--mg-product-x);
    overflow: hidden;
    border-radius: 20px;
}

.mg-product-single__lifestyle img {
    width: 100%;
    aspect-ratio: 1986 / 940;
    object-fit: cover;
}

.mg-product-single__related {
    padding-top: 106px;
}

.mg-product-single__related > h2 {
    margin: 0 var(--mg-product-x) 31px;
    font-size: 20px;
    font-weight: 400;
    line-height: 37px;
}

.mg-product-single__related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.mg-product-single__related article a {
    color: inherit;
    text-decoration: none;
}

.mg-product-single__related article a > div {
    aspect-ratio: 554 / 750;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.mg-product-single__related img {
    width: 90%;
    max-height: 58%;
    object-fit: contain;
}

.mg-product-single__related h3 {
    margin: 22px 44px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 20.8px;
    letter-spacing: 0.01em;
}

.mg-product-single__cta {
    min-height: 584px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 90px 24px 65px;
    text-align: center;
}

.mg-product-single__cta p {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 20.8px;
    text-transform: uppercase;
}

.mg-product-single__cta h2 {
    margin: 0 0 44px;
    font-size: clamp(48px, 3.3vw, 74px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.mg-product-single__cta a {
    width: 257px;
    height: 49px;
}

@media (max-width: 1180px) {
    .mg-product-header__collections {
        max-width: calc(100% - 280px);
        gap: 24px;
        overflow-x: auto;
    }

    .mg-product-single__product {
        gap: 48px;
    }

    .mg-product-single__description {
        margin-bottom: 64px;
    }

    .mg-product-single__specifications,
    .mg-product-single__general,
    .mg-product-single__actions {
        margin-top: 72px;
    }
}

@media (max-width: 820px) {
    .mg-product-header {
        height: 124px;
    }

    .mg-product-header__main {
        right: 0;
        left: auto;
    }

    .mg-product-header__utility {
        display: none !important;
    }

    .mg-product-header__collections {
        max-width: 100%;
        right: 0;
    }

    .mg-product-single__product {
        grid-template-columns: 1fr;
        padding-top: 42px;
    }

    .mg-product-single__visuals {
        display: contents;
    }

    .mg-product-single__details {
        grid-row: 2;
    }

    .mg-product-single__finishes {
        grid-row: 3;
    }

    .mg-product-single__details h1 {
        margin-top: 0;
    }

    .mg-product-single__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mg-product-single__related h3 {
        margin-bottom: 42px;
    }
}

@media (max-width: 560px) {
    .mg-product-header__logo {
        top: 32px;
        width: 125px;
    }

    .mg-product-header__main {
        top: 37px;
        gap: 16px;
    }

    .mg-product-header__main a {
        font-size: 11px;
    }

    .mg-product-header::before {
        top: 72px;
    }

    .mg-product-header__collections {
        top: 84px;
    }

    .mg-product-header__collections a {
        font-size: 12px;
    }

    .mg-product-single__finishes,
    .mg-product-single__spec-grid,
    .mg-product-single__actions {
        grid-template-columns: 1fr;
    }

    .mg-product-single__data dl > div {
        grid-template-columns: 40% 60%;
        font-size: 14px;
    }

    .mg-product-single__data dd {
        padding-left: 20px;
    }

    .mg-product-single__related-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .mg-product-single__related article {
        min-width: 82vw;
        scroll-snap-align: start;
    }
}

.mg-parasols-products__panel {
    width: 100%;
    aspect-ratio: 554 / 750;
    display: block;
    background: #f5f5f5;
    object-fit: cover;
}

.mg-parasols-products__item {
    position: absolute;
    z-index: 2;
    display: block;
    overflow: hidden;
    pointer-events: none;
}

.mg-parasols-products__item img {
    position: absolute;
    max-width: none;
}

.mg-parasols-products__item--1 {
    top: 32%;
    left: 7.76%;
    width: 62.82%;
    height: 42.53%;
}

.mg-parasols-products__item--1 img {
    top: 0;
    left: -38.51%;
    width: 171.24%;
    height: 99.84%;
}

.mg-parasols-products__item--3 {
    top: 34.4%;
    left: 3.6%;
    width: 90.81%;
    height: 39.33%;
}

.mg-parasols-products__item--3 img {
    top: 0;
    left: 0;
    width: 109.33%;
    height: 99.83%;
}

.mg-parasols-products__item--4 {
    top: 36.27%;
    left: 8.12%;
    width: 84.3%;
    height: 41.2%;
}

.mg-parasols-products__item--4 img {
    top: 0;
    left: -10.44%;
    width: 123.8%;
    height: 100%;
}

.mg-parasols-products h3 {
    margin: clamp(18px, 1.25vw, 28px) 0 0 clamp(13px, 0.9vw, 20px);
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(14px, 0.8vw, 18px);
    font-weight: 400;
    line-height: 1.16;
    text-align: left;
}

.mg-parasols-products article:first-child h3 {
    margin-left: clamp(26px, 1.92vw, 43px);
}

.mg-pergolas-products .mg-parasols-products__grid {
    align-items: start;
}

.mg-pergolas-products__media {
    position: relative;
    aspect-ratio: 554 / 750;
    display: block;
    overflow: hidden;
    background: #f5f5f5;
}

.mg-pergolas-products__panel {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.mg-pergolas-products__item {
    position: absolute;
    z-index: 2;
    display: block;
    pointer-events: none;
}

.mg-pergolas-products__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.mg-pergolas-products__item--1,
.mg-pergolas-products__item--4 {
    top: 34.8%;
    left: 11.55%;
    width: 76.9%;
    height: 37.87%;
}

.mg-pergolas-products__item--3 {
    top: 36.13%;
    left: 14.62%;
    width: 71.12%;
    height: 35.07%;
}

.mg-pergolas-products h3 {
    margin-top: clamp(18px, 1.25vw, 28px);
}

.mg-parasols-inspired {
    min-height: clamp(1069px, 74.33vw, 1665px);
    padding: clamp(49px, 3.39vw, 76px) clamp(32px, 6.47vw, 145px) clamp(76px, 5.31vw, 119px);
    background: #1c1c1c;
    color: var(--mg-white);
    text-align: center;
}

.mg-parasols-inspired h2 {
    margin: 0;
    font-size: clamp(44px, 2.68vw, 60px);
    font-weight: 400;
    line-height: 1.32;
    letter-spacing: -0.015em;
}

.mg-parasols-inspired > p {
    max-width: clamp(520px, 33.42vw, 749px);
    margin: clamp(16px, 1.12vw, 25px) auto clamp(100px, 7.1vw, 159px);
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(14px, 0.8vw, 18px);
    line-height: 1.43;
}

.mg-parasols-inspired__filters {
    display: flex;
    justify-content: flex-start;
    gap: clamp(5px, 0.36vw, 8px);
    margin-bottom: clamp(21px, 1.46vw, 33px);
}

.mg-parasols-inspired__filters a {
    min-width: clamp(86px, 5.99vw, 134px);
    height: clamp(25px, 1.73vw, 39px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #0a0a0a;
    color: var(--mg-white);
    font-size: clamp(11px, 0.8vw, 18px);
    text-decoration: none;
}

.mg-parasols-inspired__filters a.is-active {
    background: var(--mg-white);
    color: var(--mg-black);
}

.mg-parasols-inspired__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(17px, 1.16vw, 26px);
    row-gap: clamp(70px, 4.85vw, 109px);
    text-align: left;
}

.mg-parasols-inspired__grid a {
    display: block;
    color: var(--mg-white);
    text-decoration: none;
}

.mg-parasols-inspired__grid img {
    width: 100%;
    aspect-ratio: 474 / 345;
    object-fit: cover;
}

.mg-parasols-inspired__grid span,
.mg-parasols-inspired__grid em {
    display: block;
}

.mg-parasols-inspired__grid span {
    margin-top: clamp(11px, 0.77vw, 17px);
    font-size: clamp(12px, 0.84vw, 19px);
    line-height: 1.14;
}

.mg-parasols-inspired__grid em {
    margin-top: clamp(3px, 0.2vw, 5px);
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(11px, 0.77vw, 17px);
    font-style: normal;
    line-height: 1.3;
}

.mg-parasols-inspired .mg-light-pill {
    margin-top: clamp(69px, 4.78vw, 107px);
    width: clamp(127px, 8.8vw, 197px);
    height: clamp(27px, 1.88vw, 42px);
    font-size: clamp(10px, 0.63vw, 14px);
}

.mg-parasols-testimonials {
    position: relative;
    height: clamp(610px, 42.37vw, 949px);
    padding: 0;
    overflow: hidden;
    background: var(--mg-white);
}

.mg-parasols-testimonials__intro {
    position: absolute;
    top: 24.03%;
    left: var(--mg-parasols-x);
    z-index: 2;
}

.mg-parasols-testimonials__intro p {
    margin: 0 0 19px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(12px, 0.8vw, 18px);
    line-height: 1.16;
    text-transform: uppercase;
}

.mg-parasols-testimonials__intro h2 {
    margin: 0 0 clamp(92px, 6.43vw, 144px);
    font-size: clamp(58px, 3.98vw, 89px);
    font-weight: 500;
    line-height: 0.89;
    letter-spacing: -0.01em;
}

.mg-parasols-testimonials__intro button {
    margin-right: 10px;
}

.mg-parasols-testimonials__cards {
    position: absolute;
    top: 0;
    left: 42.54%;
    right: 0;
    overflow: hidden;
}

.mg-parasols-testimonials__track {
    display: grid;
    grid-auto-columns: clamp(382px, 26.52vw, 594px);
    grid-auto-flow: column;
    gap: clamp(15px, 1.07vw, 24px);
    transition: transform 450ms ease;
    will-change: transform;
}

.mg-parasols-testimonials__cards article {
    min-height: clamp(439px, 30.5vw, 683px);
    position: relative;
    padding: clamp(32px, 2.14vw, 48px);
    background: #e7e7e7;
}

.mg-parasols-testimonials__cards article > img {
    position: absolute;
    top: clamp(32px, 2.23vw, 50px);
    right: clamp(32px, 2.23vw, 50px);
    width: clamp(150px, 10.4vw, 233px);
    height: clamp(150px, 10.4vw, 233px);
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
}

.mg-parasols-testimonials__cards article.is-featured {
    background: #b85f38;
    color: var(--mg-white);
}

.mg-parasols-testimonials__cards p {
    margin: clamp(181px, 12.73vw, 285px) 0 0;
    max-width: clamp(305px, 21.16vw, 474px);
    font-size: clamp(14px, 0.98vw, 22px);
    line-height: 1.15;
}

.mg-parasols-testimonials__cards strong {
    display: block;
    margin-top: clamp(34px, 2.37vw, 53px);
    font-size: clamp(12px, 0.8vw, 18px);
    letter-spacing: 0.08em;
}

.mg-parasols-testimonials__cards a {
    width: fit-content;
    min-width: clamp(137px, 9.49vw, 213px);
    height: clamp(27px, 1.88vw, 42px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: clamp(30px, 2.14vw, 48px);
    border-radius: 100px;
    background: rgba(38, 38, 38, 0.8);
    color: var(--mg-white);
    font-size: clamp(10px, 0.63vw, 14px);
    text-decoration: none;
}

.mg-parasols-story {
    grid-template-columns: 55% 45%;
    padding: clamp(170px, 12vw, 260px) var(--mg-parasols-x) 0;
}

.mg-parasols-story__media {
    order: 1;
}

.mg-parasols-story__copy {
    order: 2;
    padding-left: clamp(48px, 5vw, 112px);
}

.mg-parasols-cta {
    height: clamp(260px, 18.08vw, 405px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 var(--mg-parasols-x);
    text-align: center;
}

.mg-parasols-cta > p {
    margin-top: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(12px, 0.8vw, 18px);
    line-height: 1.16;
}

.mg-parasols-cta h2 {
    margin: clamp(14px, 0.94vw, 21px) 0 clamp(36px, 2.5vw, 56px);
    font-size: clamp(48px, 2.92vw, 65px);
    line-height: 1.13;
}

@media (max-width: 1180px) {
    .mg-parasols-header {
        height: 158px;
    }

    .mg-parasols-header__logo {
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-parasols-main-nav {
        top: 92px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-parasols-sub-nav {
        top: 132px;
        left: 24px;
        right: 24px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .mg-parasols-sub-nav::-webkit-scrollbar {
        display: none;
    }

    .mg-parasols-utility-nav {
        display: none;
    }

    .mg-parasols-hero__content {
        left: 32px;
    }

    .mg-parasols-collection {
        height: 720px;
        margin-top: 140px;
        --mg-slide-width: 72vw;
    }

    .mg-parasols-collection__copy {
        top: 34%;
        left: 32px;
    }

    .mg-parasols-collection__viewport {
        left: 38%;
        width: 62%;
    }

    .mg-parasols-inspired__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mg-parasols-testimonials {
        height: auto;
        min-height: 0;
        padding: 96px 32px;
    }

    .mg-parasols-testimonials__intro,
    .mg-parasols-testimonials__cards {
        position: static;
    }

    .mg-parasols-testimonials__cards {
        width: 100%;
        right: auto;
        margin-top: 44px;
    }

    .mg-parasols-story__copy {
        order: 1;
        padding-left: 0;
    }

    .mg-parasols-story__media {
        order: 2;
    }
}

@media (max-width: 980px) {
    .mg-pergolas-collection {
        height: auto;
        min-height: 0;
        padding: 0 32px 96px;
        --mg-slide-width: 100%;
    }

    .mg-pergolas-collection .mg-parasols-collection__controls,
    .mg-pergolas-collection .mg-parasols-collection__copy,
    .mg-pergolas-collection .mg-parasols-collection__viewport {
        position: static;
    }

    .mg-pergolas-collection .mg-parasols-collection__controls {
        margin-bottom: 34px;
    }

    .mg-pergolas-collection .mg-parasols-collection__copy {
        max-width: 360px;
        margin-bottom: 42px;
    }

    .mg-pergolas-collection .mg-parasols-collection__copy h2 {
        margin: 38px 0 34px;
    }

    .mg-pergolas-collection .mg-parasols-collection__copy span {
        margin-top: 52px;
    }

    .mg-pergolas-collection .mg-parasols-collection__viewport {
        width: 100%;
        height: clamp(420px, 62vw, 620px);
    }
}

@media (max-width: 700px) {
    .mg-parasols-page {
        --mg-parasols-x: 16px;
    }

    .mg-parasols-hero {
        min-height: 760px;
    }

    .mg-parasols-main-nav {
        gap: 18px;
    }

    .mg-parasols-main-nav a,
    .mg-parasols-sub-nav a {
        font-size: 12px;
    }

    .mg-parasols-hero__content {
        left: 16px;
        right: 16px;
        top: 320px;
    }

    .mg-parasols-hero__content h1 {
        font-size: 42px;
    }

    .mg-parasols-hero__actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 46px;
    }

    .mg-parasols-hero__actions a {
        min-width: 0;
        width: 100%;
    }

    .mg-parasols-intro {
        padding: 96px 16px 112px;
    }

    .mg-parasols-audiences,
    .mg-parasols-products__grid,
    .mg-parasols-inspired__grid {
        grid-template-columns: 1fr;
    }

    .mg-parasol-audience {
        min-height: 520px;
    }

    .mg-parasols-collection {
        height: auto;
        margin-top: 96px;
        padding: 0 16px;
        overflow: hidden;
        --mg-slide-width: calc(100vw - 32px);
    }

    .mg-parasols-collection__controls,
    .mg-parasols-collection__copy,
    .mg-parasols-collection__viewport {
        position: static;
    }

    .mg-parasols-collection__controls {
        margin-bottom: 24px;
    }

    .mg-parasols-collection__copy h2 {
        font-size: 52px;
    }

    .mg-parasols-collection__copy span {
        margin-top: 80px;
    }

    .mg-parasols-collection__viewport {
        width: 100%;
        height: 420px;
        margin-top: 44px;
    }

    .mg-parasols-products {
        padding-top: 88px;
    }

    .mg-parasols-inspired {
        padding: 96px 16px;
    }

    .mg-parasols-inspired__filters {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .mg-parasols-testimonials {
        padding: 96px 16px;
    }

    .mg-parasols-testimonials__intro h2 {
        margin-bottom: 44px;
    }

    .mg-parasols-testimonials__track {
        grid-auto-flow: column;
        grid-auto-columns: 100%;
    }

    .mg-parasols-testimonials__cards article {
        min-height: 300px;
    }

    .mg-parasols-testimonials__cards article > img {
        position: static;
        width: 120px;
        height: 120px;
        margin-bottom: 28px;
    }

    .mg-parasols-testimonials__cards p {
        margin-top: 0;
    }

    .mg-parasols-cta {
        height: auto;
        padding: 120px 16px;
    }

    .mg-site-footer .mg-footer-group nav {
        position: static;
        min-width: 0;
        display: none;
    }
}

@media (max-width: 700px) {
    .mg-pergolas-page .mg-parasols-hero {
        min-height: 640px;
    }

    .mg-pergolas-page .mg-parasols-header {
        height: 148px;
    }

    .mg-pergolas-page .mg-parasols-header::before {
        top: 74px;
    }

    .mg-pergolas-page .mg-parasols-header::after {
        top: 124px;
    }

    .mg-pergolas-page .mg-parasols-header__logo {
        top: 24px;
        width: 118px;
    }

    .mg-pergolas-page .mg-parasols-main-nav {
        top: 84px;
        width: calc(100% - 32px);
        justify-content: center;
    }

    .mg-pergolas-page .mg-parasols-sub-nav {
        top: 123px;
    }

    .mg-pergolas-page .mg-parasols-hero__content {
        top: 260px;
    }

    .mg-pergolas-page .mg-parasols-hero__content h1 {
        font-size: clamp(34px, 9.2vw, 42px);
        line-height: 1.08;
    }

    .mg-pergolas-page .mg-parasols-hero__actions {
        margin-top: 36px;
    }

    .mg-pergolas-products .mg-parasols-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 0 8px;
    }

    .mg-pergolas-products h3,
    .mg-pergolas-products article:first-child h3 {
        margin: 10px 0 20px;
        font-size: 12px;
        line-height: 1.2;
    }

    .mg-pergolas-products .mg-parasols-products__heading {
        margin-bottom: 38px;
    }

    .mg-pergolas-products__media {
        aspect-ratio: 1 / 1.08;
    }

    .mg-pergolas-products__item--1,
    .mg-pergolas-products__item--4 {
        top: 31%;
        left: 7%;
        width: 86%;
        height: 44%;
    }

    .mg-pergolas-products__item--3 {
        top: 31%;
        left: 10%;
        width: 80%;
        height: 42%;
    }

    .mg-pergolas-collection {
        margin-top: 86px;
        padding: 0 16px 84px;
    }

    .mg-pergolas-collection .mg-parasols-collection__viewport {
        height: min(78vw, 420px);
        margin-top: 34px;
    }
}

@media (max-width: 420px) {
    .mg-pergolas-products .mg-parasols-products__grid {
        gap: 6px;
        padding: 0 6px;
    }

    .mg-pergolas-products h3,
    .mg-pergolas-products article:first-child h3 {
        font-size: 11px;
    }
}

@media (max-width: 1020px) {
    .mg-pergola-collection-page__masthead .mg-parasols-header__logo {
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-pergola-collection-page__masthead .mg-parasols-main-nav {
        top: 92px;
        left: 50%;
        transform: translateX(-50%);
    }

    .mg-pergola-collection-page__masthead .mg-parasols-sub-nav {
        left: 24px;
        right: 24px;
        gap: 28px;
        overflow-x: auto;
    }
}

@media (max-width: 700px) {
    .mg-pergola-collection-page__masthead .mg-parasols-header__logo {
        top: 24px;
        width: 118px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-main-nav {
        top: 84px;
        width: calc(100% - 32px);
        justify-content: center;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-sub-nav {
        top: 123px;
        left: 16px;
        right: 16px;
        gap: 12px;
    }

    .mg-pergola-collection-page__masthead .mg-parasols-sub-nav a {
        font-size: 10px;
    }
}
