/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #f7f4ee;
    background: #F4EADF;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

h1, h2, h3, h4 {
    color: #3F463F;
}

p {
    color: #565D55;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 6vw;
    background: #3F463F;
    color: #F4EADF;
}

.site-footer-branding {
    display: inline-flex;
    align-items: center;
    order: 2;
    gap: 24px;
}

.site-footer-brand {
    display: inline-flex;
    align-items: center;
}

.site-footer-logo {
    display: block;
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.site-footer-copyright {
    margin: 0;
    color: rgba(244, 234, 223, 0.72);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 1;
    width: 100%;
    gap: 10px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(244, 234, 223, 0.18);
}

.site-footer-contact-heading {
    margin: 0;
    color: #F4EADF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-links a {
    color: rgba(244, 234, 223, 0.92);
    transition: color 0.25s ease;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
    color: #F4EADF;
}

.site-footer-legal {
    display: flex;
    gap: 18px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-legal a {
    color: rgba(244, 234, 223, 0.72);
    transition: color 0.25s ease;
}

.site-footer-legal a:hover,
.site-footer-legal a:focus-visible {
    color: #F4EADF;
}

.site-footer-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    order: 3;
}

.legal-page {
    min-height: 100vh;
    padding: 190px 6vw 120px;
    background: #F4EADF;
}

.legal-content {
    max-width: 760px;
}

.legal-content h1 {
    margin-top: 16px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.04em;
}

.legal-updated {
    margin-top: 20px;
    font-size: 12px;
    color: #747A70;
}

.legal-content h2 {
    margin-top: 58px;
    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 400;
}

.legal-content p:not(.section-eyebrow):not(.legal-updated) {
    max-width: 680px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}


/* =========================
   HEADER
========================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;

    padding: 0 6vw;


    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;

    z-index: 20;
}


/* BRAND */

.brand {
    position: absolute;
    top: 16px;
    left: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
    margin: 0;
}

.brand-logo {
    display: block;
    width: 190px;
    height: 190px;
    object-fit: contain;
    transform: translate(-1%, -8%);
    transform-origin: top left;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.12));
}


/* NAV */

.main-nav {
    position: absolute;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;

    font-size: 15px;
    font-weight: 400;
}

.main-nav > a:not(.nav-book) {
    position: relative;
}

.main-nav > a:not(.nav-book)::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width 0.3s ease;
}

.main-nav > a:not(.nav-book):hover::after {
    width: 100%;
}

.main-nav > a.active:not(.nav-book)::after {
    width: 100%;
}

.nav-book {
    border: 1px solid rgba(255,255,255,0.65);

    padding: 15px 24px;

    transition: 0.3s ease;
}

.nav-book:hover {
    background: #fff;
    color: #222;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    background-image: url("../images/hero.PNG");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* DARK GRADIENT */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(14,18,15,0.72) 0%,
            rgba(14,18,15,0.43) 42%,
            rgba(14,18,15,0.06) 75%
        );
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(760px, 70vw);
}

.hero-content,
.journal-coming-soon-content,
.contact-intro-heading {
    margin-top: 0;
}

.hero-eyebrow,
.section-eyebrow {
    margin: 0 0 24px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.85);
}

/* BUTTONS */

.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 220px;
    min-width: 220px;

    padding: 15px 23px;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.06em;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.btn-primary {
    background: #f4f1ea;
    color: #222;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.55);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
}


/* LOCATION */

.hero-location {
    position: absolute;

    right: 6vw;
    bottom: 46px;

    z-index: 2;

    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.72);
}


/* =========================
   UNIFIED PAGE HERO STYLES
========================= */

.hero,
.journal-coming-soon,
.contact-intro {
    width: 100%;
    min-height: 100vh;
}

.hero,
.journal-coming-soon {
    padding: 150px 6vw 90px;
}

.hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(58px, 7vw, 108px);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-description {
    max-width: 470px;
    margin-top: 32px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.84);
}

/* =========================
   CITY CAROUSEL
========================= */

.city-carousel {
    width: 100%;
    padding: 28px 6vw 30px;
    overflow: hidden;
    background: #F4EADF;
    color: #3F463F;
}

