/* =========================
RESET + BASE
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.55;
    color: #3a2a1f;
    background: #fbf3e6;
    overflow-x: hidden;
    padding-top: 110px;
}

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

ul {
    list-style: none;
}

section {
    min-height: auto;
    max-width: var(--container);
    margin: 0 auto;
    padding: 20px;
    scroll-margin-top: 90px;
}

img {
    display: block;
    height: auto;
}

/* =========================
TOKENS
========================= */
:root {
    --container: 1350px;
    --accent: #f36a2e;
    --ink: #4d291a;
    --muted: #4d291a;
    --pill: 999px;
    --radius: 26px;
    --shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* =========================
TYPOGRAPHY
========================= */
h1 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: 42px;
    letter-spacing: 0.2px;
    color: var(--accent);
}

h2 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: 0.2px;
    color: var(--accent);
}

h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: 0.2px;
    color: var(--accent);
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.2px;
    margin-top: 14px;
}

p {
    font-size: 16px;
    color: var(--muted);
    text-align: justify;
}

li {
    font-size: 16px;
}

.phrase {
    text-align: center;
}

.bee-icon {
    width: 34px;
    margin: 30px auto 0;
    display: block;
}

/* Shared centred containers */
#hero,
#about,
#services,
#testimonials,
#contact,
.footer-inner,
#mobile-menu {
    max-width: var(--container);
    margin: 0 auto;
}

/* =========================
BUTTONS
========================= */
.cta-button {
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: var(--pill);
    padding: 12px 18px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    opacity: 0.92;
    text-decoration: underline;
}

a.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    font-family: "DM Sans", sans-serif;
}

/* =========================
HEADER / NAV
========================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fbf3e6;
    padding: 18px 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.navbar {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 10px 12px;
    display: grid;
    grid-template-columns: 220px 1fr auto auto;
    align-items: center;
    gap: 22px;
}

.nav-cta {
    display: block;
}

.logo img {
    width: 250px;
    height: 61.95px;
}

.menu {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.menu a {
    color: var(--accent);
    font-weight: 600;
    font-size: 17px;
    font-family: "DM Sans", sans-serif;
}

.menu a:hover {
    opacity: 0.85;
}

.navbar .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar .social-links img {
    width: 22px;
    height: 22px;
}

.burger-menu {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--accent);
    line-height: 1;
    padding: 6px 8px;
    border-radius: 10px;
}

/* Mobile dropdown */
.mobile-menu {
    display: none;
    margin-top: 0;
    padding: 14px 16px;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
}

#mobile-menu a {
    display: block;
    padding: 10px 6px;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
    font-family: "DM Sans", sans-serif;
}

#mobile-menu a.cta-button,
#mobile-menu a.mobile-cta {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "DM Sans", sans-serif;
}

#mobile-menu a.cta-button {
    font-size: 14px;
}

.mobile-cta {
    width: 100%;
    text-align: center;
    margin: 18px 0 14px;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.2;
}

.mobile-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding-top: 6px;
}

.mobile-social img {
    width: 22px;
}

/* =========================
HERO
========================= */
#hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    justify-items: center;
    gap: 50px;
    align-items: center;
    text-align: justify;
    min-height: 90vh;
}

.hero-image {
    width: 100%;
    box-shadow: none;
}

.hero-text {
    color: var(--ink);
    max-width: auto;
    display: flex;
    flex-direction: column;
}

.hero-text .cta-button {
    align-self: center;
    margin-top: 15px;
}

.hero-text h1 {
    font-size: 50px;
    line-height: 1.05;
    margin-bottom: 40px;
    text-align: left;
}

.hero-text p {
    margin-bottom: 14px;
}

.hero-text a:hover{
    text-decoration: underline;
}

/* =========================
ABOUT
========================= */
#about {
    padding: 0;
    min-height: 90vh;
}

.about-highlight {
    background: #fffaf4;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 56px 0;
    text-align: center;
}

.about-highlight .phrase {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--accent);
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
}

.about-highlight .bee-icon {
    margin: 30px auto 0;
}

.about-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content p {
    margin-top: 14px;
    max-width: 720px;
}

.about-box h3 {
    font-size: 26px;
    text-align: center;
    margin: 18px 0 10px;
}

.about-box p {
    text-align: center;
}

