main {
    margin-top: 66px;
}
.lp-hero {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 2em;
}
.lp-hero.single {
    grid-template-columns: repeat(1, 1fr);
}
.lp-hero.single h1 {
    max-width: unset;
}
.lp-hero div.hero-image {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    max-height: 720px;
}
.lp-hero div.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 350px 1% 0;
}
.lp-hero div.hero-text {
    width: 96%;
    margin-inline: auto;
    max-width: 600px;
    margin-bottom: 2em;
}
.lp-hero div.hero-text p.tag {
    margin-top: 4em;
}
.lp-hero h1 {
    max-width: 500px;
    margin-bottom: 0.5em;
    text-wrap: balance;
}
.lp-hero p {
    max-width: 460px;
}
.lp-hero .hero-text img {
    width: 80px;
    padding-top: 1.5em;
}
.lp-hero .bg-shape {
    position: absolute;
    right: 0;
    z-index: -99;
    width: 83%;
    height: auto;
}
.lp-hero .bg-shape img {
    width: 100%;
}
#services {
    margin-top: -4em;
    padding-block: 8em 2em;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1600px;
    margin-inline: auto;
    column-gap: 10%;
}
#services h2,
#services p,
#services li {
    color: var(--white);
    max-width: 500px;
}
#services h2 {
    max-width: 470px;
    text-wrap: balance;
}
#services ul {
    display: grid;
    max-width: 600px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3em;
    column-gap: 1em;
    padding-inline-start: 1em;
}
#services li {
    list-style: none;
    font-size: 1.125em;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    column-gap: 0.75em;
    line-height: 1.125;
}
#services li img {
    width: 35px;
}
.tag {
    text-transform: uppercase;
}
.low-opacity {
    opacity: 0.5;
}
#collab {
    padding-block: 10em 8em;
    margin-bottom: 4em;
    position: relative;
}
#collab .bg-shape {
    position: absolute;
    left: 0;
    max-width: 350px;
    top: 0;
    z-index: -100;
}
#collab .bg-shape.rev {
    transform: scale(-1, 1);
    right: 0;
    left: unset;
    top: 20%;
}
p.large-text {
    font-size: 2.5em;
    font-family: "graveur-variable", sans-serif;
    font-variation-settings: "opsz" 10, "wght" 400;
    letter-spacing: -3.125%;
    color: var(--dark-blue);
    line-height: 1.1;
    max-width: 778px;
    margin-inline: auto;
    margin-block: 1em 1.5em;
}
.center {
    text-align: center;
}
.btn {
    padding: 0.25em 1.5em 0.375em;
    font-size: 1.125em;
    border-radius: 2em;
    text-transform: uppercase;
    width: fit-content;
    margin-inline: auto;
    transition: transform .45s ease;
}
p.btn a {
    color: var(--white);
    text-decoration: none;
}
.btn.green {
    background-color: var(--dark-green);
    border: solid 1px var(--dark-green);
    transition: background-color 0.4s ease, border 0.4s ease, transform 1s ease;
}
.btn.green:hover {
  transform: scale(1.0125);
  background-color: var(--white);
}.btn.green:hover a{
    color: var(--dark-green);
}

.btn.red {
    background-color: var(--light-red);
    border: solid 1px var(--light-red);
    transition: background-color 0.4s ease, border 0.4s ease, transform 1s ease;
}
.btn.red:hover {
  transform: scale(1.0125);
  background-color: var(--white);
}.btn.red:hover a{
    color: var(--light-red);
}