.city-carousel-heading {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.city-carousel-heading .section-eyebrow {
    margin: 0;
    color: #747A70;
}

.city-carousel-window {
    overflow: hidden;
    border-bottom: 1px solid rgba(63, 70, 63, 0.35);
}

.city-carousel-track {
    display: flex;
    width: max-content;
    animation: city-marquee 38s linear infinite;
    will-change: transform;
}

.city-carousel-group {
    display: flex;
    gap: 12px;
    padding-right: 12px;
}

.city-card {
    flex: 0 0 clamp(150px, 17vw, 220px);
    min-height: 64px;
    padding: 14px 4px;
    border: 0;
    display: flex;
    align-items: center;
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 1.7vw, 25px);
    font-weight: 300;
    line-height: 1;
    color: #3F463F;
    transition: background 0.3s ease, border-color 0.3s ease;
}

@keyframes city-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .city-carousel-track {
        animation-play-state: paused;
    }
}

/* =========================
   HOME STATEMENT
========================= */

.home-statement {
    width: 100%;
    padding: 140px 6vw 150px;
    background: #F4EADF;
}

.home-statement-lines {
    max-width: 920px;
}

.home-statement-lines p {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5.4vw, 78px);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: 0;
    color: #565D55;
}

.home-statement-lines p + p {
    margin-top: 26px;
}

.home-statement-lines .home-statement-emphasis {
    color: #3F463F;
    font-weight: 400;
}

.home-positioning {
    width: 100%;
    padding: 0 6vw 140px;
    background: #F4EADF;
}

.home-positioning p {
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(25px, 2.8vw, 40px);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: 0;
    color: #3F463F;
}


/* =========================
   ABOUT PAGE
========================= */

.about-intro,
.about-ideology,
.about-approach,
.about-experience {
    width: 100%;
    padding: 120px 6vw;
    color: #3F463F;
}

/* =========================
   ABOUT INTRO
========================= */

.about-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);
    align-items: start;
}

.about-intro-heading {
    max-width: 560px;
}

.about-intro-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #3F463F;
}

.profile-name {
    margin-top: 18px;
    color: #3F463F;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
}

.about-credentials {
    margin-top: 6px;
    color: #565D55;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-transform: uppercase;
}

.profile-photo-placeholder {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 5;
    margin-top: 42px;
    border: 1px solid rgba(63, 70, 63, 0.28);
    background:
        linear-gradient(135deg, rgba(63, 70, 63, 0.06), rgba(116, 122, 112, 0.16)),
        #E9DED2;
    color: #747A70;
}

.profile-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-copy {
    max-width: 620px;
    padding-top: 38px;
}

.about-intro-copy p {
    color: #565D55;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
}

.about-intro-copy p + p {
    margin-top: 26px;
}

.about-intro-copy .about-lead {
    font-family: "Manrope", sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #3F463F;
    margin-bottom: 42px;
}

/* =========================
   SECTION EYEBROW
========================= */

.section-eyebrow {
    margin: 0 0 24px;

    color: #747A70;
    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* =========================
    IDEOLOGY
========================= */

.about-ideology {
    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.about-ideology-heading {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);

    margin-bottom: 90px;
}

.about-ideology-heading h2 {
    grid-column: 2;

    font-family: "Manrope", sans-serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.05em;

    color: #3F463F;
}

.about-ideology-heading .section-eyebrow {
    grid-column: 1;
    grid-row: 1;
}

.ideology-list {
    border-top: 1px solid rgba(63, 70, 63, 0.22);
}

.ideology-item {
    display: grid;
    grid-template-columns: 80px minmax(200px, 0.7fr) 1fr;
    gap: 40px;

    align-items: start;

    padding: 42px 0;

    border-bottom: 1px solid rgba(63, 70, 63, 0.22);
}

.ideology-number {
    padding-top: 8px;

    font-size: 11px;
    letter-spacing: 0.14em;

    color: #747A70;
}

.ideology-item h3 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 3.5vw, 54px);
    font-weight: 300;
    line-height: 1;

    letter-spacing: -0.04em;

    color: #3F463F;
}

.ideology-item p {
    max-width: 520px;

    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;

    color: #565D55;
}

/* =========================
   APPROACH
========================= */

.about-approach {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);

    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.about-approach-heading {
    max-width: 570px;
}

.about-approach-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.02;

    letter-spacing: -0.045em;

    color: #3F463F;
}

.about-approach-copy {
    max-width: 600px;
    padding-top: 38px;
}

.about-approach-copy p {
    color: #565D55;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
}

.about-approach-copy p + p {
    margin-top: 26px;
}

