
@font-face {
    font-family: 'PoetsenOne-Regular';
    src: url("./src/PoetsenOne-Regular.ttf") format("truetype");
}

:root{
    --berry-scale: clamp(5px, 1.4vw, 14px);

    --type-section-heading: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --type-card-heading: clamp(1.375rem, 1.18rem + 0.85vw, 1.6875rem);
    --type-body: clamp(1rem, 0.94rem + 0.3vw, 1.1875rem);
    --type-meta: clamp(0.8125rem, 0.78rem + 0.16vw, 0.875rem);

    --berry-deep-blue: #3f68cb;
    --berry-blue: #5689e8;
    --petal-pink: #e9d2f4;
    --plum-purple: #363457;
    --very-violet: #23022e;
    --grassy-green: #98a886;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'PoetsenOne-Regular', sans-serif;
    color: var(--berry-blue);
}

.green-wave-section h1,
.process-section > .process-content > h2 {
    font-size: var(--type-section-heading);
    line-height: 1.08;
}

.process-step h3,
.monthly-card h2,
.calendar-booking h2,
.contact-form h2 {
    font-size: var(--type-card-heading);
    line-height: 1.15;
}

.process-step p,
.calendar-intro,
footer p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--type-body);
    line-height: 1.45;
}

.centered{
    text-align: center;
}

div.petal, section.petal{
    background-color: var(--petal-pink);
}

span.blue, p.blue, h1.blue, h2.blue, h3.blue, h4.blue, h5.blue, h6.blue{
    color: var(--berry-blue);
}
span.petal, p.petal, h1.petal, h2.petal, h3.petal, h4.petal, h5.petal, h6.petal{
    color: var(--petal-pink);
}
span.plum, p.plum, h1.plum, h2.plum, h3.plum, h4.plum, h5.plum, h6.plum{
    color: var(--plum-purple);
}
span.violet, p.violet, h1.violet, h2.violet, h3.violet, h4.violet, h5.violet, h6.violet{
    color: var(--very-violet);
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    position: relative;
}
nav {
    background-color: #363457;
    padding: 10px;
    text-align: center;
}
nav a {
    font-family: sans-serif, Arial, Helvetica;
    font-size: 24px;
    color: var(--plum-purple);
    text-shadow: 
    -0.75px -0.75px 0.75px var(--petal-pink),  
     0.75px -0.75px 0.75px var(--petal-pink),
    -0.75px  0.75px 0.75px var(--petal-pink),
     0.75px  0.75px 0.75px var(--petal-pink);
     opacity: 0.6;
    font-weight: 800;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s, text-shadow 0.3s, opacity 0.3s;
}
nav a.active, nav a:hover {
    color: var(--petal-pink);
    text-shadow: none;
}
nav a:hover {
    opacity: 1;
}

.mobile-nav {
    display: none;
}

main {
    position: relative;
    z-index: 1;
    isolation: isolate;
    background-color: white;
    min-height: 100vh;
}