section#ftd-gardens {
    display: grid;
    grid-template-columns: 60% auto;
    column-gap: 3%;
    align-items: center;
    background-color: var(--off-white);
}
#ftd-gardens div:first-child:has(img) {
    aspect-ratio: 5/3;
    /* grid-column: 1/4; */
    margin-block: -4em -1.5em;
}
#ftd-gardens img {
    border-radius: 1% 200px 1% 1%;
    height: 100%;
    object-fit: cover;
    min-height: 430px;
    opacity: 0;
    width: 100%;
}
#ftd-gardens .text {
    /* grid-column: 4/6; */
    max-width: 460px;
    margin-inline: 5%;
    margin-top: 1em;
    padding-right: 1em;
}
#ftd-gardens .text .tag {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12em;
}
#ftd-gardens .text h1 {
    font-size: 3em;
    margin-block: 0.75em 0.5em;
    text-wrap: balance;
}
#ftd-gardens .text * {
    max-width: 430px;
}
#ftd-gardens div.ftd-gallery {
    position: relative;
}#ftd-gardens div.ftd-gallery img {
    position: absolute;
}
#ftd-gardens .dots {
    width: 100%;
    position: absolute;
    z-index: 5;
    padding: 0;
    bottom: 0;
    margin-bottom: 1.5em;
    right: 30px;
    display: flex;
    column-gap: 1em;
    justify-content: flex-end;
}
#ftd-gardens .dots div {
    padding-inline: 5px;
}
#ftd-gardens .dot {
    cursor: pointer;
    height: 0.7em;
    width: 0.7em;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
#ftd-gardens .dot.active {
    background-color: #fffffff2;
}#ftd-gardens .text{
    position: relative;
}#ftd-gardens .ftd{
    position: absolute;
    opacity: 0;
    visibility: hidden; /* pairs nicely with autoAlpha */
    z-index: 0;
    top: 20%;
}

#testimonials {
    display: grid;
    grid-template-columns: 35% auto;
    overflow-x: hidden;
    max-width: 1800px;
    margin-inline: auto;
    margin-block: 3em;
    column-gap: 3em;
    padding-block: 4em;
}
#testimonials h2 {
    text-wrap: balance;
    margin-top: 0;
}
#testimonials .arrow-nav {
    display: flex;
    column-gap: 0.5em;
}
#testimonials .arrow-nav button {
    background-color: transparent;
    border: unset;
    padding: 0;
    cursor: pointer;
}
#testimonials .arrow-nav img {
    width: 35px;
}
#testimonials .arrow-nav button:last-child img {
    transform: rotate(180deg);
}
#testimonials > div {
    max-width: 100%;
}
#testimonial-mask {
    max-width: 100%;
    width: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;    /* enable snap */
}
#testimonial-track{
    display: flex;
    column-gap: 2em;
    min-width: max-content;
    margin-bottom: 2em;
}
.single-testimonial {
    border-right: 1px solid #2626261a;
    width: clamp(300px, 25vw, 400px);
    padding-right: 1em;
    align-self: end;
}.single-testimonial:last-child{
    border-right:0;
}
.testimonial-profile .name {
    font-family: "graveur-variable", sans-serif;
    font-variation-settings: "opsz" 10, "wght" 400;
    color: var(--dark-blue);
    line-height: 0.95;
    letter-spacing: -3.125%;
    font-size: 1.5em;
    margin-block: 0.25em;
}
.testimonial-profile {
    display: flex;
    align-items: center;
    column-gap: 1em;
}
.testimonial-profile img {
    width: 70px;
    border-radius: 500px;
    height: 70px;
    object-fit: cover;
}
.testimonial-profile .tag {
    margin-block: 0;
}

/* the viewport */
#testimonial-mask {
  overflow-x: auto;                 /* horizontal scrolling container */
  scroll-snap-type: x mandatory;    /* snap horizontally to the nearest card */
  scroll-behavior: smooth;          /* smooth programmatic scrolls */
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 0;         /* adjust if you have side paddings */
}

/* each card is a snap point */
#testimonial-track .single-testimonial {
  scroll-snap-align: start;         /* snap each card’s left edge to the mask */
  scroll-snap-stop: always;         /* don’t glide past snaps on quick swipes */
}

/* optional: hide scrollbars (WebKit) */
#testimonial-mask::-webkit-scrollbar { display: none; }

/* optional: if you want exactly one card per viewport on small screens */
@media (max-width: 768px) {
  #testimonial-mask { padding-inline: 1.5rem; }
  #testimonial-track .single-testimonial { width: 100%; }
}