.about-approach-copy .about-lead {
    font-family: "Manrope", sans-serif;

    font-size: clamp(22px, 2vw, 28px);
    font-weight: 300;
    line-height: 1.55;

    letter-spacing: -0.02em;

    color: #3F463F;

    margin-bottom: 35px;
}

.text-link {
    display: inline-block;

    margin-top: 38px;

    padding-bottom: 5px;

    border-bottom: 1px solid #3F463F;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #3F463F;

    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.55;
}

/* =========================
   EXPERIENCE
========================= */

.about-experience {
    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.about-experience-heading {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);

    margin-bottom: 80px;
}

.about-experience-heading h2 {
    grid-column: 2;

    font-family: "Manrope", sans-serif;

    font-size: clamp(46px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.02;

    letter-spacing: -0.045em;

    color: #3F463F;
}

.about-experience-heading .section-eyebrow {
    grid-column: 1;
    grid-row: 1;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    border-top: 1px solid rgba(63, 70, 63, 0.22);
}

.experience-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    align-items: center;

    min-height: 105px;

    padding: 25px 30px 25px 0;

    border-bottom: 1px solid rgba(63, 70, 63, 0.22);
}

.experience-item:nth-child(odd) {
    border-right: 1px solid rgba(63, 70, 63, 0.22);
}

.experience-item:nth-child(even) {
    padding-left: 30px;
}

.experience-item span {
    font-size: 10px;
    letter-spacing: 0.12em;

    color: #747A70;
}

.experience-item p {
    font-family: "Manrope", sans-serif;

    font-size: clamp(18px, 2vw, 25px);
    font-weight: 300;

    color: #3F463F;
}

/* =========================
   ABOUT CTA
========================= */

.about-cta {
    padding: 140px 6vw;

    background: #3F463F;

    text-align: center;
}

.about-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-cta .section-eyebrow {
    color: rgba(244, 234, 223, 0.62);
}

.about-cta h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 88px);
    font-weight: 300;
    line-height: 1;

    letter-spacing: -0.05em;

    color: #F4EADF;
}

.about-cta > div > p:not(.section-eyebrow) {
    max-width: 520px;

    margin: 30px auto 0;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;

    color: rgba(244, 234, 223, 0.72);
}

.about-cta .hero-actions {
    justify-content: center;
}

/* =========================
   ABOUT MOBILE
========================= */

@media (max-width: 850px) {

    .about-intro,
    .about-approach {
        grid-template-columns: 1fr;
        gap: 45px;

        padding: 85px 24px;
    }

    .about-ideology,
    .about-experience {
        padding: 85px 24px;
    }

    .about-intro-copy,
    .about-approach-copy {
        padding-top: 0;
    }

    .about-ideology-heading,
    .about-experience-heading {
        display: block;
        margin-bottom: 55px;
    }

    .ideology-item {
        grid-template-columns: 42px 1fr;
        gap: 18px;

        padding: 32px 0;
    }

    .ideology-item p {
        grid-column: 2;

        margin-top: 8px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-item:nth-child(odd) {
        border-right: none;
    }

    .experience-item:nth-child(even) {
        padding-left: 0;
    }

    .about-cta {
        padding: 100px 24px;
    }
}

/* =========================
   SERVICES PAGE
========================= */

.services-intro,
.services-list-section,
.services-personal {
    width: 100%;
    padding: 120px 6vw;
    color: #3F463F;
}

/* =========================
   SERVICES INTRO
========================= */

.services-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);
    align-items: start;
}

.services-intro-heading {
    max-width: 560px;
}

.services-intro-heading h2,
.experiences-intro-heading h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #3F463F;
}

.services-intro-copy {
    max-width: 620px;
    padding-top: 38px;
}

.services-intro-copy p,
.experiences-intro-copy p {
    color: #565D55;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
}

.services-intro-copy p + p,
.experiences-intro-copy p + p {
    margin-top: 26px;
}

.services-intro-copy .about-lead,
.experiences-intro-copy .about-lead {
    font-family: "Manrope", sans-serif;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: -0.02em;
    color: #3F463F;
    margin-bottom: 42px;
}

/* =========================
   SERVICES LIST
========================= */

.services-list-section {
    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.services-section-heading {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);
    margin-bottom: 90px;
}

.services-section-heading .section-eyebrow,
.experiences-section-heading .section-eyebrow {
    grid-column: 1;
    grid-row: 1;
}

.services-section-heading h2,
.experiences-section-heading h2 {
    grid-column: 2;

    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.05em;

    color: #3F463F;
}