@media (max-width: 760px) {
    body > nav {
        display: none;
    }

    .mobile-nav {
        position: fixed;
        z-index: 10000;
        bottom: max(16px, env(safe-area-inset-bottom));
        left: max(16px, env(safe-area-inset-left));
        display: block;
        font-family: Arial, Helvetica, sans-serif;
    }

    .mobile-nav__toggle {
        position: relative;
        display: grid;
        width: 68px;
        height: 68px;
        box-sizing: border-box;
        padding: 0;
        place-items: center;
        color: white;
        background: var(--plum-purple);
        border: 3px solid var(--petal-pink);
        border-radius: 50%;
        box-shadow: 0 10px 28px rgba(35, 2, 46, 0.3);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 180ms ease, background-color 180ms ease;
    }

    .mobile-nav__toggle:hover,
    .mobile-nav__toggle[aria-expanded="true"] {
        background: var(--very-violet);
    }

    .mobile-nav__toggle:focus-visible {
        outline: 4px solid var(--berry-blue);
        outline-offset: 4px;
    }

    .mobile-nav__icon,
    .mobile-nav__icon::before,
    .mobile-nav__icon::after {
        position: absolute;
        width: 27px;
        height: 3px;
        background: currentColor;
        border-radius: 999px;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .mobile-nav__icon {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mobile-nav__icon::before,
    .mobile-nav__icon::after {
        content: "";
        top: 0;
        left: 0;
    }

    .mobile-nav__icon::before {
        transform: translateY(-8px);
    }

    .mobile-nav__icon::after {
        transform: translateY(8px);
    }

    .mobile-nav__toggle[aria-expanded="true"] .mobile-nav__icon {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-nav__toggle[aria-expanded="true"] .mobile-nav__icon::before {
        transform: rotate(90deg);
    }

    .mobile-nav__toggle[aria-expanded="true"] .mobile-nav__icon::after {
        opacity: 0;
    }

    .mobile-nav__menu {
        position: absolute;
        bottom: 80px;
        left: 0;
        display: grid;
        width: min(230px, calc(100vw - 36px));
        box-sizing: border-box;
        gap: 5px;
        padding: 10px;
        background: var(--plum-purple);
        border: 2px solid rgba(233, 210, 244, 0.82);
        border-radius: 20px 20px 20px 5px;
        box-shadow: 0 16px 38px rgba(35, 2, 46, 0.28);
        transform-origin: bottom left;
        animation: mobile-nav-in 180ms ease-out;
    }

    .mobile-nav__menu[hidden] {
        display: none;
    }

    .mobile-nav__menu a {
        display: block;
        padding: 12px 15px;
        color: white;
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1.2;
        text-decoration: none;
        border-radius: 12px;
    }

    .mobile-nav__menu a:hover,
    .mobile-nav__menu a:focus-visible {
        color: var(--very-violet);
        background: var(--petal-pink);
        outline: none;
    }

    .mobile-nav__menu a[aria-current="page"] {
        color: var(--very-violet);
        background: white;
    }
}

@keyframes mobile-nav-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.96);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mobile-nav__toggle,
    .mobile-nav__icon,
    .mobile-nav__icon::before,
    .mobile-nav__icon::after {
        transition: none;
    }

    .mobile-nav__menu {
        animation: none;
    }
}
footer {
    position: relative;
    width: auto;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 999;
    isolation: isolate;
    contain: paint;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.header-sticky-shell {
    z-index: 0;
    position: sticky;
    top: 0vh;
    isolation: isolate;
}

header{
    background-color: #363457;
    height: calc(46 * var(--berry-scale));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.mobile-hero-title {
    display: none;
}

section{
    position: relative;
    padding: 20px;
    margin: 0;
}

.green-wave-section {
    z-index: 0;
    position: sticky;
    top: 0;
    padding: clamp(52px, 8vw, 96px) 20px;
    background-color: var(--grassy-green);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.monthly-pill {
    display: inline-block;
    margin-top: 0.35em;
    padding: 0.18em 0.65em 0.24em;
    color: white;
    background-color: var(--plum-purple);
    border-radius: 999px;
    line-height: 1.05;
}

.green-wave-section::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: calc(5vh + 1px);
    background-image: url("./src/green_wave.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Process and monthly service sections */
.process-section {
    z-index: 1;
    overflow: visible;
    padding: clamp(72px, 10vw, 128px) 20px 96px;
    background: var(--petal-pink);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    bottom: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: calc(5vh + 1px);
    background-image: url("./src/pink_wave.svg");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    pointer-events: none;
}

.process-content {
    width: min(920px, 100%);
    margin: 0 auto;
}

.process-section h2 {
    margin: 0 0 clamp(18px, 3vw, 28px);
    color: var(--very-violet);
    font-style: italic;
    text-align: center;
}

.process-steps {
    position: relative;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 3vw, 34px);
}

.process-steps::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: calc(100% - 4px);
    left: 50%;
    width: 6px;
    height: 38px;
    background: white;
    transform: translateX(-50%);
}

.process-steps::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: calc((100% - (2 * clamp(14px, 3vw, 34px))) / 6);
    right: calc((100% - (2 * clamp(14px, 3vw, 34px))) / 6);
    top: calc(100% - 4px);
    height: 32px;
    border: 6px solid white;
    border-top: 0;
    border-radius: 0 0 20px 20px;
}

.process-step {
    min-width: 0;
    min-height: 244px;
    box-sizing: border-box;
    padding: 22px 16px 18px;
    color: var(--very-violet);
    text-align: center;
    background: white;
    border-radius: 18px;
}

.process-step img {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.process-step h3 {
    margin: 0 0 10px;
    color: var(--very-violet);
}

.process-step p {
    max-width: 17ch;
    margin: 0 auto 11px;
    font-family: Arial, Helvetica, sans-serif;
}

.process-step p:last-child {
    margin-bottom: 0;
}

.monthly-section {
    z-index: 2;
    display: flow-root;
    padding: 0 20px clamp(64px, 9vw, 105px);
    background: white;
}

.monthly-section::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: -34px;
    left: 0;
    width: 100%;
    height: 56px;
    background: var(--petal-pink);
}

.monthly-card {
    position: relative;
    z-index: 1;
    width: min(820px, calc(100% - 36px));
    min-height: 310px;
    box-sizing: border-box;
    margin: -34px auto 0;
    padding: 58px clamp(28px, 6vw, 70px) 76px;
    color: white;
    text-align: center;
    background: var(--plum-purple);
    border-radius: 28px;
}

.monthly-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -39px;
    width: 6px;
    height: 58px;
    background: white;
    transform: translateX(-50%);
}

.monthly-card::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 13px;
    border-top: 17px solid white;
    border-right: 11px solid transparent;
    border-left: 11px solid transparent;
    transform: translateX(-50%);
}