.values {
    margin-top: 14px;
    display: grid;
    gap: 5px;
}

.values li {
    text-align: center;
}

.values b {
    color: var(--ink);
    font-weight: 700;
}

/* =========================
SERVICES
========================= */
#services {
    max-width: none;
    width: 100%;
    min-height: 100vh;
    background: #fffaf4;
    padding: 0;
    align-content: center;
}

.services-inner {
    align-items: start;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

#services .service-box {
    display: flex;
    flex-direction: column;
    align-items: center;   /* horizontal centering */
    text-align: center;
    grid-column: 1;
    justify-self: center;
    width: min(560px, 100%);
    border: 2px solid rgba(243, 106, 46, 0.8);
    border-radius: 26px;
    padding: 20px;
    background: transparent;
    margin-top: 25px;
}

#services .service-box .cta-button{
    background: transparent;
    color: #f36a2e;
    align-self: center;
    margin-top: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    border: 1.5px solid var(--accent);
}

#services h2{
    margin-top: 20px;
}

#services .service-box h3 {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin: 35px 0 8px;
}

#services .service-box h3:first-child {
    margin-top: 0px;
}

#services .service-box p {
    text-align: center;
    margin: 0 auto;
    max-width: 440px;
    line-height: 1.6;
}

#services .transformation {
    background: #fbf3e6;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 50px;
    padding: 56px 0;
    text-align: center;
}

#services .transformation .phrase {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    color: var(--accent);
    font-size: 34px;
    line-height: 1.08;
    text-align: center;
}

#services .transformation .bee-icon {
    margin: 30px auto 0;
}

#services .approach p {
    line-height: 1.7;
    margin-top: 14px;
}

#services .approach h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 15px 0 8px;
    text-align: center;
}

#services .approach .text-approach {
    text-align: center;
}

/* =========================
TESTIMONIALS
========================= */
#testimonials {
    width: 100%;
    max-width: none;
    background: #fffaf4;
    padding: 90px 28px;
    min-height: 90vh;
}

#testimonials h2 {
    max-width: var(--container);
    margin: 0 auto 50px;
    padding: 0 28px;
}

.testimonial-carousel {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 90px 1fr 90px;
    align-items: center;
    justify-items: center;
    gap: 30px;
}

.testimonial-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical centring */
    align-items: center;       /* horizontal centring */
    text-align: center;
    padding: 0 40px;
}

.testimonial-text {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 1.45;
    color: var(--ink);
    max-width: 980px;
    margin: 0 auto 36px;
    text-align: center;
}

.testimonial-author {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: var(--ink);
    text-align: center;
}

.testimonial-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    align-self: center;
}

.testimonial-arrow:hover {
    transform: scale(1.04);
    opacity: 0.92;
}

#testimonials .bee-icon {
    margin-top: 60px;
}

/* =========================
PROGRAMMES
========================= */

.subtitle{
    color: #F26A2E;
    font-weight: 500;
    margin: 5px 0px 15px;
    text-align: justify;
}

#the-foundation p{
    margin: 10px 0px;
}

#the-foundation ul{
    list-style:disc;
    margin: 20px 20px 25px;
}

#respect-method{
    max-width: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: #fffaf4;
    padding: 56px 0;
}

#respect-method .container{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

#respect-method h2,
#respect-method h3,
#respect-method h4,
#respect-method p,
#respect-method ul{
    max-width: 100%;
}

#respect-method p{
    margin: 10px 0px;
}

#respect-method ul{
    list-style: disc;
    margin: 20px 20px 25px;
    padding-left: 1.2em;
}

#respect-method ul.intro{
    list-style: decimal;
    margin: 20px 20px 25px;
}

.respect-method-cta{
    text-align: center;
    margin-top: 35px;
}

#respect-method .cta-button{
    background: transparent;
    color: #f36a2e;
    align-self: center;
    margin-top: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    border: 1.5px solid var(--accent);
}

#respect-method-page h2,
#respect-method-page h3,
#respect-method-page h4,
#respect-method-page p,
#respect-method-page ul{
    max-width: 100%;
}

#respect-method-page p, #introduction p, #foundation p{
    margin: 10px 0px;
}

#respect-method-page ul{
    list-style: disc;
    margin: 20px 20px 25px;
    padding-left: 1.2em;
}