.services-list {
    border-top: 1px solid rgba(63, 70, 63, 0.22);
}

.service-row {
    display: grid;
    grid-template-columns: 80px minmax(240px, 0.8fr) 1fr;
    gap: 40px;

    align-items: start;

    padding: 52px 0;

    border-bottom: 1px solid rgba(63, 70, 63, 0.22);
}

.service-number {
    padding-top: 8px;

    font-size: 11px;
    letter-spacing: 0.14em;

    color: #747A70;
}

.service-name h3,
.experience-name h3 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(30px, 3vw, 48px);
    font-weight: 300;
    line-height: 1.05;

    letter-spacing: -0.04em;

    color: #3F463F;
}

.service-content {
    max-width: 560px;
}

.service-content > p,
.experience-content > p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;

    color: #565D55;
}

.service-details {
    list-style: none;

    margin-top: 26px;

    border-top: 1px solid rgba(63, 70, 63, 0.15);
}

.service-details li,
.experience-details li {
    position: relative;

    padding: 12px 0 12px 18px;

    border-bottom: 1px solid rgba(63, 70, 63, 0.15);

    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;

    color: #565D55;
}

.service-details li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #747A70;

    transform: translateY(-50%);
}

.service-content .text-link,
.experience-content .text-link {
    margin-top: 30px;
}

/* =========================
   SERVICES PERSONAL
========================= */

.services-personal {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);

    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.services-personal-heading {
    max-width: 570px;
}

.services-personal-heading h2,
.experiences-personal-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(44px, 5vw, 74px);
    font-weight: 300;
    line-height: 1.02;

    letter-spacing: -0.045em;

    color: #3F463F;
}

.services-personal-copy {
    max-width: 600px;
    padding-top: 38px;
}

.services-personal-copy p,
.experiences-personal-copy p {
    color: #565D55;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
}

.services-personal-copy .about-lead,
.experiences-personal-copy .about-lead {
    font-family: "Manrope", sans-serif;

    font-size: clamp(22px, 2vw, 28px);
    font-weight: 300;
    line-height: 1.55;

    letter-spacing: -0.02em;

    color: #3F463F;

    margin-bottom: 35px;
}

/* =========================
   SERVICES MOBILE
========================= */

@media (max-width: 850px) {

    .services-intro,
    .services-personal {
        grid-template-columns: 1fr;
        gap: 45px;

        padding: 85px 24px;
    }

    .services-list-section {
        padding: 85px 24px;
    }

    .services-intro-copy,
    .services-personal-copy {
        padding-top: 0;
    }

    .services-section-heading {
        display: block;
        margin-bottom: 55px;
    }

    .service-row {
        grid-template-columns: 42px 1fr;
        gap: 18px;

        padding: 38px 0;
    }

    .service-name {
        grid-column: 2;
    }

    .service-content {
        grid-column: 2;
        max-width: none;
    }

    .service-name h3,
    .experience-name h3 {
        font-size: 34px;
    }

    .service-details,
    .experience-details {
        margin-top: 22px;
    }
}

/* =========================
   EXPERIENCES PAGE
========================= */

.experiences-intro,
.experiences-list-section,
.experiences-personal {
    width: 100%;
    padding: 120px 6vw;
    color: #3F463F;
}

/* =========================
   EXPERIENCES INTRO
========================= */

.experiences-intro {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);
    align-items: start;
}

.experiences-intro-heading {
    max-width: 560px;
}

.experiences-intro-copy {
    max-width: 620px;
    padding-top: 38px;
}

/* =========================
   EXPERIENCES LIST
========================= */

.experiences-list-section {
    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.experiences-section-heading {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);
    margin-bottom: 90px;
}

.experiences-list {
    border-top: 1px solid rgba(63, 70, 63, 0.22);
}

.experience-row {
    display: grid;
    grid-template-columns: 80px minmax(240px, 0.8fr) 1fr;
    gap: 40px;

    align-items: start;

    padding: 52px 0;

    border-bottom: 1px solid rgba(63, 70, 63, 0.22);
}

.experience-number {
    padding-top: 8px;

    font-size: 11px;
    letter-spacing: 0.14em;

    color: #747A70;
}

.experience-content {
    max-width: 560px;
}

.experience-details {
    list-style: none;

    margin-top: 26px;

    border-top: 1px solid rgba(63, 70, 63, 0.15);
}