#team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block: 0;
    column-gap: 4em;
    max-width: 1800px;
    margin-inline: auto;
    align-items: center;
    margin-block: 4em;
}
section#testimonials + .bg-shape,
section:has(#services) + .bg-shape,
section:has(#faq-block) + .bg-shape,
div:has(#designers) + .bg-shape {
    position: absolute;
    right: 0;
    left: 0;
    z-index: -99;
    margin-top: -4em;
    overflow: hidden;
}
section:has(#faq-block) + .bg-shape {
    margin-top: -2em;
 }
 section:has(#services) + .bg-shape {
    margin-top: -1em;
 }
section#testimonials + .bg-shape img,
section:has(#services) + .bg-shape img {
    min-width: 104%;
    margin-left: -2%;
}
#team img {
    border-radius: 180px 1% 1% 1%;
    aspect-ratio: 5/4;
    object-fit: cover;
    max-height: 530px;
    min-height: 400px;
}
#team #team-desc {
    width: 96%;
    max-width: 600px;
    margin-inline: auto;
}
#process {
    padding-block: 0;
    margin-block: 4em;
    max-width: 1800px;
    margin-inline: auto;
}
#process-page #process {
    margin-block: 1em 4em;
}
#process-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#process-nav {
}
#process-nav ul {
    list-style: none;
    display: flex;
    column-gap: 1.5em;
    margin-bottom: 0;
    text-transform: uppercase;
}
#process-nav li {
    padding: 0.25em 1.25em 0.35em;
    cursor: pointer;
    font-size: 0.9375em;
}
#process-nav li.active {
    background-color: var(--dark-green);
    border-radius: 100px;
    color: var(--white);
}
.process-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5%;
    align-items: start;
    display: none;
}
.process-content.active {
    display: grid;
}
.process-content div.process-copy {
    max-width: 480px;
    width: 96%;
    padding-right: 5%;
    margin-inline: 5% auto;
    margin-top: 1em;
}
.process-content div.process-copy h3 {
    font-family: "freight-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-size: 2em;
}
.process-content div.process-copy ul {
    margin-top: 2em;
    padding-inline-start: 1.5em;
}
.process-content div.process-copy li {
    margin-bottom: 1.5em;
}
.process-content img {
    aspect-ratio: 4/3;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 180px 1% 1% 1%;
    padding-right: 5%;
}


div:has(img.full-width) {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 3/1;
    object-fit: cover;
    /* margin-block: 4em; */
}
img.full-width { 
    object-fit: cover;
    width: 100%;
    height: 100%;
}



#values {
    display: grid;
    grid-template-columns: 30% 62%;
    column-gap: 8%;
    padding-block: 4em;
    max-width: 1800px;
    margin-inline: auto;
}
#values img {
    height: 100%;
    object-fit: cover;
    border-top-right-radius: 200px;
    max-height: 660px;
}
#values-text {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1em;
    row-gap: 1em;
}
#values-text > h2,
#values-text > p {
    grid-column: span 2;
}
#values-text > h2 {
    text-align: right;
    max-width: 470px;
    margin-inline: auto 0;
    text-wrap: balance;
}
.single-value {
    width: 96%;
    margin-bottom: 2em;
    max-width: 390px;
}
.single-value h3 {
    font-size: 2em;
    margin-block: 0.5em;
}

.bg-off-white {
    background-color: var(--off-white);
}
#contact {
    max-width: 1800px;
    margin-inline: auto;
    padding: 4em 10%;
    display: grid;
    grid-template-columns: 55% 40%;
    column-gap: 5%;
    align-items: end;
}
#contact h3 {
    font-size: 2em;
}
#contact div {
    max-width: 400px;
}
#contact div:last-child {
    border-left: 1px solid #2626261a;
    padding-left: 3em;
}
p a {
    text-decoration: underline;
    text-decoration-color: var(--mustard);
    text-underline-offset: 4px;
}
p.cta {
    text-transform: uppercase;
    font-weight: 500;
    margin-block: 1.75em;
}
p.cta a {
    text-decoration: none;
}