.cycle-icon {
    display: block;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
}

.monthly-card h2 {
    margin: 0 0 40px;
    color: white;
}

.monthly-services {
    --monthly-services-gap: clamp(18px, 3vw, 34px);
    --monthly-services-half-gap: clamp(9px, 1.5vw, 17px);

    position: relative;
    overflow: hidden;
    margin-inline: calc(clamp(28px, 6vw, 70px) * -1);
    font-family: Arial, Helvetica, sans-serif;
}

.monthly-services::before,
.monthly-services::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: clamp(120px, 23vw, 260px);
    pointer-events: none;
}

.monthly-services::before {
    left: 0;
    background: linear-gradient(90deg, var(--plum-purple) 12%, transparent 100%);
}

.monthly-services::after {
    right: 0;
    background: linear-gradient(270deg, var(--plum-purple) 12%, transparent 100%);
}

.monthly-services-row {
    overflow: hidden;
}

.monthly-services-row + .monthly-services-row {
    margin-top: 34px;
}

.monthly-services-track {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: var(--monthly-services-gap);
    width: max-content;
    will-change: transform;
    animation: monthly-services-loop 58s linear infinite;
}

.monthly-services-row--reverse .monthly-services-track {
    animation-direction: reverse;
}

.monthly-services-group {
    display: flex;
    flex: 0 0 auto;
    width: max-content;
    gap: var(--monthly-services-gap);
}

.monthly-services p {
    display: grid;
    flex: 0 0 auto;
    width: clamp(105px, 14vw, 145px);
    min-height: 44px;
    place-content: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 19px;
    line-height: 1.08;
}

@keyframes monthly-services-loop {
    to {
        transform: translateX(calc(-50% - var(--monthly-services-half-gap)));
    }
}

.monthly-rate{
    position: absolute;
    left: 50%;
    bottom: 0;
    width: max-content;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 0;
    padding: 10px 25px;
    color: white;
    font: 700 18px/1 Arial, Helvetica, sans-serif;
    background: var(--very-violet);
    border-radius: 999px;
    transform: translate(-50%, 50%);
    line-height: 1.5em;
    font-style: italic;
}
.monthly-rate .one-each {
    font-weight: 200;
    font-style: normal;
}