#respect-method-page ul.intro{
    list-style: decimal;
    margin: 20px 20px 25px;
}

#respect-method-page-cta{
    text-align: center;
    margin-top: 35px;
}

#respect-method-page .cta-button{
    padding: 14px 26px;
}

.highlight {
    font-weight: 400;
}

#the-growth p, #projects p{
    margin: 10px 0px;
}

#the-growth ul{
    list-style:disc;
    margin: 20px 20px 25px;
}

#foundation ul{
    list-style: disc;
    margin: 20px 20px 25px;
    padding-left: 1.2em;
}

#introduction h2,
#journey h2,
#call h2{
    margin-bottom: 20px;
}

#right-for-you ul{
    list-style: disc;
    margin: 20px 20px 25px;
    padding-left: 1.2em;
    text-align: left;
}

#right-for-you {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* vertical centre */
    align-items: center;       /* horizontal centre */
    padding: 40px 28px;
    text-align: center;
}

#call {
    min-height: 70vh;
    padding: 40px 28px;
}

.call-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
}

.contact-left {
    display: flex;
    justify-content: center;
}

.contact-image {
    width: 100%;
    max-width: 520px;
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-right p {
    text-align: left;
}

.contact-right .cta-button {
    margin-top: 20px;
    width: fit-content;
}

#call .cta-button{
    margin: 30px 0px;
    font-size: 17px;
}

#call h2{
    margin-bottom: 20px;
    text-align: center;
}

#call p{
    margin: 10px 0px;
    text-align: center;
}

#call .contact-left {
    display: flex;
    justify-content: flex-end;
}

#call .contact-image {
    width: 100%;
    max-width: 560px;
}

.contact-right .cta-button {
    margin-top: 20px;
    align-self: center;
}

/* =========================
CONTACT
========================= */
#contact {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 110px 0;
    align-items: center;
    min-height: 90vh;
}

#contact .contact-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 50px;
    align-items: center;
}

#contact .contact-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

#contact h2 {
    margin: 0;
    font-size: 44px;
    line-height: 0.95;
    text-align: left;
}

#contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#contact p {
    margin: 0;
    text-align: center;
    margin-bottom: 20px;
}

#contact p b {
    color: var(--ink);
    font-weight: 600;
}

#contact .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    padding: 14px 26px;
    margin-top: 6px;
}

#contact .bee-icon {
    margin-top: 0;
}

#contact .contact-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#contact .contact-image {
    width: 100%;
    max-width: 450px;
}

#contact .contact-image2 {
    width: 100%;
    max-width: 500px;
}

/* =========================
CONTACT FORM
========================= */

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

.contact-form p{
    margin-bottom: 10px;
}

.contact-form p + p{
    margin-bottom: 28px;
}

.contact-form form{
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-top: 50px;
}

.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    width: 100%;
}