.experience-details li::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #747A70;

    transform: translateY(-50%);
}

/* =========================
   CUSTOM EXPERIENCE
========================= */

.experiences-personal {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);

    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.experiences-personal-heading {
    max-width: 570px;
}

.experiences-personal-copy {
    max-width: 600px;
    padding-top: 38px;
}

/* =========================
   EXPERIENCES MOBILE
========================= */

@media (max-width: 850px) {

    .experiences-intro,
    .experiences-personal {
        grid-template-columns: 1fr;
        gap: 45px;

        padding: 85px 24px;
    }

    .experiences-list-section {
        padding: 85px 24px;
    }

    .experiences-intro-copy,
    .experiences-personal-copy {
        padding-top: 0;
    }

    .experiences-section-heading {
        display: block;
        margin-bottom: 55px;
    }

    .experience-row {
        grid-template-columns: 42px 1fr;
        gap: 18px;

        padding: 38px 0;
    }

    .experience-name {
        grid-column: 2;
    }

    .experience-content {
        grid-column: 2;
        max-width: none;
    }

}

.menu-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1101px) and (max-width: 1370px) {

    .brand-logo {
        width: 190px;
    }
}

@media (max-width: 1100px) {

    .main-nav {
        display: none;
    }

    .main-nav.open {
        position: absolute;
        top: 200px;
        right: 6vw;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;

        min-width: 220px;
        padding: 24px;

        background: #3F463F;
        color: #F4EADF;
    }

    .contact-header .main-nav.open,
    .testimonials-header .main-nav.open {
        background: #F4EADF;
        color: #3F463F;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-toggle span {
        display: block;

        width: 27px;
        height: 1px;

        background: white;
    }

    .contact-header .menu-toggle span,
    .testimonials-header .menu-toggle span {
        background: #3F463F;
    }
}