.bg-green {
    background-color: var(--dark-green);
}
footer h2,
footer h3,
footer p,
footer p a,
footer li,
footer li a,
footer h3 a {
    color: var(--white);
}
footer .grid.links li {
    margin-bottom: 0.5em;
    line-height: 1.1;
}
footer h3 {
    margin-top: 0;
}
footer ul {
    list-style: none;
}
footer .logo {
    width: 85px;
    height: auto;
    margin-bottom: 0.5em;
    max-width: unset;
}
footer .social-icons {
    display: flex;
    column-gap: 0.75em;
    align-items: center;
    margin-top: 2em;
}
.social-icons img {
    width: 20px ;
}
footer .contact-details p {
    margin-block: 0.5em;
}
footer > div.grid {
    grid-template-columns: 165px auto 550px;
    column-gap: 3em;
    padding-block: 4em;
}
footer div.links {
    justify-content: space-between;
    display: flex;
    border-left: 1px solid #ffffff1a;
    padding-left: 2.5em;
}
footer p.email a {
    text-decoration-color: var(--white);
}
footer .contact-details .phone a {
    text-decoration: none;
}
footer #newsletter {
    margin-inline: auto;
    max-width: 400px;
}
footer #newsletter .btn {
    outline: 1px solid #fff;
}
footer .links ul {
    padding-inline: 0;
}
footer .btn {
    width: 100%;
}
footer #base-links {
    display: flex;
    justify-content: space-between;
    padding-block: 2em 1em;
}
/* footer #base-links .policies p,
footer #base-links #webcredit {
    text-transform: uppercase;
} */
footer #base-links p a {
    text-decoration: none;
}
footer .policies {
    display: flex;
    justify-content: space-between;
    column-gap: 3em;
}
a:visited {
    color: inherit;
}

@media screen and (max-width: 1366px) {
    #collab .bg-shape {
        max-width: 250px;
    }
    p.large-text {
        max-width: 650px;
    }
}


@media screen and (max-width: 1024px) {
    .lp-hero div.hero-image {
        aspect-ratio: 4/5;
    }
    .lp-hero div.hero-image img {
        border-radius: 0 250px 1% 0;
    }
    #services {
        column-gap: 6%;
    }
    #collab {
        padding-block: 8em 4em;
    }
    #collab .bg-shape {
        display: none;
    }
    #process-nav ul {
        column-gap: 0.125em;
        flex-wrap: wrap;
        justify-content: flex-end;
        row-gap: 0.5em;
    }
    #process-nav li {
        font-size: 0.875em;
        padding: 0.25em 1em 0.35em;
    }
    .process-content img {
        padding-right: 0;
    }
    /* footer */
    footer > div.grid {
        grid-template-columns: 165px auto;
    }
    footer div.links {
        grid-column: span 2;
        justify-content: flex-start;
        margin-top: 3em;
        column-gap: 20%;
        border-left: none;
    }
}


@media screen and (max-width: 768px) {
    main {
        margin-top: 60px;
    }
    .lp-hero {
        margin-top: 60px;
        grid-template-columns: repeat(1, 1fr);
    }
    .lp-hero .hero-text img {
        width: 60px;
        padding-top: 1em;
    }
    .lp-hero div.hero-image {
        aspect-ratio: 5/4;
        max-width: 700px;
        width: 94%;
    }
    .lp-hero div.hero-text {
        width: 86%; 
    }
    .lp-hero div.hero-text p.tag {
        margin-top: 2.5em;
    }
    #services {
        margin-top: 0;
        padding-block: 2em;
        grid-template-columns: repeat(1, 1fr);
    }
    #services div:last-child {
        padding-right: 1em;
    }
    #collab {
        margin-bottom: 16em;
    }
    p.large-text {
        font-size: 2em;
    }
    section#ftd-gardens {
        grid-template-columns: 1fr;
    }
    #ftd-gardens div:first-child:has(img) {
        margin-block: -12em 0;
    }
    #ftd-gardens .text * {
        max-width: 520px;
    }
    #ftd-gardens .text {
        max-width: 660px;
        margin-inline: auto;
        padding-block: 1em 2em;
        padding-inline: 2em;
        margin-top: 0;
    }
    #testimonials {
        grid-template-columns: 1fr;
        row-gap: 2em;
        margin-block: 1em;
    }
    #testimonials div:first-child h2 {
        max-width: 300px;
    }
    #team {
        grid-template-columns: 1fr;
        row-gap: 1em;
    }
    #team div:has(img) {
        margin-inline: auto 0;
    }
    #team div img {
        max-width: 500px;
        max-width: 500px;
        min-height: 300px;
        width: 100%;
    }
    section#testimonials + .bg-shape img,
    section:has(#faq-block) + .bg-shape img,
    div:has(#designers) + .bg-shape img {
        max-width: unset;
        width: 300%;
    }
    #team {
        margin-bottom: 2em;
    }
    #process {
        margin-block: 2em;
    }
    #process-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.5em;
    }
    #process-head h2 {
        margin-block: 0.25em;
        margin-block: 1em 0.25em;
    }
    #process-nav ul {
        justify-content: flex-start;
    }
    .process-content {
        grid-template-columns: 1fr;
        row-gap: 2em;
    }
    .process-content img {
        max-width: 500px;
        justify-self: right;
    }
    #values {
        grid-template-columns: 1fr;
        padding-block: 1em;
    }
    #values div:first-child {
        display: none;
    }
    section#process + div:has(img.full-width) {
        display: none;
    }
    #contact {
        grid-template-columns: 50% 45%;
        padding: 2em 3em;
    }
    #contact div:last-child {
        padding-left: 1.5em;
    }


    footer div.links {
        column-gap: 2%;
        justify-content: space-between;
    }
    footer #base-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    footer .policies {
        grid-row: 1;
        grid-column: span 3;
    }
    footer #webcredit {
        text-align: right;
    }

}