.form-field{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.form-field-full{
    width: 100%;
}

.form-field label{
    font-size: 15px;
    color: var(--ink);
    text-align: left;
}

.form-field input,
.form-field textarea{
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.15);
    font-size: 15px;
    line-height: 1.4;
    font-family: "DM Sans", sans-serif;
    background: #fff;
    color: var(--ink);
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus{
    border-color: var(--accent);
}

.form-field textarea{
    height: 140px;
    resize: none;
}

/* Submit button */
.send-form{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: center;
    margin-top: 8px;
    padding: 12px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    border: 1.5px solid var(--accent);
    color: #F26A2E;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
    line-height: 1;
}

.send-text{
    text-decoration: none;
}

.send-form:hover .send-text{
    text-decoration: underline;
}

.send-form img{
    width: 16px;
    height: auto;
    display: block;
}

.send-form:hover{
    opacity: 0.92;
}

/* =========================
FOOTER
========================= */
.site-footer {
    background: var(--accent);
    color: #fff;
    padding: 18px 28px 14px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "social right"
        "copy right";
    gap: 10px 36px;
    align-items: start;
}

.site-footer .social-links {
    grid-area: social;
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-footer .social-links img {
    width: 22px;
}

.footer-right {
    grid-area: right;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-nav,
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.footer-nav {
    font-weight: 600;
}

.footer-nav a:hover {
    opacity: 0.85;
}

.site-footer a {
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-family: "DM Sans", sans-serif;
}

.footer-legal a {
    text-decoration: underline;
    font-size: 15px;
}

.footer-copy {
    grid-area: copy;
    font-size: 16px;
    opacity: 0.95;
    margin-top: 10px;
    color: white;
}

/* =========================
COOKIE BANNER
========================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent);
    color: white;
    z-index: 9999;
}

.cookie-banner p {
    margin: 10px;
    font-size: 14px;
    text-align: justify;
}

.cookie-banner #learn-more {
    text-decoration: underline;
}

.cookie-banner #learn-more:hover {
    color: #fbf3e6;
}

.cookie-banner button {
    text-wrap: nowrap;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    width: 110px;
}

.buttons {
    display: flex;
    gap: 10px;
    margin: 0 10px;
}

#accept-all {
    padding: 10px 13px;
    background-color: #fbf3e6;
    color: #4a2a1e;
}

#accept-all:hover {
    color: white;
    color: #f36a2e;
}

#decline-all {
    background-color: transparent;
    color: white;
    border: 1px solid #ccc;
}

#decline-all:hover {
    text-decoration: underline;
}

#customise {
    background-color: transparent;
    color: white;
    border: 1px solid #ccc;
}

#customise:hover {
    text-decoration: underline;
}

#preference-modal {
    position: fixed;
    top: 0;
    left: 30%;
    transform: translateY(150px);
    width: 50%;
    height: 50vh;
    background-color: white;
    border: 2px solid var(--accent);
    border-radius: 10px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 20px;
    z-index: 10000;
    display: none;
    font-size: 16px;
}

#preference-modal h2 {
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

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

#preference-modal li {
    margin-bottom: 10px;
}

#preference-modal input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

#preference-modal input {
    float: right;
    margin-top: 5px;
    margin-left: 20px;
}

#preference-modal label span {
    font-style: italic;
    color: #aaa;
}

#preference-modal a {
    color: #4a2a1e;
    font-size: 14px;
    text-decoration: underline;
    margin-bottom: 20px;
}

#preference-modal a:hover {
    color: var(--accent);
    cursor: pointer;
}

.preference-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #4d291a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.preference-modal-close:hover {
    opacity: 0.7;
}

#save-preferences {
    text-wrap: nowrap;
    padding: 10px;
    border: 1px solid var(--accent);
    cursor: pointer;
    font-size: 13px;
    border-radius: 5px;
    background-color: transparent;
    color: black;
    margin-right: 5px;
}

#save-preferences:hover {
    text-decoration: underline;
}

#preference-accept-all {
    text-wrap: nowrap;
    padding: 10px 35px;
    border: 1px solid var(--accent);
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    background-color: var(--accent);
    color: white;
}

#preference-accept-all:hover {
    text-decoration: underline;
}

/* =========================
LEGAL PAGES
========================= */
#terms-of-use p,
#disclaimer p,
#cookie-policy p,
#privacy p {
    margin-top: 14px;
}

body.legal {
    background: #fffaf4;
}

body.legal section {
    min-height: auto;
    max-width: none;
    margin: 0;
}

body.legal .legal-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 90px 28px 120px;
}

body.legal .legal-hero {
    padding: 0 0 36px;
}

body.legal .legal-hero h1 {
    font-size: 72px;
    line-height: 1.02;
    text-align: center;
    margin: 60px 0 18px;
}

body.legal .legal-intro {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    color: var(--muted);
}

body.legal .legal-toc {
    margin: 22px auto 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

body.legal .legal-toc a {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

body.legal .legal-section {
    padding: 44px 0 10px;
}

body.legal .legal-section h2 {
    font-size: 56px;
    line-height: 1.05;
    text-align: center;
    margin: 20px 0 34px;
}

.h3-terms {
    margin-top: 14px;
}

#terms-of-use ul,
#disclaimer ul,
#cookie-policy ul,
#privacy ul {
    list-style: disc;
    padding-left: 1.2em;
}

body.legal .legal-section li {
    font-size: 15px;
    line-height: 1.8;
    margin: 6px 0;
    color: var(--muted);
}

body.legal .legal-section a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

body.legal .legal-section a:hover {
    opacity: 0.85;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 980px) {
    body {
        padding-top: 90px;
    }

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 26px;
    }

    p,
    li {
        font-size: 16px;
    }

    header {
        padding: 12px 0 0;
    }

    .navbar {
        grid-template-columns: auto 1fr auto;
        padding: 0 18px 12px;
        gap: 14px;
    }

    .navbar .social-links {
        display: none;
    }

    .logo {
        grid-column: 1;
    }

    .logo img {
        width: 200px;
        height: auto;
    }

    .burger-menu {
        grid-column: 3;
        display: flex;
        height: 44px;
        margin: 0;
    }

    .nav-cta,
    .menu {
        display: none;
    }

    #mobile-menu {
        width: calc(100% - 36px);
        margin: 0 auto;
        text-align: center;
    }

    .mobile-cta {
        display: inline-flex;
        margin: 20px auto;
        margin: 14px 6px;
        width: calc(100% - 12px);
        max-width: 200px;
        padding: 14px 18px;
        font-size: 12px;
        letter-spacing: 0.3px;
    }

    #mobile-menu .language {
        padding: 10px 6px;
        width: fit-content;
    }

    #mobile-menu a.language img {
        width: 22px;
        height: 22px;
    }

    #hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 20px 28px 54px;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 35px;
    }

    .about-highlight {
        width: 100%;
        margin-left: 0;
        padding: 44px 0 52px;
    }

    .about-highlight .phrase {
        font-size: 26px;
        line-height: 1.05;
        padding: 0 28px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 38px;
        padding: 30px 28px;
    }

    .about-box h3 {
        font-size: 30px;
    }

    #services {
        padding: 56px 18px;
    }

    .services-inner {
        display: block;
    }

    #services .service-box {
        padding: 0 18px 20px;
    }

    #services .service-box h3 {
        font-size: 22px;
        text-align: center;
    }

    #services .transformation {
        margin-top: 15px;
        text-align: center;
    }

    #services .transformation .phrase {
        font-size: 26px;
        text-align: center;
    }

    #services .transformation .bee-icon {
        margin: 30px auto;
    }

    #services .approach {
        padding-top: 50px;
    }

    #services .approach h3 {
        font-size: 24px;
        text-align: center;
    }

    #testimonials {
        padding: 70px 20px;
    }

    #testimonials h2 {
        margin: 0px;
        padding: 0px;
    }

    .testimonial-carousel {
        grid-template-columns: 58px 1fr 58px;
        gap: 12px;
        align-items: center;
    }

    .testimonial-slide {
        padding: 0 8px;
    }

    .testimonial-text {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .testimonial-author {
        font-size: 16px;
        font-weight: 300;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    #testimonials .bee-icon{
        margin-top: 20px;
    }

    #contact {
        padding: 80px 0;
    }

    #contact h2 {
        font-size: 36px;
    }

    #contact .contact-inner {
        grid-template-columns: 1fr;
        row-gap: 34px;
        align-items: start;
    }

    #contact .contact-right {
        justify-content: center;
    }

    #contact .cta-button {
        width: 100%;
        max-width: 200px;
    }

    .contact-form{
        max-width: 100%;
        padding: 0 20px;
    }

    .contact-form form{
        gap: 16px;
    }

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

    .form-field{
        gap: 6px;
    }

    .form-field label{
        font-size: 14px;
        margin-left: 2px;
    }

    .form-field input,
    .form-field textarea{
        width: 100%;
        font-size: 16px;   /* avoids iPhone zoom */
        padding: 14px 14px;
    }

    .form-field textarea{
        height: 120px;
    }

    .send-form{
        align-self: center;
        margin-top: 6px;
    }

    #contact .bee-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .call-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-right {
        text-align: center;
        align-items: center;
    }

    .contact-right p {
        text-align: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "social"
            "right"
            "copy";
    }

    .footer-right {
        align-items: center;
    }

    .footer-nav,
    .footer-legal {
        justify-content: center;
        gap: 10px;
    }

    .footer-nav a {
        font-size: 15px;
    }

    .footer-legal a {
        font-size: 13px;
    }

    .footer-copy {
        font-size: 14px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin: 5px;
    }

    h4 {
        font-size: 20px;
    }

    #preference-modal {
        left: 5%;
        width: 90%;
    }

    .buttons {
        flex-wrap: wrap;
    }
}