.monthly-pricing-link {
    position: absolute;
    top: calc(100% + 46px);
    left: 50%;
    color: var(--plum-purple);
    font: 700 14px/1.2 Arial, Helvetica, sans-serif;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    opacity: 0.72;
    transform: translateX(-50%);
    transition: opacity 0.2s ease;
}

.monthly-pricing-link:hover {
    opacity: 1;
}

.monthly-pricing-link:focus-visible {
    outline: 2px solid var(--plum-purple);
    outline-offset: 4px;
}

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: clip;
    padding: clamp(28px, 5vw, 64px) 20px clamp(52px, 8vw, 96px);
    background: white;
}

.brand-section img {
    display: block;
    width: min(560px, 82vw);
    height: auto;
    margin-top: clamp(36px, 6vw, 72px);
}

.contact-options {
    display: grid;
    grid-template-columns: minmax(0, 300px) 1px minmax(0, 300px);
    align-items: stretch;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    width: min(700px, 100%);
    margin-top: 0;
}

.brand-section iframe {
    display: block;
    width: 100%;
    margin: 0;
    border: 0;
}

.calendar-booking {
    width: 100%;
    margin: 0;
    text-align: center;
}

.contact-form {
    width: 100%;
    margin: 0;
    text-align: center;
}

.contact-separator {
    width: 1px;
    background: rgba(54, 52, 87, 0.25);
}

.calendar-booking h2,
.contact-form h2 {
    margin: 0 0 20px;
    color: var(--very-violet);
}

.contact-form h2 {
    margin-bottom: -4px;
}

.calendar-intro {
    margin: 0 0 28px;
    color: var(--plum-purple);
    font-family: Arial, Helvetica, sans-serif;
}

.calendar-hours {
    margin: 20px 0 0;
    color: var(--plum-purple);
    font-family: Arial, Helvetica, sans-serif;
    font-size: var(--type-meta);
    line-height: 1.7;
}

.calendar-hours span {
    display: block;
}

.calendar-hours span:first-child {
    margin-bottom: 3px;
    color: var(--very-violet);
    font-weight: 700;
}

.calendar-cta {
    position: relative;
    isolation: isolate;
}

.calendar-cta::before {
    content: "";
    display: none;
    position: absolute;
    pointer-events: none;
}