@media (max-width: 850px) {

    .site-header {
        height: 90px;
        padding: 0 24px;
    }

    .brand-logo {
        width: 72px;
        height: 72px;
    }

    .brand {
        left: 16px;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        top: 90px;
        right: 24px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .menu-toggle span {
        display: block;

        width: 27px;
        height: 1px;

        background: white;
    }

    .hero {
        padding: 130px 24px 100px;
        align-items: flex-end;

        background-position: 80% center;
    }

    .hero-content {
        width: 100%;
    }

    .city-carousel {
        padding: 24px 24px 26px;
    }

    .city-card {
        flex-basis: min(180px, 52vw);
        min-height: 56px;
    }

    .hero h1 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .hero-description {
        font-size: 15px;
        max-width: 350px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-location {
        display: none;
    }

    .home-statement {
        padding: 95px 24px 105px;
    }

    .home-statement-lines p {
        font-size: clamp(34px, 11vw, 52px);
        line-height: 1.16;
    }

    .home-statement-lines p + p {
        margin-top: 20px;
    }

    .home-positioning {
        padding: 0 24px 95px;
    }

    .home-positioning p {
        max-width: 100%;
        font-size: clamp(23px, 7vw, 34px);
        line-height: 1.38;
    }
}

@media (max-width: 600px) {

    .hero {
        background-position: 92% center;
    }
}

@media (max-width: 400px) {

    .hero {
        background-position: 100% center;
    }
}

/* =========================
   JOURNAL - COMING SOON
========================= */

.journal-coming-soon-content {
    transform: translateY(31px);
}

.journal-status {
    margin-top: 24px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

.journal-header {
    color: #ffffff;
}

.journal-header .nav-book {
    border-color: rgba(255, 255, 255, 0.6);
}

.journal-header .nav-book:hover {
    background: #ffffff;
    color: #3F463F;
}

/* JOURNAL MOBILE */

@media (max-width: 850px) {

    .journal-header .menu-toggle span {
        background: #ffffff;
    }

    .journal-coming-soon-content {
        transform: translateY(13px);
    }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-header {
    color: #3F463F;
}

.contact-header .nav-book {
    border-color: rgba(63, 70, 63, 0.45);
}

.contact-header .nav-book:hover {
    background: #3F463F;
    color: #F4EADF;
}

/* =========================
   CONTACT INTRO
========================= */

.contact-intro {
    min-height: 100vh;

    padding: 150px 6vw 90px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 8vw, 140px);

    align-items: center;

    background: #F4EADF;
}

.contact-intro-heading h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(58px, 7vw, 108px);
    font-weight: 300;
    line-height: 0.92;

    letter-spacing: -0.055em;

    color: #3F463F;
}

.contact-intro-copy {
    max-width: 590px;
}

.contact-intro-copy p {
    color: #565D55;

    font-size: 17px;
    font-weight: 300;
    line-height: 1.85;
}

.contact-intro-copy p + p {
    margin-top: 25px;
}

.contact-intro-copy .contact-lead {
    margin-bottom: 38px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(22px, 2vw, 29px);
    font-weight: 300;
    line-height: 1.55;

    letter-spacing: -0.02em;

    color: #3F463F;
}

/* =========================
   CONTACT MAIN
========================= */

.contact-main {
    padding: 120px 6vw;

    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    gap: clamp(70px, 10vw, 160px);

    align-items: start;

    border-top: 1px solid rgba(63, 70, 63, 0.18);

    background: #F4EADF;
}

/* =========================
   CONTACT DETAILS
========================= */

.contact-details {
    max-width: 380px;
}

.contact-detail-item {
    padding: 26px 0;

    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

.contact-detail-item:last-child {
    border-bottom: 1px solid rgba(63, 70, 63, 0.18);
}

.contact-label {
    display: block;

    margin-bottom: 10px;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #747A70;
}

.contact-detail-item p,
.contact-detail-item a {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;

    color: #3F463F;
}

.contact-detail-item a {
    display: inline-block;

    transition: opacity 0.3s ease;
}

.contact-detail-item a:hover {
    opacity: 0.55;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form-wrap {
    width: 100%;
    max-width: 850px;
}

.contact-form-heading {
    max-width: 650px;

    margin-bottom: 65px;
}

.contact-form-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(40px, 4vw, 64px);
    font-weight: 300;
    line-height: 1.05;

    letter-spacing: -0.045em;

    color: #3F463F;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.form-group {
    margin-bottom: 42px;
}

.form-group label {
    display: block;

    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #747A70;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 0;

    border: none;
    border-bottom: 1px solid rgba(63, 70, 63, 0.35);

    border-radius: 0;

    outline: none;

    background: transparent;

    font-family: "DM Sans", sans-serif;

    font-size: 16px;
    font-weight: 300;

    color: #3F463F;

    transition: border-color 0.3s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 140px;

    line-height: 1.7;
}

.form-group select {
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(86, 93, 85, 0.55);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #3F463F;
}

/* =========================
   SUBMIT BUTTON
========================= */

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    min-width: 230px;

    padding: 17px 22px;

    border: 1px solid #3F463F;

    background: transparent;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #3F463F;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.contact-submit span {
    font-size: 17px;

    transition: transform 0.3s ease;
}

.contact-submit:hover {
    background: #3F463F;
    color: #F4EADF;
}

.contact-submit:hover span {
    transform: translateX(4px);
}

.contact-submit-row {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-form-feedback {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #747A70;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form-feedback.is-visible {
    opacity: 1;
}

/* =========================
   CONTACT CLOSING
========================= */

.contact-closing {
    padding: 140px 6vw;

    text-align: center;

    background: #3F463F;
}

.contact-closing .section-eyebrow {
    color: rgba(244, 234, 223, 0.6);
}

.contact-closing h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 88px);
    font-weight: 300;
    line-height: 1;

    letter-spacing: -0.05em;

    color: #F4EADF;
}

.contact-closing > p:last-child {
    margin-top: 30px;

    font-size: 17px;
    font-weight: 300;

    color: rgba(244, 234, 223, 0.7);
}

/* =========================
   CONTACT MOBILE
========================= */

@media (max-width: 850px) {

    .contact-header .menu-toggle span {
        background: #3F463F;
    }

    .contact-intro {
        min-height: auto;

        padding: 160px 24px 85px;

        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-intro-heading h1 {
        font-size: clamp(55px, 16vw, 80px);
    }

    .contact-main {
        padding: 85px 24px;

        grid-template-columns: 1fr;
        gap: 80px;
    }

    .contact-details {
        max-width: none;
    }

    .contact-form-heading {
        margin-bottom: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 35px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .contact-closing {
        padding: 100px 24px;
    }
}

/* =========================
   TESTIMONIALS PAGE
========================= */

.testimonials-header {
    color: #3F463F;
}

.testimonials-header .nav-book {
    border-color: rgba(63, 70, 63, 0.45);
}

.testimonials-header .nav-book:hover {
    background: #3F463F;
    color: #F4EADF;
}

.google-reviews-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 55px 0 0;
}

.google-reviews-summary {
    display: flex;
    align-items: center;
    gap: 18px;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #565D55;
}

.google-stars {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #3F463F;
}

.google-reviews-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;

    padding: 16px 22px;

    border: 1px solid #3F463F;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #3F463F;

    transition: 0.3s ease;
}

.google-reviews-button:hover {
    background: #3F463F;
    color: #F4EADF;
}

.google-reviews-button span {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.google-reviews-button:hover span {
    transform: translateX(4px);
}

/* =========================
   TESTIMONIAL HOVER
========================= */

.testimonial-row {
    transition: opacity 0.3s ease;
}

.testimonial-row:hover {
    opacity: 0.88;
}

/* =========================
   TESTIMONIALS MOBILE
========================= */

@media (max-width: 850px) {

    .site-footer {
        flex-wrap: wrap;
        padding: 24px;
    }

    .site-footer-links {
        margin-left: 0;
    }

    .site-footer-contact {
        width: 100%;
        margin-left: 0;
    }

    .site-footer-copyright {
        width: 100%;
    }

    .site-footer-branding {
        flex-wrap: wrap;
        gap: 12px 18px;
        width: 100%;
    }

    .site-footer-meta {
        flex-wrap: wrap;
        gap: 12px 18px;
        width: 100%;
    }

    .site-footer-legal {
        order: 3;
    }

    .legal-page {
        padding: 140px 24px 85px;
    }

    .testimonials-header .menu-toggle span {
        background: #3F463F;
    }

    .google-reviews-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-reviews-button {
        width: 100%;
    }
}

/* =========================
   GOOGLE REVIEWS SCROLLER
========================= */

.testimonials-reviews {
    padding: 250px 0 120px 6vw;
    overflow: hidden;
    background: #F4EADF;
}

#testimonials.testimonials-reviews {
    padding-top: 140px;
}

.testimonials-heading {
    max-width: 650px;
    padding-right: 6vw;
    margin-bottom: 70px;
}

.testimonials-heading h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.045em;
    color: #3F463F;
    margin-top: 15px;
}