@media screen and (max-width: 600px) {
    
    .lp-hero {
        grid-template-columns: repeat(1, 1fr);
    }
    .lp-hero div.hero-image {
        aspect-ratio: 5/4;
        max-width: 600px;
        width: 94%;
    }
    .lp-hero div.hero-image img {
        border-radius: 0 200px 1% 0;
    }
    .lp-hero div.hero-text {
        width: 86%;
        margin-bottom: 1em;
    }
    .lp-hero div.hero-text p.tag {
        margin-top: 2.5em;
    }
    #services {
        margin-top: 0;
        padding-block: 2em;
        grid-template-columns: repeat(1, 1fr);
    }
    #services ul {
       grid-template-columns: repeat(1, 1fr); 
       padding-inline-start: 2em;
    }
    #collab {
        padding-block: 6em 1em;
    }
    section#testimonials + .bg-shape img,
    section:has(#faq-block) + .bg-shape img,
    div:has(#designers) + .bg-shape img {
        width: 400%;
    }
    .process-content {
        row-gap: 2em;
    }
    .process-content img {
        border-radius: 180px 1% 1% 1%;
    }
    #contact {
        grid-template-columns: 1fr;
        padding: 2em 4em 4em;
        row-gap: 1em;
    }
    footer > div.grid {
        grid-template-columns: 1fr;
    }
    footer .logo {
        width: 150px;
    }
    footer .contact-details {
        position: relative;
    }
    footer .contact-details p {
        font-size: 1.5em;
    }
    footer .social-icons {
        position: absolute;
        top: 0;
        right: 0;
        column-gap: 1.25em;
        margin-top: 0;
    }
    footer .social-icons img {
        width: 35px;
    }
    footer #newsletter {
        max-width: 100%;
        margin-top: 3em;
        border-top: 1px solid #ffffff1a;
        padding-top: 3em;
    }
    footer #newsletter h3 {
        font-size: 2em;
    }
    footer div.links {
        grid-column: unset;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1em;
        border-top: 1px solid #ffffff1a;
        padding-top: 3em;
        margin-top: 2em;
    }
    footer div.links div:last-child {
        display: none;
    }
    footer .links li {
        padding-block: 0.5em;
    }
    footer .policies {
        justify-content: unset;
    }
}

@media screen and (max-width: 450px) {
    .lp-hero div.hero-text {
        width: 100%;
        padding-inline: 1.5em;
    }
    #services ul {
       padding-inline-start: 1em;
    }
    section#testimonials + .bg-shape img,
    section:has(#faq-block) + .bg-shape img,
    div:has(#designers) + .bg-shape img {
        width: 500%;
    }
    #values-text {
        grid-template-columns: 1fr;
        row-gap: 0;
    }
    #values-text > h2, #values-text > p {
        grid-column: unset;
    }
    .single-value {
        margin-bottom: 1em;
    }
    div:has(img.full-width) {
        aspect-ratio: 2/1;
    }
    #contact {
        padding-inline: 1.5em;
    }
}

@media screen and (max-width: 380px) {
    p.large-text {
        font-size: 1.75em;
    }
}