.calendar-button {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 14px 20px;
    color: white;
    font: 700 16px/1.2 Arial, Helvetica, sans-serif;
    background: var(--grassy-green);
    border: 0;
    border-radius: 400px 0 400px 0;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.calendar-button:hover {
    background: #7f9270;
    transform: translateY(-2px);
}

.calendar-button:focus-visible {
    outline: 3px solid var(--berry-blue);
    outline-offset: 3px;
}

@media (max-width: 600px) {
    .brand-section {
        overflow: hidden;
    }

    .calendar-cta::before {
        display: block;
        z-index: 0;
        top: 50%;
        left: 50%;
        width: calc(100vw - 24px);
        height: 300vmax;
        box-sizing: border-box;
        background: transparent;
        border: 7px solid var(--petal-pink);
        border-bottom: 0;
        border-radius: 32px 32px 0 0;
        transform: translateX(-50%);
    }

    nav a {
        font-size: 16px;
    }

    .contact-options {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .calendar-booking,
    .contact-form {
        width: min(300px, 100%);
    }

    .contact-separator {
        display: none;
    }

    .contact-form {
        margin-top: clamp(32px, 5vw, 56px);
    }

    .process-section {
        padding: 12vh 13px 78px;
        padding: 12svh 13px 78px;
    }

    .process-content {
        width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
        width: min(100%, 340px);
        margin-inline: auto;
    }

    .process-steps::before,
    .process-steps::after {
        display: none;
    }

    .process-step {
        position: relative;
        min-height: 0;
        padding: 14px 7px 12px;
        border-radius: 12px;
    }

    .process-step::after {
        content: "";
        position: absolute;
        top: calc(100% - 1px);
        left: 50%;
        width: 5px;
        height: 18px;
        background: white;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .process-step img {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .process-step h3 {
        margin-bottom: 8px;
    }

    .process-step p {
        max-width: none;
        margin-bottom: 9px;
    }

    .monthly-section {
        padding: 0 13px 66px;
    }

    .monthly-section::before {
        top: -22px;
        height: 38px;
    }

    .monthly-card {
        width: calc(100% - 74px);
        min-height: 205px;
        margin-top: -22px;
        padding: 41px 12px 52px;
        border-radius: 15px;
    }

    .monthly-card::before {
        top: -40px;
        width: 5px;
        height: 51px;
    }

    .monthly-card::after {
        top: 7px;
        border-top-width: 13px;
        border-right-width: 8px;
        border-left-width: 8px;
    }

    .cycle-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 9px;
    }

    .monthly-card h2 {
        margin-bottom: 28px;
    }

    .monthly-services {
        --monthly-services-gap: 12px;
        --monthly-services-half-gap: 6px;

        margin-inline: -12px;
    }

    .monthly-services::before,
    .monthly-services::after {
        width: 105px;
    }

    .monthly-services-row + .monthly-services-row {
        margin-top: 24px;
    }

    .monthly-services p {
        width: 104px;
        min-height: 38px;
        font-size: 15px;
    }

    .monthly-rate {
        padding: 8px 18px;
        font-size: 15px;
    }

    .monthly-pricing-link {
        top: calc(100% + 39px);
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .monthly-services-track {
        animation-play-state: paused;
    }
}

@media (max-width: 350px) {
    .process-steps {
        gap: 14px;
    }

    .process-step {
        padding-inline: 4px;
    }

    .monthly-card {
        width: calc(100% - 44px);
    }
}

/*Big Berry Header and Animation*/
#big-berry {
    background-image: url("./src/berry_body.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    width: calc(50 * var(--berry-scale));
    height: calc(50 * var(--berry-scale));
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto auto calc(-10 * var(--berry-scale)) auto;
    position: absolute;
    animation-name: raise-berry;
    animation-duration: 2.6s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.berry-clip{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    clip-path: ellipse(50% 50% at 50% 50%);
    display: flex;
    align-items: top;
    justify-content: center;
}

.perspective {
    perspective: calc(50 * var(--berry-scale));
}


.ring.top{
    margin-top: calc(21 * var(--berry-scale));
    animation-name: spin-top;
}
.ring.bottom{
    margin-top: calc(22.6 * var(--berry-scale));
    animation-name: spin-bottom;
}
.ring {
    position: relative;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
    animation-fill-mode: forwards !important;
    animation-duration: 3s;
}

@keyframes spin-top {
    from { transform: translateY(calc(30 * var(--berry-scale))) rotateX(-30deg) rotateY(-120deg) rotateZ(-80deg) ; }
    to   { transform: translateY(0) rotateX(-10deg) rotateY(-18deg) rotateZ(-14deg); }
}
@keyframes spin-bottom {
    from { transform: translateY(calc(30 * var(--berry-scale))) rotateX(-30deg) rotateY(-120deg) rotateZ(-80deg) ; }
    to   { transform: translateY(0) rotateX(-12deg) rotateY(-18deg) rotateZ(-14deg) ; }
}

@keyframes spin-bud {
    from { 
            translate: -48% 20%; 
            transform: rotateX(90deg) rotateY(-75deg) rotateZ(20deg);
        }
    to   {
            translate: -10% -4%; 
            transform: rotateX(49deg) rotateY(-32deg) rotateZ(-26deg);
        }
}

@keyframes raise-berry{
    from{
        translate: 0 80%;
    }
    to{
        translate: 0 0;
    }
}

@keyframes show-location{
    from{
        translate: 600% 0;
    }
    to{
        translate: 0 0;
    }
}

@keyframes fly-in-location {
    from {
        transform: translate(calc(50vw + 100%), 0);
    }
    to {
        transform: translate(-50%, 0);
    }
}
.ring span {
    --radius: calc(27.4 * var(--berry-scale)); 
    position: absolute;
    top: 0; left: 0;
    font: 700 calc(5 * var(--berry-scale)) 'PoetsenOne-Regular';
    color: #ffffff;
    backface-visibility: hidden;
    transform-origin: 0 0;
    transform:
      rotateY(calc(var(--step) * calc(var(--i) - 1)))
      translateZ(var(--radius))
      scale(0.5)
      translate(-50%, -50%);
}
.ring.top span {
    --step: calc(44deg / var(--total)); 
}

.ring.bottom span {
    --step: calc(53deg / var(--total));
    color: #23022e;
}

.berry-bud{
    background-image: url("./src/berry_bud_flat.svg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(23 * var(--berry-scale));
    height: calc(23 * var(--berry-scale));
    transform-style: preserve-3d;
    translate: -46% 20%; 
    transform: rotateX(90deg) rotateY(-75deg) rotateZ(20deg);
    animation-name: spin-bud;
    animation-fill-mode: forwards !important;
    animation-duration: 2.4s;
    animation-delay: 0.5s;
    animation-timing-function: ease-out;
}

.location-bar{
    background-color: var(--very-violet);
    text-align: center;
    position: absolute;
    font-family: sans-serif, Arial, Helvetica;
    font-weight: 800;
    font-style: italic;
    font-size: calc(2 * var(--berry-scale));
    color: #ffffff; /*var(--plum-purple);*/
    width: 11em;
    top: auto;
    left: auto;
    right: 0;
    bottom: calc(3 * var(--berry-scale));
    margin: auto;
    translate: 600% 0;
    animation-name: show-location;
    animation-fill-mode: forwards !important;
    animation-duration: 1.4s;
    animation-delay: 3s;
    animation-timing-function: ease-out;
    padding: 0.4em 0.9em 0.4em 0.4em;
    border-radius: 20em 0 0 20em;
}

@media (max-width: 600px) {
    nav {
        display: none;
    }

    main {
        min-height: 100svh;
    }

    .header-sticky-shell {
        top: 0vh;
        top: 0svh;
    }

    header {
        height: 86vh;
        height: 86svh;
    }

    .green-wave-section {
        padding: 14vh 20px;
        padding: 14svh 20px;
        margin-bottom: -1px;
    }

    .green-wave-section::before,
    .process-section::before {
        height: calc(5svh + 1px);
    }

    .location-bar {
        z-index: 2;
        right: auto;
        left: 50%;
        bottom: calc((43 * var(--berry-scale)) + 5vh);
        bottom: calc((43 * var(--berry-scale)) + 5svh);
        width: max-content;
        max-width: calc(100% - 40px);
        padding: 0.42em 0.9em;
        border-radius: 999px;
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1;
        translate: 0 0;
        transform: translate(-50%, 0);
        animation-name: fly-in-location;
        animation-delay: 1.3s;
        animation-fill-mode: backwards !important;
    }

    .mobile-hero-title {
        position: absolute;
        z-index: 1;
        bottom: calc((43 * var(--berry-scale)) + 12vh);
        bottom: calc((43 * var(--berry-scale)) + 12svh);
        display: block;
        width: calc(100% - 40px);
        margin: 0;
        color: white;
        font-size: clamp(32px, 12vw, 46px);
        line-height: 1.1;
        text-align: center;
    }

    .mobile-hero-title span {
        display: block;
    }

    .mobile-hero-title span:first-child {
        color: var(--berry-blue);
    }

    #big-berry .berry-clip {
        display: none;
    }

    #big-berry {
        animation-fill-mode: none;
    }

    .berry-bud {
        translate: -10% -4%;
        transform: rotateX(49deg) rotateY(-32deg) rotateZ(-26deg);
        animation-fill-mode: backwards !important;
    }
}