.testimonials-heading .testimonials-intro-copy {
    max-width: 440px;
    margin-top: 25px;
    color: #565D55;
    font-size: 16px;
    line-height: 1.7;
}

.reviews-scroll {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 6vw;
    padding-bottom: 30px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.reviews-scroll .testimonial-row {
    flex: 0 0 min(430px, 82vw);
    min-height: 430px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 38px;
    border: 1px solid rgba(63, 70, 63, 0.22);
    scroll-snap-align: start;
}

.reviews-scroll .testimonial-meta {
    display: flex;
    order: 3;
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(63, 70, 63, 0.15);
    flex-direction: column;
    gap: 5px;
}

.reviews-scroll .testimonial-number {
    display: none;
}

.reviews-scroll .testimonial-source {
    order: 2;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    color: #747A70;
}

.reviews-scroll .testimonial-content {
    order: 1;
    max-width: none;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.reviews-scroll .testimonial-stars {
    margin-bottom: 32px;
    font-size: 13px;
    letter-spacing: 0.12em;
    color: #3F463F;
}

.reviews-scroll .testimonial-content blockquote {
    margin: 0 0 40px;
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: 0;
    color: #3F463F;
}

.reviews-scroll .testimonial-author {
    order: 1;
    margin-top: auto;
    padding-top: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #565D55;
}

.reviews-scroll-hint {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    color: #747A70;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.scroll-arrow {
    font-size: 18px;
}

.testimonials-reviews .google-reviews-footer {
    margin-top: 70px;
    margin-right: 6vw;
    padding-top: 45px;
    border-top: 1px solid rgba(63, 70, 63, 0.18);
}

@media (max-width: 850px) {

    .testimonials-reviews {
        padding: 140px 0 90px 24px;
    }

    .testimonials-heading {
        padding-right: 24px;
        margin-bottom: 50px;
    }

    .reviews-scroll {
        gap: 14px;
        padding-right: 24px;
    }

    .reviews-scroll .testimonial-row {
        flex-basis: 86vw;
        min-height: 400px;
        padding: 28px;
    }

    .reviews-scroll .testimonial-content blockquote {
        font-size: 16px;
    }

    .testimonials-reviews .google-reviews-footer {
        margin-right: 24px;
    }
}