/* ==========================================
   TORTOISE & TIDE
   GLOBAL STYLES
========================================== */

/* ---------- CSS VARIABLES ---------- */

:root{

    --cream:#F7F2EC;
    --sand:#eee5d8;
    --warmsand:#e9e0b5;
    --sage:#51664E;
    --forest:#374536;
    --terracotta:#D17046;

    --white:#ffffff;
    --black:#222222;

    --heading:'Playfair Display', serif;
    --body:'Montserrat', sans-serif;

    --container:1280px;

    --radius-small:12px;
    --radius:20px;
    --radius-large:20px;

/*    --shadow:
        0 18px 45px rgba(0,0,0,.08);

    --transition:.35s ease;*/

}

/* ---------- RESET ---------- */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--cream);
    color:var(--forest);
    font-family:var(--body);
    font-size:16px;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;
    cursor:pointer;
    background:none;
    font-family:inherit;

}

/* ---------- CONTAINER ---------- */

.container{

    width:min(92%, var(--container));
    margin-inline:auto;

}

/* ---------- TYPOGRAPHY ---------- */

h1,
h2,
h3,
h4{

    font-family:var(--heading);
    font-weight:600;
    line-height:1.1;
    color:var(--sage);

}

h1{

    font-size:clamp(3rem,6vw,4.3rem);

}

h2{

    font-size:clamp(2.2rem,4vw,3.8rem);

}

h3{

    font-size:1.5rem;

}

p{

    margin-top:1rem;
    max-width:100%;

}

.section-label{

    display:inline-block;
    color:var(--terracotta);
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:.8rem;
    margin-bottom:1rem;

}

.hero h1 span{

    color:var(--terracotta);

}

.squiggle {
    display: block;
    width: 10%;
    height: auto;
    margin: 1.5rem 0 1.75rem;
}

/* ---------- BUTTONS ---------- */

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.7rem;

    padding:16px 34px;

    border-radius:10px;

    transition:var(--transition);

    font-weight:600;

}

.button-green{

    background:var(--forest);

    color:white;

}

.button-green:hover{

    transform:translateY(-3px);

    background:var(--sage);

}

.button-orange{

    background:var(--terracotta);

    color:white;

}

.button-orange:hover{

    transform:translateY(-3px);

    filter:brightness(1.05);

}

.button-white{

    background:white;

    color:var(--forest);

}

.button-outline{

    border:2px solid var(--forest);

    color:var(--forest);

}

.text-link{

    display:inline-flex;

    align-items:center;

    gap:.75rem;

    font-weight:600;

    color:var(--forest);

    transition:.25s;

}

.text-link:hover{

    color:var(--terracotta);

}

/* ==========================================
   HEADER
========================================== */

.site-header{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(247,242,236,.95);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.04);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:96px;

}

.logo img{

    width:400px;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:2.8rem;

}

.nav-links a{

    position:relative;

    font-weight:500;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--terracotta);

    transition:.3s;

}

.nav-links a:hover::after{

    width:100%;

}

.mobile-menu{

    display:none;

    width:46px;

    height:46px;

}

.mobile-menu span{

    display:block;

    width:26px;

    height:2px;

    background:var(--forest);

    margin:6px auto;

    transition:.3s;

}

@media (max-width: 992px) {

    .nav-links.mobile-open {

        display: flex;

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        padding: 1.5rem 5% 2rem;

        background: var(--cream);

        border-bottom: 1px solid rgba(55,69,54,.1);

        flex-direction: column;

        align-items: flex-start;

        gap: 1.25rem;

    }

    .nav-links.mobile-open a {

        width: 100%;

        padding: .4rem 0;

    }

}

/* ==========================================
   HERO
========================================== */


.hero{

    position:relative;
    overflow:hidden;
    padding:50px 0 0;
    padding-bottom:120px;

}

.hero-wave-overlay{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    z-index:10;

    pointer-events:none;

    line-height:0;

    z-index:10;

}

.hero-wave-overlay img{

    display:block;

    width:100%;

    height:auto;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:5rem;

}

.hero-content{

    position:relative;

    z-index:5;

}

/*.hero-wave{

    width:120px;

    margin-bottom:2rem;

}*/

.hero p{

    font-size:1.1rem;

    margin:2rem 0;
    

}

.hero-buttons{

    display:flex;

    align-items:center;

    gap:2rem;

    margin-top:2.5rem;

}

.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    border-radius:32px;

    object-fit:cover;

    box-shadow:var(--shadow);

}

.sun-circle{

    position:absolute;

    width:180px;

    height:180px;

    background:var(--terracotta);

    border-radius:50%;

    right:-60px;

    top:-40px;

    z-index:-1;

}



/* ==========================================
   OUR APPROACH
========================================== */

.approach{

    background:var(--sage);
    color:white;
    margin-top: -10px;
    padding:7rem 0;

}

.approach h2{

    color:white;
    text-align:center;
    margin-bottom:4rem;

}

.approach-grid{

    display: grid;
    grid-auto-flow: column;
    gap:2rem;
    align-items:start;

}

.approach-card{

    text-align:center;
    padding:1rem;

}

.approach-icon{

    width:90px;
    height:90px;
    margin:0 auto 2rem;
    display:flex;
    align-items:center;
    justify-content:center;

}

.approach-icon img{

    width:70px;

}

.approach-card h3{

    color:white;
    margin-bottom:1rem;

}

.approach-card p{

    color:rgba(255,255,255,.85);
    margin:0 auto;
    max-width:260px;
    font-size:.95rem;

}

.divider{

    display:none;

}

/* ==========================================
   SERVICES
========================================== */

.services-preview{

    padding:8rem 0;
    background:var(--cream);

}

.services-layout{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:5rem;
    align-items:center;

}

.services-copy h2{

    margin-bottom:1.5rem;

}

.services-copy p{

    margin-bottom:2rem;

}

.services-icons{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;

}

.service-item{

    background:white;
    border-radius:24px;
    padding:2.5rem 2rem;
    text-align:center;
    box-shadow:var(--shadow);
    transition:var(--transition);

}

.service-item:hover{

    transform:translateY(-8px);

}

.service-item img{

    width:72px;
    margin:0 auto 1.5rem;

}

.service-item h3{

    font-size:1.2rem;

}

/* ==========================================
   FEATURED WORK
========================================== */

.featured-work{

    padding:8rem 0;
    background:white;

}

.section-heading{

    text-align:center;
    margin-bottom:4rem;

}

.section-heading p{

    margin:1.5rem auto 0;
    max-width:650px;

}

.projects-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2.5rem;

}

.project-card{

    background:white;
    border-radius:28px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:var(--transition);

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-card img{

    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.05);

}

.project-info{

    padding:2rem;

}

.project-info span{

    display:inline-block;
    color:var(--terracotta);
    font-weight:600;
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:.8rem;

}

.project-info h3{

    margin-bottom:1rem;

}

.project-info p{

    margin-bottom:2rem;

}

.project-info a{

    font-weight:600;
    color:var(--forest);
    transition:.25s;

}

.project-info a:hover{

    color:var(--terracotta);

}

.section-button{

    text-align:center;
    margin-top:4rem;

}
/* ==========================================
   CALL TO ACTION
========================================== */

.cta-banner{

    background:var(--sand);
    padding:4rem 0;
    position:relative;
    overflow:hidden;

}

.cta-content{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:4rem;
    align-items:center;

}

.cta-copy h2{

    margin:1rem 0 1.5rem;

}

.cta-copy p{

    max-width:600px;

}

.cta-buttons{

    display:flex;
    flex-direction:column;
    gap:1rem;
    align-items:flex-end;

}

.cta-buttons .button{

    width:240px;

}

/* Decorative background circle */

.cta-banner::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    right:-120px;
    bottom:-180px;

}

/* ==========================================
   NEWSLETTER
========================================== */

.newsletter{

    background:var(--cream);
    padding:7rem 0;

}

.newsletter-box{

    background:white;

    border-radius:36px;

    padding:4rem;

    display:grid;

    grid-template-columns:1.5fr 1fr;

    gap:3rem;

    align-items:center;

    box-shadow:var(--shadow);

}

.newsletter-text h2{

    margin:1rem 0;

}

.newsletter-form{

    display:flex;

    gap:1rem;

    align-items:center;

}

.newsletter-form input{

    flex:1;

    padding:18px 24px;

    border-radius:999px;

    border:2px solid rgba(0,0,0,.08);

    background:#fff;

    font-size:1rem;

    transition:.3s;

}

.newsletter-form input:focus{

    outline:none;

    border-color:var(--terracotta);

}

.newsletter-form button{

    flex-shrink:0;

}

/* ==========================================
   FOOTER
========================================== */

.site-footer{

    color: white;
    padding-top: 6rem;
    background: var(--forest);

}

.footer-grid{

    display:grid;

    grid-template-columns:

        2fr
        1fr
        1fr
        1fr;

    gap:4rem;

    padding-bottom:4rem;

}

.footer-brand img{

    width:100%;

    margin-bottom:2rem;

}

.footer-brand p{

    color:rgba(255,255,255,.75);

    max-width:320px;

}

.site-footer h4{

    color:white;

    margin-bottom:1.5rem;

    font-size:1.1rem;

}

.footer-links ul,
.footer-social ul{

    display:flex;

    flex-direction:column;

    gap:.9rem;

}

.footer-links a,
.footer-social a{

    color:rgba(255,255,255,.8);

    transition:.3s;

}

.footer-links a:hover,
.footer-social a:hover{

    color:white;

    padding-left:6px;

}

.footer-contact p{

    margin-bottom:.8rem;

    color:rgba(255,255,255,.8);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:2rem 0;

    text-align:center;

    font-size:.9rem;

    color:rgba(255,255,255,.65);

}

/* ==========================================
   GENERAL SECTION SPACING
========================================== */

section{

    position:relative;

}

.section-heading{

    margin-bottom:4rem;

}

.section-heading h2{

    margin:1rem 0;

}

.section-heading.centre{

    text-align:center;

}

.section-heading.centre p{

    margin:1.5rem auto 0;

}

/* ==========================================
   IMAGE STYLING
========================================== */

.project-card img,
.hero-image img{

    position:relative;

    z-index:2;

}

/* ==========================================
   SUBTLE ANIMATIONS
========================================== */

.button,
.project-card,
.service-item,
.approach-card{

    transition:

        transform .35s ease,

        box-shadow .35s ease,

        background .35s ease,

        color .35s ease;

}

.project-card:hover,
.service-item:hover{

    box-shadow:

        0 28px 60px rgba(0,0,0,.12);

}

.button:active{

    transform:scale(.98);

}

/* ==========================================
   UTILITY CLASSES
========================================== */

.text-centre{

    text-align:center;

}

.mt-2{

    margin-top:2rem;

}

.mt-4{

    margin-top:4rem;

}

.mb-2{

    margin-bottom:2rem;

}

.mb-4{

    margin-bottom:4rem;

}


/* ==========================================
   RESPONSIVE
========================================== */

/* ---------- Large Desktop ---------- */

@media (max-width: 1400px){

    .container{
        width:min(94%,1200px);
    }

    .hero-grid{
        gap:4rem;
    }

}

/* ---------- Laptop ---------- */

@media (max-width:1200px){

    h1{
        font-size:clamp(3rem,5vw,4.5rem);
    }

    h2{
        font-size:clamp(2.2rem,4vw,3.2rem);
    }

    .hero-grid{
        gap:3rem;
    }

    .projects-grid{
        gap:2rem;
    }

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        row-gap:3rem;
    }

    .cta-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .cta-buttons{
        align-items:center;
        flex-direction:row;
        justify-content:center;
    }

}

/* ---------- Tablet ---------- */

@media (max-width:992px){

    section{
        padding:5rem 0;
    }

    .navbar{

        height:85px;

    }

    .nav-links{

        display:none;

    }

    .mobile-menu{

        display:block;

    }


    .hero-grid{
        display:flex;
        flex-direction:column;
    }

    .hero-content{
        order:1;
    }

    .hero-image{
        order:2;
        max-width:650px;
        margin:2rem auto 0;
    }

    .hero-image{

        order:1;

        max-width:650px;

        margin:auto;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero p{

        margin-inline:auto;

    }

    .services-layout{

        grid-template-columns:1fr;

        gap:4rem;

        text-align:center;

    }

    .services-copy p{

        margin-inline:auto;

    }

    .services-icons{

        grid-template-columns:repeat(3,1fr);

    }

    .approach-grid{

        grid-template-columns:repeat(2,1fr);

        row-gap:3rem;

    }

    .projects-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .newsletter-box{

        grid-template-columns:1fr;

        text-align:center;

    }

    .newsletter-form{

        justify-content:center;

    }

}

/* ---------- Mobile ---------- */

@media (max-width:768px){

    body{

        font-size:15px;

    }

    h1{

        font-size:3rem;

    }

    h2{

        font-size:2.2rem;

    }

    .hero{

        padding-top:5rem;

    }

    .hero-wave{

        display:block;

        width:100%;
    
        vertical-align: bottom;

    }

    .hero-buttons{

        flex-direction:column;

        gap:1rem;

    } 

    .hero-buttons .button{

        width:100%;

        /*max-width:340px;*/

    }

    .button{

        padding:15px 28px;

    }

    .services-icons{

        grid-template-columns:1fr;

    }

    .projects-grid{

        grid-template-columns:1fr;

    }

    .approach-grid{

        grid-template-columns:1fr;

    }

    .project-card{

        max-width:480px;

        margin:auto;

    }

    .newsletter-box{

        padding:2.5rem;

    }

    .newsletter-form{

        flex-direction:column;

    }

    .newsletter-form input{

        width:100%;

    }

    .newsletter-form button{

        width:100%;

    }

    .cta-buttons{

        flex-direction:column;

    }

    .cta-buttons .button{

        width:100%;

        max-width:340px;

    }

    .footer-grid{

        grid-template-columns:1fr;

        text-align:center;

    }

    .footer-brand p{

        margin-inline:auto;

    }

    .footer-brand img{

        margin-inline:auto;

    }

}

/* ---------- Small Mobile ---------- */

@media (max-width:480px){

    .container{

        width:92%;

    }

    h1{

        font-size:2.5rem;

    }

    h2{

        font-size:2rem;

    }

    .hero{

        padding-top:4rem;

    }

    .hero-image img{

        border-radius:24px;

    }

    .service-item{

        padding:2rem;

    }

    .project-info{

        padding:1.5rem;

    }

    .newsletter-box{

        padding:2rem;

        border-radius:24px;

    }

    .button{

        font-size:.95rem;

    }

}

/* ==========================================
   SIMPLE MOBILE MENU
========================================== */

.mobile-menu.active span:nth-child(1){

    transform:translateY(8px) rotate(45deg);

}

.mobile-menu.active span:nth-child(2){

    opacity:0;

}

.mobile-menu.active span:nth-child(3){

    transform:translateY(-8px) rotate(-45deg);

}

/* ==========================================
   SCROLL ANIMATION SUPPORT
========================================== */

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* ==========================================
   HOVER EFFECTS
========================================== */

.project-card:hover{

    transform:translateY(-10px);

}

.project-card:hover h3{

    color:var(--terracotta);

}

.service-item:hover img{

    transform:scale(1.08);

}

.approach-card:hover{

    transform:translateY(-6px);

}

.button:hover{

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

/* ==========================================
   SELECTION COLOUR
========================================== */

::selection{

    background:var(--terracotta);

    color:white;

}





/* ==========================================
   TORTOISE & TIDE
   ABOUT PAGE
========================================== */


/* ---------- PAGE INTRO ---------- */

.about-intro {
    padding: 4.5rem 0 5.5rem;
    background: var(--cream);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.about-intro-copy {
    max-width: 590px;
}

.about-label {
    display:inline-block;
    color:var(--terracotta);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:.8rem;
    margin-bottom:1rem;
}

.about-intro h1 {
    color: var(--sage);
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.about-intro p,
.about-idea-copy p {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 470px;
}

.about-intro p + p,
.about-idea-copy p + p {
    margin-top: 1.05rem;
}


.about-squiggle {
    display: block;
    width: 10%;
    height: auto;
    margin: 1.5rem 0 1.75rem;
}

.about-image {
    overflow: hidden;
    border-radius: 13px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-primary {
    aspect-ratio: 1.18 / 1;
}

.about-image-primary img {
    object-position: center;
}


/* ---------- THE IDEA ---------- */

.about-idea {
    padding: 0 0 5.8rem;
    background: var(--cream);
}

.about-idea-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}

.about-image-secondary {
    aspect-ratio: 1.28 / 1;
}

.about-image-secondary img {
    object-position: center;
}

.about-idea-copy {
    max-width: 480px;
}

.about-idea-copy h2 {
    color: var(--sage);
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}


/* ---------- OUR PROMISE ---------- */

.about-promise {
    padding: 1.2rem 0 5.5rem;
    background: var(--cream);
}

.about-section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-section-heading .about-label {
    margin-bottom: 0.45rem;
}

.about-section-heading h2 {
    color: var(--forest);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    line-height: 1.1;
    margin: 0 0 0.7rem;
}

.about-section-heading .about-squiggle {
    margin: 0 auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
}

.promise-card {
    text-align: center;
    padding: 0 2rem;
}

.promise-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eee5d8;
    color: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.promise-icon span {
    font-family: Georgia, serif;
    font-size: 1.65rem;
    line-height: 1;
}

.promise-icon-wave span {
    font-size: 1.75rem;
    transform: translateY(-2px);
}

.promise-icon-sun span {
    font-size: 1.75rem;
}

.promise-card h3 {
    color: var(--forest);
    font-size: 1.7rem;
    margin-bottom: 1rem;
}

.promise-card p {
    color: #343934;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 210px;
    margin: 0 auto;
}

.promise-divider {
    width: 1px;
    background: rgba(55, 69, 54, 0.12);
    min-height: 112px;
}


/* ---------- CTA ---------- */

.about-cta {
    position: relative;
    padding: 4rem 0;
    background-image: url("../assets/images/CTA\ Section\ bg.jpg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    overflow: hidden;
}

.about-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.about-cta h2 {
    color: var(--forest);
    margin-top: 0.25rem;
}

.about-cta .about-label {
    margin-bottom: 0.4rem;
}


/* ---------- ACTIVE NAV ---------- */

.site-header .nav-links a[aria-current="page"] {
    color: var(--terracotta);
}

.site-header .nav-links a[aria-current="page"]::after {
    width: 100%;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 1200px) {
    .about-intro {
        padding-top: 3.5rem;
    }

    .about-intro-grid,
    .about-idea-grid {
        gap: 4rem;
    }

    .promise-card {
        padding-inline: 1.25rem;
    }
}

@media (max-width: 992px) {
    .about-intro-grid,
    .about-idea-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .about-intro h1 {
        font-size: clamp(3rem, 6vw, 4.2rem);
    }

    .about-intro p,
    .about-idea-copy p {
        font-size: 0.78rem;
    }

    .about-idea-copy h2 {
        font-size: clamp(2.25rem, 4vw, 3rem);
    }

    .promise-grid {
        max-width: 760px;
    }

    .promise-card {
        padding-inline: 0.8rem;
    }

    .about-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 4rem 0 4.5rem;
    }

    .about-intro-grid,
    .about-idea-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .about-intro-copy,
    .about-idea-copy {
        max-width: 620px;
        margin-inline: auto;
    }

    .about-intro h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .about-intro p,
    .about-idea-copy p {
        font-size: 0.8rem;
    }

    .about-image-primary {
        aspect-ratio: 1.25 / 1;
    }

    .about-image-secondary {
        aspect-ratio: 1.3 / 1;
        order: 1;
    }

    .about-idea-copy {
        order: 2;
    }

    .about-promise {
        padding-top: 0.5rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .promise-card {
        padding: 0 1rem;
    }

    .promise-divider {
        width: 70px;
        min-height: 1px;
        height: 1px;
        margin: 0 auto;
    }

    .about-cta {
        padding: 4.5rem 0;
        background-size: auto 100%;
        background-position: center bottom;
    }
}

@media (max-width: 480px) {
    .about-intro {
        padding-top: 3rem;
    }

    .about-intro h1 {
        font-size: 2.7rem;
    }

    .about-idea-copy h2 {
        font-size: 2.25rem;
    }

    .about-image {
        border-radius: 12px;
    }

    .about-section-heading h2 {
        font-size: 2rem;
    }

    .about-cta h2 {
        font-size: 2.25rem;
    }
}



/* ==========================================
   TORTOISE & TIDE
   SERVICES PAGE
========================================== */


/* ==========================================
   HERO
========================================== */

.services-hero {

    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--cream);

}


/* ---------- HERO IMAGE ---------- */

.services-hero-image {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            rgba(247,242,236,.96) 25%,
            rgba(247,242,236,.60) 43%,
            rgba(247,242,236,.05) 65%
        ),
        url("../assets/images/Cliffs.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}


/*
    If your cliff image has a different filename,
    replace "Cliffs.jpg" above with the correct filename.
*/


.services-hero-content {

    position: relative;

    z-index: 3;

    width: 50%;

    padding: 5rem 0 7rem;

}


.services-hero h1 {

    color: var(--sage);

    font-size: clamp(3rem, 5vw, 4.5rem);

    line-height: 1;

    letter-spacing: -0.025em;

    margin-bottom: 1rem;

}


.services-squiggle {

    display: block;

    width: 10%;

    height: auto;

    margin: 1.5rem 0 1.75rem;

}


.services-hero p {

    font-size: 1rem;

    line-height: 1.75;

    max-width: 380px;

}


/* ---------- HERO WAVE ---------- */

.services-hero-wave {

    position: absolute;

    left: 0;
    bottom: -1px;

    width: 100%;

    z-index: 5;

    line-height: 0;

}


.services-hero-wave svg {

    display: block;

    width: 100%;

    height: 100px;

}


.services-hero-wave path {

    fill: var(--cream);

}



/* ==========================================
   STANDARD SERVICE SECTIONS
========================================== */

.service-section {

    background: var(--cream);

    padding: 5rem 0;

    border-bottom: 1px solid rgba(55,69,54,.10);

}


.service-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: clamp(4rem, 8vw, 8rem);

}


.service-section-alt {

    background: var(--cream);

}


.service-copy {

    max-width: 550px;

}


.service-copy h2 {

    color: var(--sage);

    font-size: clamp(2.4rem, 4vw, 3.7rem);

    line-height: 1;

    letter-spacing: -0.025em;

    margin-bottom: 1rem;

}


.service-copy p {

    font-size: 1rem;

    line-height: 1.75;

    max-width: 500px;

}


.service-copy p + p {

    margin-top: 1.05rem;

}


/* ==========================================
   SERVICE IMAGE
========================================== */

.service-image {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 1.35 / 1;

    overflow: hidden;

    border-radius: 14px;

    background: var(--sand);

}


.service-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/* ==========================================
   SERVICE LIST
========================================== */

.service-details {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: .7rem 2rem;

    margin-top: 2rem;

    max-width: 500px;

}


.service-details li {

    position: relative;

    padding-left: 1.2rem;

    color: var(--forest);

    font-size: .9rem;

    line-height: 1.5;

}


.service-details li::before {

    content: "•";

    position: absolute;

    left: 0;

    color: var(--terracotta);

    font-size: 1rem;

}



/* ==========================================
   TECHNICAL SERVICES
========================================== */

.technical-services {

    background: var(--cream);

    padding: 5.5rem 0 6rem;

    border-bottom: 1px solid rgba(55,69,54,.10);

}


.technical-heading {

    max-width: 700px;

    margin: 0 auto 4rem;

    text-align: center;

}


.technical-heading h2 {

    color: var(--sage);

    font-size: clamp(2.3rem, 4vw, 3.5rem);

    line-height: 1;

    letter-spacing: -0.025em;

    margin-bottom: 1.25rem;

}


.technical-heading p {

    max-width: 590px;

    margin: 0 auto;

    font-size: 1rem;

    line-height: 1.75;

}


/* ---------- TECHNICAL GRID ---------- */

.technical-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    max-width: 1120px;

    margin: 0 auto;

}


.technical-card {

    position: relative;

    padding: 0 3rem;

    text-align: left;

}


.technical-card + .technical-card {

    border-left: 1px solid rgba(55,69,54,.15);

}


/* ---------- ICON ---------- */

.technical-icon {

    width: 64px;
    height: 64px;

    margin-bottom: 1.5rem;

}


.technical-icon svg {

    width: 100%;
    height: 100%;

    fill: none;

    stroke: var(--forest);

    stroke-width: 1.5;

    stroke-linecap: round;

    stroke-linejoin: round;

}


/* ---------- NUMBER ---------- */

.technical-number {

    display: block;

    color: var(--terracotta);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    margin-bottom: .8rem;

}


/* ---------- TECHNICAL HEADING ---------- */

.technical-card h3 {

    color: var(--sage);

    font-size: clamp(1.8rem, 2.5vw, 2.35rem);

    line-height: 1.1;

    letter-spacing: -0.02em;

    margin-bottom: .75rem;

}


.technical-squiggle {

    display: block;

    width: 45px;

    height: auto;

    margin: 1rem 0 1.25rem;

}


.technical-card p {

    max-width: 280px;

    margin: 0;

    font-size: .85rem;

    line-height: 1.7;

}



/* ==========================================
   FREE PACKAGES
========================================== */

.free-packages {

    position: relative;
    background-color: var(--sage);
    background-image: url("../assets/images/packages-banner-bg.jpg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 175%;
    color: white;
    padding: 2.7rem 0;
    overflow: hidden;

}



.free-packages-inner {

    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        auto
        1.3fr
        1fr
        auto;

    align-items: center;

    gap: 2.5rem;

}


/* ---------- GIFT ---------- */

.free-packages-decoration {

    display: flex;

    align-items: center;
    justify-content: center;

}


.gift-icon {

    width: 82px;
    height: 82px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--terracotta);

    border-radius: 50%;

}


.gift-icon svg {

    width: 45px;
    height: 45px;

    fill: none;

    stroke: var(--terracotta);

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

}


/* ---------- COPY ---------- */

.free-packages-label {

    display: block;

    color: var(--terracotta);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    margin-bottom: .5rem;

}


.free-packages-copy h2 {

    color: white;

    font-size: clamp(2rem, 3vw, 2.8rem);

    line-height: 1;

    margin: 0;

}


.free-packages-description {

    max-width: 330px;

    margin: 0;

    color: rgba(255,255,255,.82);

    font-size: .85rem;

    line-height: 1.7;

}


/* ---------- BUTTON ---------- */

.free-packages .button-white {

    white-space: nowrap;

    padding: 14px 24px;

}


.free-packages .button-white span {

    color: var(--terracotta);

    font-size: 1.2rem;

}



/* ==========================================
   FINAL CTA
========================================== */

.services-cta {

    position: relative;

    padding: 4rem 0;

    background-image:
        url("../assets/images/CTA\ Section\ bg.jpg");

    background-repeat: no-repeat;

    background-position: center bottom;

    background-size: 100% auto;

    overflow: hidden;

}


.services-cta-inner {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 3rem;

}


.services-cta h2 {

    color: var(--forest);

    margin-top: .25rem;

}


.services-cta .about-label {

    margin-bottom: .4rem;

}



/* ==========================================
   ACTIVE NAV
========================================== */

.site-header .nav-links a[aria-current="page"] {

    color: var(--terracotta);

}


.site-header .nav-links a[aria-current="page"]::after {

    width: 100%;

}



/* ==========================================
   RESPONSIVE
========================================== */


/* ---------- LARGE TABLET ---------- */

@media (max-width: 1200px) {


    .services-hero-content {

        width: 55%;

    }


    .service-grid {

        gap: 4rem;

    }


    .technical-card {

        padding-inline: 2rem;

    }


    .free-packages-inner {

        gap: 1.75rem;

    }

}



/* ---------- TABLET ---------- */

@media (max-width: 992px) {


    .services-hero {

        min-height: 500px;

    }


    .services-hero-image {

        background-image:
            linear-gradient(
                90deg,
                var(--cream) 0%,
                rgba(247,242,236,.90) 35%,
                rgba(247,242,236,.20) 75%
            ),
            url("../assets/images/Cliffs.jpg");

    }


    .services-hero-content {

        width: 65%;

    }


    .service-grid {

        gap: 3rem;

    }


    .technical-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }


    .technical-card {

        padding-inline: 1.5rem;

    }


    .technical-card h3 {

        font-size: 1.7rem;

    }


    .free-packages-inner {

        grid-template-columns:
            auto
            1fr
            1fr;

    }


    .free-packages-inner .button {

        grid-column: 2 / -1;

        justify-self: start;

    }

}



/* ---------- MOBILE ---------- */

@media (max-width: 768px) {


    .services-hero {

        min-height: 620px;

        align-items: flex-start;

    }


    .services-hero-image {

        background-image:
            linear-gradient(
                180deg,
                rgba(247,242,236,.94) 0%,
                rgba(247,242,236,.78) 40%,
                rgba(247,242,236,.10) 75%
            ),
            url("../assets/images/cliffs.jpg");

        background-position: center;

    }


    .services-hero-content {

        width: 100%;

        padding-top: 4rem;

    }


    .services-hero h1 {

        font-size: clamp(2.8rem, 12vw, 4rem);

    }


    .services-hero p {

        max-width: 330px;

    }


    .services-hero-wave svg {

        height: 70px;

    }


    /* SERVICE SECTIONS */

    .service-section {

        padding: 4.5rem 0;

    }


    .service-grid {

        grid-template-columns: 1fr;

        gap: 2.75rem;

    }


    .service-section-alt .service-image {

        order: 2;

    }


    .service-section-alt .service-copy {

        order: 1;

    }


    .service-copy {

        max-width: 620px;

        margin-inline: auto;

    }


    .service-copy h2 {

        font-size: clamp(2.25rem, 10vw, 3rem);

    }


    .service-copy p {

        font-size: .8rem;

    }


    .service-image {

        aspect-ratio: 1.25 / 1;

    }


    .service-details {

        grid-template-columns: 1fr;

    }


    /* TECHNICAL */

    .technical-services {

        padding: 4.5rem 0;

    }


    .technical-heading {

        margin-bottom: 3rem;

    }


    .technical-heading h2 {

        font-size: 2.4rem;

    }


    .technical-heading p {

        font-size: .8rem;

    }


    .technical-grid {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .technical-card {

        padding: 2.5rem 0;

        text-align: center;

    }


    .technical-card:first-child {

        padding-top: 0;

    }


    .technical-card + .technical-card {

        border-left: none;

        border-top: 1px solid rgba(55,69,54,.15);

    }


    .technical-icon {

        margin: 0 auto 1.25rem;

    }


    .technical-card h3 {

        font-size: 2rem;

    }


    .technical-squiggle {

        margin-inline: auto;

    }


    .technical-card p {

        margin-inline: auto;

        max-width: 340px;

    }


    /* FREE PACKAGES */

    .free-packages {

        background-size: auto 100%;
        background-position: left center;
        padding: 3.5rem 0;

    }


    .free-packages-inner {

        position: relative;
        z-index: 2;

        display: grid;
        grid-template-columns: 1fr;

        text-align: center;

        gap: 1.5rem;

    }


    .free-packages-decoration {

        margin: 0 auto;

    }


    .free-packages-copy h2 {

        font-size: 2.4rem;

    }


    .free-packages-description {

        margin-inline: auto;

    }


    .free-packages-inner .button {

        grid-column: auto;

        justify-self: center;

    }


    /* FINAL CTA */

    .services-cta {

        padding: 4.5rem 0;

        background-size: auto 100%;

        background-position: center bottom;

    }


    .services-cta-inner {

        flex-direction: column;

        text-align: center;

    }

}



/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {


    .services-hero {

        min-height: 570px;

    }


    .services-hero-content {

        padding-top: 3rem;

    }


    .services-hero h1 {

        font-size: 2.7rem;

    }


    .service-section {

        padding: 4rem 0;

    }


    .service-copy h2 {

        font-size: 2.25rem;

    }


    .service-image {

        border-radius: 12px;

    }


    .technical-card h3 {

        font-size: 1.8rem;

    }


    .free-packages-copy h2 {

        font-size: 2.15rem;

    }


    .services-cta h2 {

        font-size: 2.25rem;

    }

}






/* ==========================================
   TORTOISE & TIDE
   OUR WORK PAGE
========================================== */


/* ==========================================
   HERO
========================================== */

.work-hero {

    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--cream);

}


/* ---------- HERO IMAGE ---------- */

.work-hero-image {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            rgba(247,242,236,.96) 25%,
            rgba(247,242,236,.60) 43%,
            rgba(247,242,236,.05) 65%
        ),
        url("../assets/images/work-banner.png");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}


/* ---------- HERO CONTENT ---------- */

.work-hero-content {

    position: relative;

    z-index: 3;

    width: 52%;

    padding: 5rem 0 7rem;

}


.work-hero h1 {

    color: var(--sage);

    font-size: clamp(3rem, 5vw, 4.5rem);

    line-height: 1;

    letter-spacing: -0.025em;

    margin-bottom: 1rem;

}


.work-squiggle {

    display: block;

    width: 10%;

    height: auto;

    margin: 1.5rem 0 1.75rem;

}


.work-hero p {

    font-size: 1rem;

    line-height: 1.75;

    max-width: 430px;

}


/* ---------- HERO WAVE ---------- */

.work-hero-wave {

    position: absolute;

    left: 0;

    bottom: -1px;

    width: 100%;

    z-index: 5;

    line-height: 0;

}


.work-hero-wave svg {

    display: block;

    width: 100%;

    height: 100px;

}


.work-hero-wave path {

    fill: var(--cream);

}



/* ==========================================
   PROJECT SECTION
========================================== */

.work-projects {

    background: var(--cream);

    padding: 1rem 0 7rem;

}


/* ==========================================
   FILTERS
========================================== */

.work-filters {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 3.2rem;

    margin-bottom: 3rem;

}


.work-filter {

    position: relative;

    padding: .5rem 0;

    color: var(--forest);

    font-family: var(--body);

    font-size: .9rem;

    font-weight: 600;

    cursor: pointer;

    transition: color .25s ease;

}


.work-filter::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--terracotta);

    transition: width .25s ease;

}


.work-filter:hover {

    color: var(--terracotta);

}


.work-filter.active {

    color: var(--terracotta);

}


.work-filter.active::after {

    width: 100%;

}



/* ==========================================
   PROJECT GRID
========================================== */

.work-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 2.5rem;

}


/* ==========================================
   PROJECT CARD
========================================== */

.work-card {

    background: #fff;

    border: 1px solid rgba(55,69,54,.10);

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.work-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(0,0,0,.10);

}


/* ---------- PROJECT IMAGE ---------- */

.work-card-image {

    display: block;

    overflow: hidden;

    aspect-ratio: 1.55 / 1;

    background: var(--sand);

}


.work-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;

}


.work-card:hover
.work-card-image img {

    transform: scale(1.04);

}


/* ---------- PROJECT CONTENT ---------- */

.work-card-content {

    padding: 2rem 2.1rem 2.2rem;

}


.work-category {

    display: block;

    color: var(--terracotta);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    margin-bottom: .65rem;

}


.work-card h2 {

    color: var(--forest);

    font-size: clamp(1.8rem, 3vw, 2.35rem);

    line-height: 1.05;

    margin-bottom: .85rem;

    transition: color .25s ease;

}


.work-card:hover h2 {

    color: var(--terracotta);

}


.work-card p {

    max-width: 540px;

    margin: 0;

    font-size: .88rem;

    line-height: 1.7;

    color: #343934;

}


/* ---------- PROJECT LINK ---------- */

.work-project-link {

    display: inline-flex;

    align-items: center;

    gap: 1.4rem;

    margin-top: 1.5rem;

    padding-bottom: .35rem;

    border-bottom: 1px solid var(--forest);

    color: var(--forest);

    font-size: .85rem;

    font-weight: 700;

    transition:
        color .25s ease,
        border-color .25s ease;

}


.work-project-link span {

    font-size: 1.2rem;

    line-height: 1;

    transition: transform .25s ease;

}


.work-project-link:hover {

    color: var(--terracotta);

    border-color: var(--terracotta);

}


.work-project-link:hover span {

    transform: translateX(4px);

}


/* ==========================================
   FILTER ANIMATION
========================================== */

.work-card.hidden {

    display: none;

}



/* ==========================================
   CTA
========================================== */

.work-cta {

    position: relative;

    background: var(--forest);

    color: white;

    padding: 4.5rem 0;

    overflow: hidden;

}


/* Organic top edge */

.work-cta::before {

    content: "";

    position: absolute;

    left: -5%;

    top: -35px;

    width: 110%;

    height: 75px;

    background: var(--cream);

    border-radius: 50% 50% 0 0 / 100% 100% 0 0;

}


.work-cta-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.3fr
        1fr
        auto;

    align-items: center;

    gap: 4rem;

}


.work-cta-heading h2 {

    color: white;

    font-size: clamp(2.4rem, 4vw, 3.4rem);

    line-height: 1;

    margin-top: .25rem;

}


.work-cta-heading .about-label {

    margin-bottom: .35rem;

}


.work-cta-squiggle {

    display: block;

    width: 55px;

    height: auto;

    margin-top: 1.2rem;

}


.work-cta-copy p {

    color: rgba(255,255,255,.82);

    max-width: 310px;

    margin: 0;

    font-size: .9rem;

    line-height: 1.7;

}


.work-cta .button-white {

    white-space: nowrap;

    padding: 15px 25px;

}


.work-cta .button-white span {

    color: var(--terracotta);

    font-size: 1.2rem;

}



/* ==========================================
   ACTIVE NAV
========================================== */

.site-header
.nav-links
a[aria-current="page"] {

    color: var(--terracotta);

}


.site-header
.nav-links
a[aria-current="page"]::after {

    width: 100%;

}



/* ==========================================
   RESPONSIVE
========================================== */


/* ---------- LARGE TABLET ---------- */

@media (max-width: 1200px) {

    .work-hero-content {

        width: 58%;

    }

    .work-grid {

        gap: 2rem;

    }

    .work-cta-inner {

        gap: 2.5rem;

    }

}



/* ---------- TABLET ---------- */

@media (max-width: 992px) {

    .work-hero {

        min-height: 500px;

    }


    .work-hero-image {

        background-image:
            linear-gradient(
                90deg,
                var(--cream) 0%,
                rgba(247,242,236,.92) 34%,
                rgba(247,242,236,.38) 67%,
                rgba(247,242,236,0) 90%
            ),
            url("../assets/images/work-hero.jpg");

    }


    .work-hero-content {

        width: 65%;

    }


    .work-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .work-cta-inner {

        grid-template-columns: 1fr 1fr;

    }


    .work-cta .button {

        grid-column: 1 / -1;

        justify-self: start;

    }

}



/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .work-hero {

        min-height: 620px;

        align-items: flex-start;

    }


    .work-hero-image {

        background-image:
            linear-gradient(
                180deg,
                rgba(247,242,236,.95) 0%,
                rgba(247,242,236,.86) 32%,
                rgba(247,242,236,.35) 62%,
                rgba(247,242,236,.05) 80%
            ),
            url("../assets/images/work-banner.png");

        background-position: center;

    }


    .work-hero-content {

        width: 100%;

        padding-top: 4rem;

    }


    .work-hero h1 {

        font-size:
            clamp(2.8rem, 12vw, 4rem);

    }


    .work-hero p {

        max-width: 340px;

    }


    .work-hero-wave svg {

        height: 70px;

    }


    /* PROJECTS */

    .work-projects {

        padding-top: 1rem;

        padding-bottom: 4.5rem;

    }


    .work-filters {

        gap: 1.5rem;

        flex-wrap: wrap;

        margin-bottom: 2.5rem;

    }


    .work-filter {

        font-size: .8rem;

    }


    .work-grid {

        grid-template-columns: 1fr;

        gap: 2rem;

    }


    .work-card-content {

        padding: 1.6rem;

    }


    /* CTA */

    .work-cta {

        padding: 4.5rem 0;

    }


    .work-cta-inner {

        grid-template-columns: 1fr;

        gap: 1.5rem;

        text-align: center;

    }


    .work-cta-heading h2 {

        font-size: 2.6rem;

    }


    .work-cta-squiggle {

        margin-inline: auto;

    }


    .work-cta-copy p {

        margin-inline: auto;

    }


    .work-cta .button {

        grid-column: auto;

        justify-self: center;

    }

}



/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {

    .work-hero {

        min-height: 570px;

    }


    .work-hero-content {

        padding-top: 3rem;

    }


    .work-hero h1 {

        font-size: 2.7rem;

    }


    .work-filters {

        gap: 1rem 1.4rem;

    }


    .work-card-image {

        aspect-ratio: 1.3 / 1;

    }


    .work-card-content {

        padding: 1.5rem;

    }


    .work-card h2 {

        font-size: 2rem;

    }


    .work-cta h2 {

        font-size: 2.25rem;

    }

}









/* =========================================================
   TORTOISE & TIDE
   PACKAGES PAGE
   Uses the existing global style.css for shared components.
========================================================= */

.packages-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}

.packages-hero-image {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            rgba(247,242,236,.96) 25%,
            rgba(247,242,236,.58) 45%,
            rgba(247,242,236,.05) 68%
        ),
        url("../assets/images/packages-banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.packages-hero-content {
    position: relative;
    z-index: 2;
    width: 54%;
    padding: 4rem 0 6rem;
}

.packages-hero h1 {
    margin: .35rem 0 1rem;
    color: var(--forest);
}

.packages-squiggle,
.technical-squiggle {
    display: block;
    width: 48px;
    margin: .5rem 0 1rem;
    opacity: .7;
}

.packages-hero p {
    max-width: 390px;
    margin: 0;
    font-size: .9rem;
    line-height: 1.75;
}

.packages-hero-wave {
    position: absolute;
    z-index: 3;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
}

.packages-hero-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.packages-hero-wave path {
    fill: var(--cream);
}


/* =========================================================
   STARTER PACKAGES
========================================================= */

.starter-packages {
    padding: 5rem 0 6rem;
    background: var(--cream);
}

.starter-intro {
    display: grid;
    grid-template-columns: 1fr 330px;
    align-items: end;
    gap: 4rem;
    margin-bottom: 2.75rem;
}

.starter-intro h2 {
    margin: .25rem 0 0;
    color: var(--forest);
}

.starter-intro > p {
    margin: 0 0 .35rem;
    font-size: .85rem;
    line-height: 1.75;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.package-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(55,69,54,.045);
}

.package-image {
    aspect-ratio: 1.28 / 1;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}


.package-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.35rem 1.35rem 1.25rem;
}

.package-number {
    margin-bottom: .35rem;
    color: var(--terracotta);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
}

.package-content h3 {
    margin: 0;
    color: var(--forest);
    font-size: 1.65rem;
}

.package-audience {
    display: block;
    margin-top: .35rem;
    color: #77766f;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.package-description {
    min-height: 48px;
    margin: .8rem 0 .8rem;
    font-size: .78rem;
    line-height: 1.65;
}

.package-list {
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
}

.package-list li {
    position: relative;
    margin: .45rem 0;
    padding-left: 1.45rem;
    font-size: .72rem;
    line-height: 1.4;
}

.package-list li::before {
    content: "✓";
    position: absolute;
    top: -.05rem;
    left: 0;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(55,69,54,.65);
    border-radius: 50%;
    color: var(--forest);
    font-size: .55rem;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
}

.package-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    margin-top: auto;
    padding: .72rem 1rem;
    border: 1px solid var(--forest);
    border-radius: 999px;
    color: var(--forest);
    font-size: .68rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.package-button span {
    font-size: 1rem;
    line-height: 1;
}

.package-button:hover {
    background: var(--forest);
    color: #fff;
}


/* =========================================================
   SIX MONTH TECHNICAL OFFER
========================================================= */

.technical-offer {
    padding: 0 0 5.5rem;
    background: var(--cream);
}

.technical-offer-inner {
    display: grid;
    grid-template-columns: .95fr 2fr;
    overflow: hidden;
    border-radius: 15px;
    background: #e8e8df;
}

.technical-offer-intro {
    padding: 2.5rem 2rem 2.5rem 2.75rem;
}

.technical-offer-intro h2 {
    margin: .3rem 0 0;
    color: var(--forest);
}

.technical-offer-intro p {
    max-width: 300px;
    margin: .25rem 0 0;
    font-size: .75rem;
    line-height: 1.7;
}

.technical-offer-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
}

.offer-service {
    padding: 2.5rem 1.65rem;
    border-left: 1px solid rgba(55,69,54,.14);
}

.offer-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 1.1rem;
}

.offer-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--forest);
    stroke-width: 1.25;
}

.offer-service > span {
    display: block;
    margin-bottom: .5rem;
    color: var(--terracotta);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.offer-service h3 {
    margin: 0;
    color: var(--forest);
    font-size: 1.7rem;
    line-height: 1.08;
}

.offer-service p {
    max-width: 190px;
    margin: .8rem 0 0;
    font-size: .9rem;
    line-height: 1.65;
}


/* =========================================================
   CTA
========================================================= */

.packages-cta {
    position: relative;
    overflow: hidden;
    padding: 4.25rem 0;
    background:
        linear-gradient(rgba(238,228,214,.82), rgba(238,228,214,.82)),
        url("../assets/images/CTA Section bg.jpg") center bottom / cover no-repeat;
}

.packages-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.packages-cta h2 {
    margin: .2rem 0 0;
    color: var(--forest);
}

.button-dark {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    background: var(--forest);
    color: #fff;
}

.button-dark:hover {
    background: var(--terracotta);
}

.button-dark span {
    font-size: 1rem;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .packages-hero-content {
        width: 58%;
    }

    .starter-intro {
        gap: 2.5rem;
    }

    .technical-offer-inner {
        grid-template-columns: .8fr 2fr;
    }
}

@media (max-width: 992px) {
    .packages-hero {
        min-height: 500px;
    }

    .packages-hero-content {
        width: 65%;
    }

    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .package-card {
        display: grid;
        grid-template-columns: 38% 62%;
    }

    .package-image {
        height: 100%;
        min-height: 330px;
        aspect-ratio: auto;
    }

    .package-content {
        padding: 1.5rem;
    }

    .technical-offer-inner {
        grid-template-columns: 1fr;
    }

    .technical-offer-intro {
        text-align: center;
    }

    .technical-offer-intro p,
    .technical-squiggle {
        margin-left: auto;
        margin-right: auto;
    }

    .offer-service {
        padding: 2rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .packages-hero {
        min-height: 610px;
        align-items: flex-start;
    }

    .packages-hero-image {
        background-image:
            linear-gradient(
                180deg,
                rgba(247,242,236,.94) 0%,
                rgba(247,242,236,.78) 38%,
                rgba(247,242,236,.15) 72%
            ),
            url("../assets/images/Cliffs.jpg");
        background-position: center;
    }

    .packages-hero-content {
        width: 100%;
        padding-top: 3.25rem;
    }

    .packages-hero h1 {
        font-size: 3.1rem;
    }

    .starter-packages {
        padding-top: 4rem;
    }

    .starter-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .starter-intro h2 {
        font-size: 2.65rem;
    }

    .package-card {
        grid-template-columns: 1fr;
    }

    .package-image {
        min-height: 260px;
        aspect-ratio: 1.45 / 1;
    }

    .package-content {
        padding: 1.5rem;
    }

    .technical-offer-services {
        grid-template-columns: 1fr;
    }

    .offer-service {
        border-left: 0;
        border-top: 1px solid rgba(55,69,54,.14);
        text-align: center;
    }

    .offer-service:first-child {
        border-top: 0;
    }

    .offer-icon,
    .offer-service p {
        margin-left: auto;
        margin-right: auto;
    }

    .packages-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .packages-hero {
        min-height: 570px;
    }

    .packages-hero h1 {
        font-size: 2.7rem;
    }

    .packages-hero p {
        max-width: 320px;
    }

    .starter-intro h2 {
        font-size: 2.25rem;
    }

    .package-image {
        min-height: 220px;
    }

    .technical-offer-intro h2,
    .packages-cta h2 {
        font-size: 2.25rem;
    }

    .packages-cta {
        padding: 3.75rem 0;
    }
}



:root {
    --cream: #f6f1ea;
    --cream-field: #efe8de;
    --ink-green: #223b30;
    --terracotta: #c96a3e;
    --terracotta-dark: #b25a30;
    --text-body: #4a4a45;
    --border: #ddd3c4;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    background: var(--cream);
    font-family: 'Poppins', sans-serif;
    color: var(--text-body);
  }

  .page {
    max-width: 620px;
    margin: 0 auto;
    padding: 64px 24px 80px;
    text-align: center;
  }


  .sub {
    font-size: 16.5px;
    line-height: 1.6;
    padding: 5%;
    margin: 0 auto 4%;
    max-width: 460px;
  }

  .contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 44px;
    flex-wrap: wrap;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e9e0d2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ink-green);
  }

  .contact-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--ink-green);
    margin: 0 0 2px;
  }

  .contact-value {
    font-size: 14.5px;
    margin: 0;
    color: var(--text-body);
  }

  .contact-divider {
    width: 1px;
    height: 40px;
    background: #b9b2a7;
  }

  form {
    text-align: left;
  }

  .row {
    display: flex;
    gap: 16px;
  }

  .field {
    flex: 1;
    margin-bottom: 16px;
  }

  input, select, textarea {
    width: 100%;
    padding: 16px 18px;
    background: var(--cream-field);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--ink-green);
    outline: none;
    transition: border-color 0.2s;
  }

  input::placeholder, textarea::placeholder {
    color: #8a8478;
  }

  input:focus, select:focus, textarea:focus {
    border-color: var(--terracotta);
  }

  select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23223b30' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    cursor: pointer;
  }

  textarea {
    resize: vertical;
    min-height: 130px;
    font-family: 'Poppins', sans-serif;
  }

  button.submit {
    width: 100%;
    padding: 18px 24px;
    background: var(--terracotta);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 26px;
    padding-right: 26px;
    transition: background 0.2s, transform 0.1s;
  }

  button.submit:hover {
    background: var(--terracotta-dark);
  }

  button.submit:active {
    transform: scale(0.99);
  }

  button.submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .prefer-email {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
    font-size: 14px;
    color: var(--ink-green);
  }

  .prefer-email strong { color: var(--ink-green); }

  .error-msg {
    color: var(--terracotta-dark);
    font-size: 13.5px;
    margin: -8px 0 14px;
    display: none;
  }

  /* Success modal */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(34, 59, 48, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
  }

  .overlay.show {
    display: flex;
  }

  .modal {
    background: var(--cream);
    border-radius: 16px;
    max-width: 380px;
    width: 100%;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: pop 0.25s ease;
  }

  @keyframes pop {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--terracotta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .modal h2 {
    font-family: 'Playfair Display', serif;
    color: var(--ink-green);
    font-size: 24px;
    margin: 0 0 10px;
  }

  .modal p {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 24px;
  }

  .modal button {
    background: var(--ink-green);
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }

  @media (max-width: 520px) {
    h1 { font-size: 38px; }
    .row { flex-direction: column; gap: 0; }
    .contact-row { gap: 18px; }
    .divider { display: none; }
  }




































/* =========================================================
   PROJECT PAGES
   WITSON & CO.
========================================================= */


/* =========================================================
   PROJECT HERO
========================================================= */

.wc-hero{

    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--cream);

}

.wc-hero-image {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            var(--cream) 0%,
            rgba(247,242,236,.96) 25%,
            rgba(247,242,236,.60) 43%,
            rgba(247,242,236,.05) 65%
        ),
        url("../assets/images/witson-co-banner2.jpg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.wc-hero-content {

    position: relative;

    z-index: 3;

    width: 50%;

    padding: 5rem 0 7rem;

}

.services-hero h1 {

    color: var(--sage);

    font-size: clamp(3rem, 5vw, 4.5rem);

    line-height: 1;

    letter-spacing: -0.025em;

    margin-bottom: 1rem;

}


.wc-squiggle {

    display: block;

    width: 10%;

    height: auto;

    margin: 1.5rem 0 1.75rem;

}


.wc-hero p {

    font-size: 1rem;

    line-height: 1.75;

    max-width: 380px;

}




.project-hero {
    background: var(--cream);
    padding: 4rem 0 5rem;
}

.project-hero-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: stretch;
    min-height: 590px;
}


/* ---------- HERO CONTENT ---------- */

.project-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 0;
}

.project-label {
    display: block;
    color: var(--terracotta);
    font-family: var(--body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.7px;
    line-height: 1.4;
    text-transform: uppercase;
}

.project-hero h1 {
    color: var(--forest);
    font-family: var(--display);
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.035em;
    margin: 0.8rem 0 1.5rem;
}

.project-hero h2 {
    max-width: 390px;
    color: var(--forest);
    font-family: var(--display);
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 500;
    line-height: 1.18;
    margin: 0;
}

.project-squiggle {
    width: 110px;
    height: auto;
    margin: 1.6rem 0 1.7rem;
}

.project-hero p {
    max-width: 430px;
    color: var(--text);
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
    margin: 0 0 1.7rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    width: fit-content;
    color: var(--forest);
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 0.35rem;
    padding-top: 2rem;
    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.text-link span {
    font-size: 1rem;
}

.text-link:hover {
    color: var(--terracotta);
    border-color: var(--terracotta);
}


/* ---------- HERO IMAGE ---------- */

.project-hero-image {
    min-height: 590px;
    overflow: hidden;
    border-radius: 100px 0 0 100px;
}

.project-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* =========================================================
   PROJECT INTRO
========================================================= */

.project-intro {
    background: white;
    padding: 5.5rem 0;
}

.project-intro-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
}

.project-copy-block p {
    max-width: 520px;
    margin-top: 1.3rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(55, 69, 54, 0.25);
}

.project-detail span {
    display: block;
    color: var(--terracotta);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.project-detail p {
    color: var(--forest);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}



/* =========================================================
   PROJECT SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 650px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    margin-top: 0.8rem;
}



/* =========================================================
   WITSON & CO.
   THE IDENTITY
========================================================= */


/* =========================================================
   IDENTITY SECTION
========================================================= */

.identity-section {
    background: var(--cream);
    padding: 7rem 0 5rem;
    border-radius: 1rem;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.identity-heading {
    max-width: 850px;
    margin: 0 auto 4.5rem;
    text-align: center;
}


.identity-heading .project-label {
    display: block;
    margin-bottom: 1.2rem;
}


.identity-heading h2 {
    color: var(--sage);
    font-family: 'Playfair Display';
    font-size: 4rem;
    font-weight: 500;
    line-height: 0.98;
    margin: 0;
}



/* =========================================================
   IDENTITY STORY
========================================================= */

.identity-story {
    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    gap: 4rem;

    align-items: center;

    padding-bottom: 4rem;
}


/* =========================================================
   STORY IMAGE
========================================================= */

.identity-story-image {
    overflow: hidden;

    aspect-ratio: 1.45 / 1;

    border-radius: 14px;
}


.identity-story-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}



/* =========================================================
   STORY COPY
========================================================= */

.identity-story-copy {
    max-width: 500px;

    padding-right: 1rem;
}


.identity-story-copy p {
    color: var(--text);

    font-family: var(--body);

    font-size: 0.95rem;

    font-weight: 400;

    line-height: 1.85;

    margin: 0 0 1.7rem;
}


.identity-story-copy p:last-of-type {
    margin-bottom: 2rem;
}


/* =========================================================
   STORY SQUIGGLE
========================================================= */

.identity-story-squiggle {
    display: block;

    width: 75px;
    height: auto;

    opacity: 0.75;
}



/* =========================================================
   IDENTITY DETAILS
========================================================= */

.identity-details {
    display: grid;

    grid-template-columns:
        0.8fr
        1.35fr
        1fr;

    border-top:
        1px solid rgba(55, 69, 54, 0.2);

    border-bottom:
        1px solid rgba(55, 69, 54, 0.2);
}


.identity-detail {
    min-height: 260px;

    padding: 2.7rem 3rem;
}


.identity-detail + .identity-detail {
    border-left:
        1px solid rgba(55, 69, 54, 0.2);
}



/* =========================================================
   DETAIL LABEL
========================================================= */

.identity-detail-label {
    display: block;

    color: var(--terracotta);

    font-family: var(--body);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 1.8px;

    line-height: 1.4;

    text-transform: uppercase;

    margin-bottom: 2rem;
}



/* =========================================================
   THE MARK
========================================================= */

.identity-mark-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.identity-spoon {
    width: 36px;

    margin-bottom: 1rem;
}


.identity-spoon svg {
    display: block;

    width: 100%;
    height: auto;

    fill: none;

    stroke: var(--forest);

    stroke-width: 2;

    stroke-linecap: round;
}


.identity-wordmark {
    display: flex;

    flex-direction: column;

    color: var(--forest);

    font-family: var(--display);

    font-size: 1.75rem;

    line-height: 0.9;

    letter-spacing: 0.08em;
}


.identity-mark-content small {
    color: var(--forest);

    font-family: var(--body);

    font-size: 0.48rem;

    font-weight: 600;

    letter-spacing: 2.8px;

    margin-top: 0.9rem;
}



/* =========================================================
   COLOUR PALETTE
========================================================= */

.palette-list {
    display: flex;

    align-items: flex-start;

    gap: 0.85rem;
}


.palette-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.65rem;

    min-width: 64px;
}


.palette-swatch {
    display: block;

    width: 64px;
    height: 82px;

    border-radius: 3px;
}


.palette-item small {
    color: var(--forest);

    font-family: var(--body);

    font-size: 0.55rem;

    font-weight: 500;

    letter-spacing: 1px;

    text-transform: uppercase;
}



/* =========================================================
   TYPOGRAPHY
========================================================= */

.typography-list {
    display: flex;

    flex-direction: column;

    gap: 1.5rem;
}


.typography-item {
    display: grid;

    grid-template-columns: 100px 1fr;

    align-items: center;

    gap: 1rem;
}


.typography-example {
    display: block;

    color: var(--forest);

    line-height: 0.8;
}


.typography-serif {
    font-family: var(--display);

    font-size: 4.2rem;
}


.typography-sans {
    font-family: var(--body);

    font-size: 3.3rem;

    font-weight: 300;
}


.typography-item div {
    display: flex;

    flex-direction: column;

    gap: 0.3rem;
}


.typography-item strong {
    color: var(--forest);

    font-family: var(--body);

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.4px;

    text-transform: uppercase;
}


.typography-item small {
    color: #777;

    font-family: var(--body);

    font-size: 0.58rem;

    line-height: 1.4;
}



/* =========================================================
   BRAND STATEMENT
========================================================= */

.identity-statement {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.8rem;

    padding-top: 2.5rem;

    color: var(--forest);

    font-family: var(--body);

    font-size: 0.75rem;

    font-weight: 600;

    letter-spacing: 3px;

    text-align: center;

    text-transform: uppercase;
}


.identity-statement-icon {
    color: var(--terracotta);

    font-size: 1rem;

    line-height: 1;
}



/* =========================================================
   APPLICATIONS
========================================================= */

.applications-section {
    background: white;
    padding: 6rem 0;
}

.applications-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 1rem;
}

.application-image {
    overflow: hidden;
    border-radius: 12px;
}

.application-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.application-large {
    grid-row: 1 / 3;
}



/* =========================================================
   FEATURE IMAGE
========================================================= */

.project-feature-image {
    background: white;
    padding: 0 0 6rem;
}

.project-feature-image img {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
    border-radius: 18px;
}



/* =========================================================
   RESULT
========================================================= */

.project-result {
    background: var(--cream);
    padding: 6rem 6rem;
    margin-bottom: 4rem;
    border-radius: 1rem;
}

.project-result-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.project-result h2 {
    max-width: 500px;
    color: var(--forest);
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1;
    margin-top: 0.8rem;
}

.project-result p {
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}



/* =========================================================
   NEXT PROJECT
========================================================= */

.next-project {
    background: var(--forest);
    color: white;
    padding: 4rem 0;
    border-radius: 1rem;
}

.next-project-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.next-project .project-label {
    color: var(--terracotta);
}

.next-project h2 {
    color: white;
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1;
    margin: 0.5rem 0;
}

.next-project-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.next-project-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.next-project-link:hover .next-project-arrow {
    background: white;
    color: var(--forest);
    transform: translateX(5px);
}



/* =========================================================
   WITSON & CO.
   RESPONSIVE OVERRIDES
========================================================= */


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .wc-hero {
        min-height: 500px;
    }

    .wc-hero-content {
        width: 55%;
        padding: 4rem 0 6rem;
    }

    .identity-section {
        padding: 6rem 0 4rem;
    }

    .identity-story {
        gap: 3rem;
    }

    .identity-detail {
        padding: 2.5rem 2rem;
    }

    .palette-list {
        gap: .55rem;
    }

    .palette-item {
        min-width: 54px;
    }

    .palette-swatch {
        width: 54px;
        height: 72px;
    }

    .applications-grid {
        grid-template-rows: 250px 250px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    /* ---------- HERO ---------- */

    .wc-hero {
        min-height: 500px;
        align-items: center;
    }

    .wc-hero-image {
        background-image:
            linear-gradient(
                90deg,
                var(--cream) 0%,
                rgba(247,242,236,.94) 32%,
                rgba(247,242,236,.50) 58%,
                rgba(247,242,236,.08) 80%
            ),
            url("../assets/images/witson-co-banner2.jpg");

        background-position: center;
        background-size: cover;
    }

    .wc-hero-content {
        width: 60%;
        padding: 4rem 0 5rem;
    }

    .wc-hero h1 {
        font-size: clamp(3rem, 7vw, 4.5rem);
    }

    .wc-hero p {
        max-width: 360px;
        font-size: .9rem;
    }


    /* ---------- BRIEF ---------- */

    .project-intro {
        padding: 4.5rem 0;
    }

    .project-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-copy-block {
        max-width: 650px;
    }

    .project-details {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }


    /* ---------- IDENTITY ---------- */

    .identity-section {
        padding: 5rem 0 4rem;
    }

    .identity-heading {
        margin-bottom: 3.5rem;
    }

    .identity-heading h2 {
        font-size: clamp(2.8rem, 6vw, 4rem);
    }

    .identity-story {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .identity-story-copy {
        padding-right: 0;
    }

    .identity-story-copy p {
        font-size: .85rem;
        line-height: 1.75;
    }


    /* ---------- IDENTITY DETAILS ---------- */

    .identity-details {
        grid-template-columns: 1fr 1fr;
    }

    .identity-detail {
        min-height: 240px;
        padding: 2.2rem;
    }

    .identity-detail:nth-child(3) {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px solid rgba(55,69,54,.2);
    }

    .palette-list {
        justify-content: center;
        flex-wrap: wrap;
    }


    /* ---------- APPLICATIONS ---------- */

    .applications-section {
        padding: 5rem 0;
    }

    .applications-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 260px 260px;
        gap: .8rem;
    }

    .application-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }


    /* ---------- RESULT ---------- */

    .project-result {
        padding: 5rem 0;
        margin-bottom: 3rem;
        border-radius: .8rem;
    }

    .project-result-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .project-result h2 {
        font-size: clamp(2.7rem, 5vw, 4rem);
    }


    /* ---------- NEXT PROJECT ---------- */

    .next-project {
        padding: 3.5rem 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    /* ---------- GENERAL ---------- */

    .container {
        width: min(90%, 600px);
    }


    /* ---------- HEADER ---------- */

    .navbar {
        height: 76px;
    }

    .logo img {
        width: 20rem;
    }

    .site-header .button-orange {
        display: none;
    }

    .mobile-menu {
        display: block;
        flex-shrink: 0;
    }


    /* ---------- HERO ---------- */

    .wc-hero {
        min-height: 600px;
        align-items: flex-start;
    }

    .wc-hero-image {
        background-image:
            linear-gradient(
                180deg,
                rgba(247,242,236,.97) 0%,
                rgba(247,242,236,.91) 28%,
                rgba(247,242,236,.55) 55%,
                rgba(247,242,236,.10) 78%
            ),
            url("../assets/images/witson-co-banner2.jpg");

        background-position: center;
        background-size: cover;
    }

    .wc-hero-content {
        width: 100%;
        padding: 4rem 0 5rem;
    }

    .wc-hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .wc-hero p {
        max-width: 340px;
        font-size: .82rem;
        line-height: 1.75;
    }

    .wc-hero .services-squiggle {
        width: 45px;
        margin: 1.2rem 0 1.5rem;
    }

    .wc-hero .text-link {
        padding-top: 1rem;
    }


    /* ---------- BRIEF ---------- */

    .project-intro {
        padding: 4rem 0;
    }

    .project-intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .project-copy-block p {
        font-size: .82rem;
        line-height: 1.8;
    }

    .project-details {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        padding-top: 1.8rem;
    }

    .project-detail span {
        font-size: .65rem;
    }

    .project-detail p {
        font-size: .78rem;
        line-height: 1.65;
    }


    /* ---------- IDENTITY ---------- */

    .identity-section {
        padding: 4.5rem 0 3.5rem;
        border-radius: 0;
    }

    .identity-heading {
        margin-bottom: 3rem;
    }

    .identity-heading .project-label {
        margin-bottom: .8rem;
    }

    .identity-heading h2 {
        font-size: clamp(2.4rem, 10vw, 3.3rem);
        line-height: 1;
    }


    /* ---------- IDENTITY STORY ---------- */

    .identity-story {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 3rem;
    }

    .identity-story-image {
        aspect-ratio: 1.25 / 1;
        border-radius: 12px;
    }

    .identity-story-copy {
        max-width: 600px;
    }

    .identity-story-copy p {
        font-size: .8rem;
        line-height: 1.8;
        margin-bottom: 1.4rem;
    }

    .identity-story-squiggle {
        width: 55px;
    }


    /* ---------- IDENTITY DETAILS ---------- */

    .identity-details {
        grid-template-columns: 1fr;
    }

    .identity-detail {
        min-height: auto;
        padding: 2.5rem 1.5rem;
    }

    .identity-detail + .identity-detail {
        border-left: none;
        border-top: 1px solid rgba(55,69,54,.2);
    }

    .identity-detail:nth-child(3) {
        grid-column: auto;
    }

    .identity-detail-label {
        margin-bottom: 1.5rem;
    }


    /* ---------- MARK ---------- */

    .identity-mark-content {
        padding: .5rem 0;
    }

    .identity-wordmark {
        font-size: 1.65rem;
    }


    /* ---------- COLOUR PALETTE ---------- */

    .palette-list {
        justify-content: center;
        gap: .7rem;
    }

    .palette-item {
        min-width: 52px;
    }

    .palette-swatch {
        width: 52px;
        height: 68px;
    }

    .palette-item small {
        font-size: .48rem;
        letter-spacing: .7px;
    }


    /* ---------- TYPOGRAPHY ---------- */

    .typography-list {
        gap: 1.3rem;
    }

    .typography-item {
        grid-template-columns: 75px 1fr;
        gap: 1rem;
    }

    .typography-serif {
        font-size: 3.4rem;
    }

    .typography-sans {
        font-size: 2.7rem;
    }

    .typography-item strong {
        font-size: .65rem;
    }

    .typography-item small {
        font-size: .55rem;
    }


    /* ---------- APPLICATIONS ---------- */

    .applications-section {
        padding: 4.5rem 0;
    }

    .section-heading {
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .section-heading h2 {
        font-size: clamp(2.3rem, 9vw, 3rem);
    }

    .applications-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: .8rem;
    }

    .application-large {
        grid-column: auto;
        grid-row: auto;
    }

    .application-image {
        aspect-ratio: 1.25 / 1;
        height: auto;
        border-radius: 10px;
    }


    /* ---------- RESULT ---------- */

    .project-result {
        padding: 4rem 0;
        margin-bottom: 2rem;
        border-radius: 0;
    }

    .project-result-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .project-result h2 {
        font-size: clamp(2.5rem, 10vw, 3.3rem);
    }

    .project-result p {
        font-size: .8rem;
        line-height: 1.8;
    }


    /* ---------- NEXT PROJECT ---------- */

    .next-project {
        padding: 3.5rem 0;
        border-radius: 0;
    }

    .next-project-link {
        align-items: center;
    }

    .next-project h2 {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
    }

    .next-project-arrow {
        width: 55px;
        height: 55px;
        flex-shrink: 0;
        font-size: 1.4rem;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 90%;
    }


    /* HEADER */

    .navbar {
        height: 70px;
    }

    .logo img {
        width: 17rem;
    }


    /* HERO */

    .wc-hero {
        min-height: 560px;
    }

    .wc-hero-content {
        padding-top: 3.2rem;
    }

    .wc-hero h1 {
        font-size: 2.7rem;
    }

    .wc-hero p {
        max-width: 300px;
    }


    /* BRIEF */

    .project-intro {
        padding: 3.5rem 0;
    }

    .project-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    /* IDENTITY */

    .identity-section {
        padding-top: 4rem;
    }

    .identity-heading h2 {
        font-size: 2.45rem;
    }

    .identity-story-image {
        aspect-ratio: 1.15 / 1;
    }


    /* PALETTE */

    .palette-list {
        gap: .5rem;
    }

    .palette-item {
        min-width: 48px;
    }

    .palette-swatch {
        width: 48px;
        height: 62px;
    }


    /* TYPOGRAPHY */

    .typography-item {
        grid-template-columns: 65px 1fr;
    }

    .typography-serif {
        font-size: 3rem;
    }

    .typography-sans {
        font-size: 2.4rem;
    }


    /* APPLICATIONS */

    .application-image {
        aspect-ratio: 1.1 / 1;
    }


    /* RESULT */

    .project-result {
        padding: 3.5rem 0;
    }

    .project-result h2 {
        font-size: 2.5rem;
    }


    /* NEXT PROJECT */

    .next-project {
        padding: 3rem 0;
    }

    .next-project h2 {
        font-size: 2.4rem;
    }

    .next-project-arrow {
        width: 48px;
        height: 48px;
    }

}



/* =========================================================
   BLUE & BLOOM
   PROJECT-SPECIFIC STYLING
   Uses the common Witson project layout
========================================================= */


/* =========================================================
   BLUE & BLOOM COLOURS
========================================================= */

:root {

    --bb-navy: #173B60;
    --bb-blue: #6685A6;
    --bb-light-blue: #B9C9D7;

    --bb-text: #344A60;

    --bb-ivory: #F4F0E9;

    --bb-border: rgba(23, 59, 96, 0.18);

}



/* =========================================================
   HERO
========================================================= */

.bb-hero {

    background: var(--bb-ivory);

}


.bb-hero-image {

    background-image:

        linear-gradient(
            90deg,
            rgba(244, 240, 233, 1) 0%,
            rgba(244, 240, 233, .97) 24%,
            rgba(244, 240, 233, .72) 45%,
            rgba(244, 240, 233, .12) 70%,
            rgba(244, 240, 233, 0) 100%
        ),

        url("../assets/images/bb-banner.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}

/* =========================================================
   IDENTITY SECTION
========================================================= */

.bb-identity-section {
    background: var(--cream);
    padding: 7rem 0 5rem;
    border-radius: 1rem;
}


/* =========================================================
   BLUE & BLOOM TEXT
========================================================= */

.bb-heading {

    color: var(--bb-navy) !important;

}


.bb-body {

    color: var(--bb-text) !important;

}


.bb-blue-label {

    color: var(--bb-blue) !important;

}



/* =========================================================
   HERO TEXT
========================================================= */

.bb-hero .about-label {

    color: var(--bb-blue) !important;

}


.bb-hero h1 {

    color: var(--bb-navy) !important;

}


.bb-hero p {

    color: var(--bb-text) !important;

}


.bb-hero .text-link {

    color: var(--bb-navy) !important;

    border-color: var(--bb-navy) !important;

}


.bb-hero .text-link:hover {

    color: var(--bb-blue) !important;

    border-color: var(--bb-blue) !important;

}



/* =========================================================
   SQUIGGLE
========================================================= */

.bb-squiggle {

    filter:
        sepia(25%)
        saturate(40%)
        hue-rotate(170deg);

}



/* =========================================================
   IDENTITY
========================================================= */

.bb-identity {

    background: var(--bb-ivory);

}


.bb-identity .identity-heading h2 {

    color: var(--bb-navy);

}


.bb-identity .identity-story-copy p {

    color: var(--bb-text);

}


.bb-identity .identity-detail-label {

    color: var(--bb-blue);

}


.bb-identity .identity-details {

    border-color: var(--bb-border);

}


.bb-identity .identity-wordmark {

    color: var(--bb-navy);

}


.bb-identity .identity-mark-content small {

    color: var(--bb-blue);

}


.bb-identity .typography-example {

    color: var(--bb-navy);

}


.bb-identity .typography-item strong {

    color: var(--bb-navy);

}


.bb-identity .typography-item small {

    color: var(--bb-text);

}



/* =========================================================
   FLOWER MARK
========================================================= */

.bb-flower-mark svg {

    stroke: var(--bb-navy);

}



/* =========================================================
   APPLICATIONS
========================================================= */

.bb-applications {

    background: #fff;

}


.bb-applications .project-label {

    color: var(--bb-blue);

}


.bb-applications .section-heading h2 {

    color: var(--bb-navy);

}



/* =========================================================
   RESULT
========================================================= */

.bb-result {

    background: var(--bb-ivory);

}


.bb-result .project-label {

    color: var(--bb-blue);

}


.bb-result h2 {

    color: var(--bb-navy);

}


.bb-result p {

    color: var(--bb-text);

}



/* =========================================================
   NEXT PROJECT
========================================================= */

/*
   Common Witson layout remains untouched.
   Only the background becomes the Blue & Bloom image.
*/

.bb-next-project {

    position: relative;

    background-image:

        linear-gradient(
            90deg,
            rgba(23, 59, 96, .88),
            rgba(23, 59, 96, .58)
        ),

        url("../assets/images/blue-and-bloom-1.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}


.bb-next-project .project-label {

    color: var(--bb-light-blue);

}


.bb-next-project h2 {

    color: #fff;

}


.bb-next-project .next-project-category {

    color: rgba(255,255,255,.8);

}


.bb-next-project .next-project-arrow {

    border-color: rgba(255,255,255,.6);

    color: #fff;

}


.bb-next-project
.next-project-link:hover
.next-project-arrow {

    background: #fff;

    color: var(--bb-navy);

}



/* =========================================================
   RESPONSIVE HERO
========================================================= */

@media (max-width: 650px) {

    .bb-hero-image {

        background-image:

            linear-gradient(
                180deg,
                rgba(244,240,233,.98) 0%,
                rgba(244,240,233,.90) 30%,
                rgba(244,240,233,.55) 60%,
                rgba(244,240,233,.12) 100%
            ),

            url("../assets/images/blue-and-bloom-1.png");

        background-position: center;

    }

}





















/* =========================================================
   TIDE HAVEN RETREATS
   PROJECT-SPECIFIC STYLING
   Uses the existing Tortoise & Tide project layout
========================================================= */


/* =========================================================
   TIDE HAVEN COLOURS
========================================================= */

:root {

    --th-deep-tide: #234B4A;
    --th-sea-glass: #7FA7A0;
    --th-drift: #C7D8D1;
    --th-shell: #F3EEE4;
    --th-sand: #D8C7AE;

    --th-text: #354C49;

    --th-border: rgba(35, 75, 74, 0.18);

}


/* =========================================================
   HERO
========================================================= */

.th-hero {

    background: var(--th-shell);

}


.th-hero-image {

    background-image:

        linear-gradient(
            90deg,
            rgba(243, 238, 228, 1) 0%,
            rgba(243, 238, 228, .97) 24%,
            rgba(243, 238, 228, .72) 45%,
            rgba(243, 238, 228, .12) 70%,
            rgba(243, 238, 228, 0) 100%
        ),

        url("../assets/images/th-banner.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}


/* =========================================================
   TIDE HAVEN TEXT
========================================================= */

.th-heading {

    color: var(--th-deep-tide) !important;

}


.th-body {

    color: var(--th-text) !important;

}


.th-sea-label {

    color: var(--th-sea-glass) !important;

}


/* =========================================================
   HERO TEXT
========================================================= */

.th-hero .about-label {

    color: var(--th-sea-glass) !important;

}


.th-hero h1 {

    color: var(--th-deep-tide) !important;

}


.th-hero p {

    color: var(--th-text) !important;

}


.th-hero .text-link {

    color: var(--th-deep-tide) !important;

    border-color: var(--th-deep-tide) !important;

}


.th-hero .text-link:hover {

    color: var(--th-sea-glass) !important;

    border-color: var(--th-sea-glass) !important;

}


/* =========================================================
   DECORATIVE WAVE
========================================================= */

.th-squiggle {

    filter:
        sepia(20%)
        saturate(32%)
        hue-rotate(105deg);

}


/* =========================================================
   PROJECT INTRO
========================================================= */

.th-intro {

    background: #ffffff;

}


.th-intro .project-label,
.th-intro .th-sea-label {

    color: var(--th-sea-glass) !important;

}


.th-intro .th-body {

    color: var(--th-text) !important;

}


.th-intro .project-details {

    border-color: var(--th-border);

}


.th-intro .project-detail span {

    color: var(--th-sea-glass);

}


.th-intro .project-detail p {

    color: var(--th-deep-tide);

}


/* =========================================================
   THE IDENTITY
========================================================= */

.th-identity-section {

    background: var(--th-shell);

    padding: 7rem 0 5rem;

    border-radius: 1rem;

}


.th-identity-section .identity-heading h2 {

    color: var(--th-deep-tide);

}


.th-identity-section .identity-story-copy p {

    color: var(--th-text);

}


.th-identity-section .identity-detail-label {

    color: var(--th-sea-glass);

}


.th-identity-section .identity-details {

    border-color: var(--th-border);

}


.th-identity-section .identity-detail + .identity-detail {

    border-color: var(--th-border);

}


.th-identity-section .identity-wordmark {

    color: var(--th-deep-tide);

}


.th-identity-section .identity-mark-content small {

    color: var(--th-sea-glass);

}


.th-identity-section .typography-example {

    color: var(--th-deep-tide);

}


.th-identity-section .typography-item strong {

    color: var(--th-deep-tide);

}


.th-identity-section .typography-item small {

    color: var(--th-text);

}


/* =========================================================
   MARK
========================================================= */

.th-flower-mark svg {

    stroke: var(--th-deep-tide);

}


/* =========================================================
   COLOUR PALETTE
========================================================= */

.th-identity-section .palette-swatch {

    box-shadow:
        inset 0 0 0 1px rgba(35, 75, 74, .06);

}


.th-identity-section .palette-item small {

    color: var(--th-deep-tide);

}


/* =========================================================
   IN APPLICATION
========================================================= */

.th-applications {

    background: #fff;

}


.th-applications .project-label {

    color: var(--th-sea-glass);

}


.th-applications .section-heading h2 {

    color: var(--th-deep-tide);

}


/* =========================================================
   THE RESULT
========================================================= */

.th-result {

    background: var(--th-shell);

}


.th-result .project-label {

    color: var(--th-sea-glass);

}


.th-result h2 {

    color: var(--th-deep-tide);

}


.th-result p {

    color: var(--th-text);

}


/* =========================================================
   NEXT PROJECT
========================================================= */

.th-next-project {

    position: relative;

    background-image:

        linear-gradient(
            90deg,
            rgba(35, 75, 74, .92),
            rgba(35, 75, 74, .60)
        ),

        url("../assets/images/tide-haven-retreats-1.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}


.th-next-project .project-label {

    color: var(--th-drift);

}


.th-next-project h2 {

    color: #fff;

}


.th-next-project .next-project-category {

    color: rgba(255,255,255,.82);

}


.th-next-project .next-project-arrow {

    border-color: rgba(255,255,255,.6);

    color: #fff;

}


.th-next-project
.next-project-link:hover
.next-project-arrow {

    background: #fff;

    color: var(--th-deep-tide);

}


/* =========================================================
   RESPONSIVE
========================================================= */


/* ---------- LARGE TABLET ---------- */

@media (max-width: 1200px) {

    .th-identity-section {

        padding: 6rem 0 4rem;

    }

}


/* ---------- TABLET ---------- */

@media (max-width: 992px) {

    .th-identity-section {

        padding: 5rem 0 4rem;

    }


    .th-hero-image {

        background-image:

            linear-gradient(
                90deg,
                rgba(243,238,228,1) 0%,
                rgba(243,238,228,.94) 32%,
                rgba(243,238,228,.50) 58%,
                rgba(243,238,228,.08) 80%
            ),

            url("../assets/images/tide-haven-retreats-1.png");

    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .th-hero-image {

        background-image:

            linear-gradient(
                180deg,
                rgba(243,238,228,.97) 0%,
                rgba(243,238,228,.91) 28%,
                rgba(243,238,228,.55) 55%,
                rgba(243,238,228,.10) 78%
            ),

            url("../assets/images/tide-haven-retreats-1.png");

        background-position: center;

        background-size: cover;

    }


    .th-identity-section {

        padding: 4.5rem 0 3.5rem;

        border-radius: 0;

    }

}


/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {

    .th-identity-section {

        padding-top: 4rem;

    }

}
























/* =========================================================
   OAKRIDGE
   PROJECT-SPECIFIC STYLING
   Uses the existing Tortoise & Tide project layout
========================================================= */


/* =========================================================
   OAKRIDGE COLOURS
========================================================= */

:root {

    --okr-oak: #31453F;
    --okr-stone: #7A8B82;
    --okr-limestone: #B8C1BA;
    --okr-warm-white: #F2EEE7;
    --okr-clay: #B9A58A;

    --okr-text: #354C49;

    --okr-border: rgba(49, 69, 63, 0.18);

}


/* =========================================================
   HERO
========================================================= */

.okr-hero {

    background: var(--okr-warm-white);

}


.okr-hero-image {

    background-image:

        linear-gradient(
            90deg,
            rgba(243, 238, 228, 1) 0%,
            rgba(243, 238, 228, .97) 24%,
            rgba(243, 238, 228, .72) 45%,
            rgba(243, 238, 228, .12) 70%,
            rgba(243, 238, 228, 0) 100%
        ),

        url("../assets/images/okr-banner.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}


/* =========================================================
   TIDE HAVEN TEXT
========================================================= */

.okr-heading {

    color: var(--okr-oak) !important;

}


.okr-body {

    color: var(--okr-text) !important;

}


.okr-blue-label {

    color: var(--okr-stone) !important;

}


/* =========================================================
   HERO TEXT
========================================================= */

.okr-hero .about-label {

    color: var(--okr-stone) !important;

}


.okr-hero h1 {

    color: var(--okr-oak) !important;

}


.okr-hero p {

    color: var(--okr-text) !important;

}


.okr-hero .text-link {

    color: var(--okr-oak) !important;

    border-color: var(--okr-oak) !important;

}


.okr-hero .text-link:hover {

    color: var(--okr-stone) !important;

    border-color: var(--okr-stone) !important;

}


/* =========================================================
   DECORATIVE WAVE
========================================================= */

.okr-squiggle {

    filter:
        sepia(20%)
        saturate(32%)
        hue-rotate(105deg);

}


/* =========================================================
   PROJECT INTRO
========================================================= */

.okr-intro {

    background: #ffffff;

}


.okr-intro .project-label,
.okr-intro .okr-blue-label {

    color: var(--okr-stone) !important;

}


.okr-intro .okr-body {

    color: var(--okr-text) !important;

}


.okr-intro .project-details {

    border-color: var(--okr-border);

}


.okr-intro .project-detail span {

    color: var(--okr-stone);

}


.okr-intro .project-detail p {

    color: var(--okr-oak);

}


/* =========================================================
   THE IDENTITY
========================================================= */

.okr-identity-section {

    background: var(--okr-warm-white);

    padding: 7rem 0 5rem;

    border-radius: 1rem;

}


.okr-identity-section .identity-heading h2 {

    color: var(--okr-oak);

}


.okr-identity-section .identity-story-copy p {

    color: var(--okr-text);

}


.okr-identity-section .identity-detail-label {

    color: var(--okr-stone);

}


.okr-identity-section .identity-details {

    border-color: var(--okr-border);

}


.okr-identity-section .identity-detail + .identity-detail {

    border-color: var(--okr-border);

}


.okr-identity-section .identity-wordmark {

    color: var(--okr-oak);

}


.okr-identity-section .identity-mark-content small {

    color: var(--okr-stone);

}


.okr-identity-section .typography-example {

    color: var(--okr-oak);

}


.okr-identity-section .typography-item strong {

    color: var(--okr-oak);

}


.okr-identity-section .typography-item small {

    color: var(--okr-text);

}


/* =========================================================
   MARK
========================================================= */

.okr-flower-mark svg {

    stroke: var(--okr-oak);

}


/* =========================================================
   COLOUR PALETTE
========================================================= */

.okr-identity-section .palette-swatch {

    box-shadow:
        inset 0 0 0 1px rgba(49, 69, 63, .06);

}


.okr-identity-section .palette-item small {

    color: var(--okr-oak);

}


/* =========================================================
   IN APPLICATION
========================================================= */

.okr-applications {

    background: #fff;

}


.okr-applications .project-label {

    color: var(--okr-stone);

}


.okr-applications .section-heading h2 {

    color: var(--okr-oak);

}


/* =========================================================
   THE RESULT
========================================================= */

.okr-result {

    background: var(--okr-warm-white);

}


.okr-result .project-label {

    color: var(--okr-stone);

}


.okr-result h2 {

    color: var(--okr-oak);

}


.okr-result p {

    color: var(--okr-text);

}


/* =========================================================
   NEXT PROJECT
========================================================= */

.okr-next-project {

    position: relative;

    background-image:

        linear-gradient(
            90deg,
            rgba(49, 69, 63, .92),
            rgba(49, 69, 63, .60)
        ),

        url("../assets/images/tide-haven-retreats-1.png");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}


.okr-next-project .project-label {

    color: var(--okr-limestone);

}


.okr-next-project h2 {

    color: #fff;

}


.okr-next-project .next-project-category {

    color: rgba(255,255,255,.82);

}


.okr-next-project .next-project-arrow {

    border-color: rgba(255,255,255,.6);

    color: #fff;

}


.okr-next-project
.next-project-link:hover
.next-project-arrow {

    background: #fff;

    color: var(--okr-oak);

}


/* =========================================================
   RESPONSIVE
========================================================= */


/* ---------- LARGE TABLET ---------- */

@media (max-width: 1200px) {

    .okr-identity-section {

        padding: 6rem 0 4rem;

    }

}


/* ---------- TABLET ---------- */

@media (max-width: 992px) {

    .okr-identity-section {

        padding: 5rem 0 4rem;

    }


    .okr-hero-image {

        background-image:

            linear-gradient(
                90deg,
                rgba(243,238,228,1) 0%,
                rgba(243,238,228,.94) 32%,
                rgba(243,238,228,.50) 58%,
                rgba(243,238,228,.08) 80%
            ),

            url("../assets/images/tide-haven-retreats-1.png");

    }

}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .okr-hero-image {

        background-image:

            linear-gradient(
                180deg,
                rgba(243,238,228,.97) 0%,
                rgba(243,238,228,.91) 28%,
                rgba(243,238,228,.55) 55%,
                rgba(243,238,228,.10) 78%
            ),

            url("../assets/images/tide-haven-retreats-1.png");

        background-position: center;

        background-size: cover;

    }


    .okr-identity-section {

        padding: 4.5rem 0 3.5rem;

        border-radius: 0;

    }

}


/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {

    .okr-identity-section {

        padding-top: 4rem;

    }

}



























































/* ==========================================
   TORTOISE & TIDE
   JOURNAL PAGE
========================================== */


/* ==========================================
   JOURNAL HERO
========================================== */

.journal-hero {

    background: var(--cream);

    padding: 5.5rem 0 4.5rem;

}


.journal-hero-content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

}


.journal-hero .about-label {

    margin-bottom: 1rem;

}


.journal-hero h1 {

    color: var(--sage);

    font-size: clamp(3rem, 5vw, 4.5rem);

    line-height: 1.02;

    letter-spacing: -0.025em;

    margin: 0;

}


.journal-squiggle {

    display: block;

    width: 55px;

    height: auto;

    margin: 1.6rem auto 1.5rem;

}


.journal-hero p {

    max-width: 580px;

    margin: 0 auto;

    font-size: 1rem;

    line-height: 1.75;

    color: var(--forest);

}



/* ==========================================
   FEATURED ENTRY
========================================== */

.journal-featured {

    background: var(--cream);

    padding: 1rem 0 5.5rem;

}


.journal-entry {

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, .92fr);

    background: white;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid rgba(55,69,54,.08);

}


.journal-entry-image {

    display: block;

    min-height: 520px;

    overflow: hidden;

    background: var(--sand);

}


.journal-entry-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}


.journal-entry:hover .journal-entry-image img {

    transform: scale(1.035);

}



/* ---------- ENTRY CONTENT ---------- */

.journal-entry-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: clamp(3rem, 5vw, 5.5rem);

}


.journal-entry-meta {

    display: flex;

    align-items: center;

    gap: .75rem;

    color: var(--forest);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    margin-bottom: 1.8rem;

}


.journal-entry-meta span:first-child {

    color: var(--terracotta);

}


.journal-entry-content h2 {

    color: var(--sage);

    font-size: clamp(2.4rem, 4vw, 3.45rem);

    line-height: 1.03;

    letter-spacing: -0.025em;

    margin: 0;

}


.journal-entry-line {

    width: 42px;

    height: 1px;

    background: var(--terracotta);

    margin: 2rem 0 1.6rem;

}


.journal-entry-content p {

    max-width: 460px;

    margin: 0;

    font-size: .9rem;

    line-height: 1.8;

    color: #343934;

}


.journal-entry-content p + p {

    margin-top: 1rem;

}


.journal-read-link {

    display: inline-flex;

    align-items: center;

    gap: 1.25rem;

    align-self: flex-start;

    margin-top: 2rem;

    padding-bottom: .35rem;

    border-bottom: 1px solid var(--forest);

    color: var(--forest);

    font-size: .85rem;

    font-weight: 700;

    transition:
        color .25s ease,
        border-color .25s ease;

}


.journal-read-link span {

    font-size: 1.2rem;

    line-height: 1;

    transition: transform .25s ease;

}


.journal-read-link:hover {

    color: var(--terracotta);

    border-color: var(--terracotta);

}


.journal-read-link:hover span {

    transform: translateX(5px);

}



/* ==========================================
   COMING SOON
========================================== */

.journal-coming-soon {

    background: var(--cream);

    padding: 0 0 6rem;

}


.journal-coming-inner {

    position: relative;

    min-height: 340px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 4rem 2rem;

    border-radius: 18px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.62),
            rgba(238,229,216,.68)
        );

    border: 1px solid rgba(55,69,54,.06);

}


/* subtle organic decoration */

.journal-coming-inner::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    right: -80px;

    bottom: -120px;

    border: 1px solid rgba(81,102,78,.16);

    border-radius: 58% 42% 55% 45%;

    transform: rotate(-25deg);

}


.journal-coming-inner::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    left: -100px;

    top: -90px;

    border: 1px solid rgba(209,112,70,.13);

    border-radius: 50%;

}


.journal-coming-icon {

    position: relative;

    z-index: 2;

    width: 72px;

    height: 72px;

    margin-bottom: 1.1rem;

    display: flex;

    align-items: center;

    justify-content: center;

}


.journal-coming-icon img {

    width: 100%;

    object-fit: contain;

}


.journal-coming-inner .about-label {

    position: relative;

    z-index: 2;

    margin-bottom: .65rem;

}


.journal-coming-inner h2 {

    position: relative;

    z-index: 2;

    color: var(--forest);

    font-size: clamp(2.2rem, 4vw, 3.2rem);

    line-height: 1.05;

    margin: 0;

}


.journal-coming-squiggle {

    position: relative;

    z-index: 2;

    display: block;

    width: 45px;

    margin: 1.25rem auto 1rem;

}


.journal-coming-inner p {

    position: relative;

    z-index: 2;

    max-width: 470px;

    margin: 0;

    font-size: .9rem;

    line-height: 1.75;

    color: #343934;

}



/* ==========================================
   ACTIVE NAV
========================================== */

.site-header
.nav-links
a[aria-current="page"] {

    color: var(--terracotta);

}


.site-header
.nav-links
a[aria-current="page"]::after {

    width: 100%;

}



/* ==========================================
   RESPONSIVE
========================================== */


/* ---------- LARGE TABLET ---------- */

@media (max-width: 1200px) {

    .journal-entry-content {

        padding: 3.5rem;

    }

    .journal-entry-image {

        min-height: 480px;

    }

}



/* ---------- TABLET ---------- */

@media (max-width: 992px) {

    .journal-hero {

        padding-top: 4.5rem;

    }


    .journal-entry {

        grid-template-columns: 1fr 1fr;

    }


    .journal-entry-image {

        min-height: 450px;

    }


    .journal-entry-content {

        padding: 2.75rem;

    }


    .journal-entry-content h2 {

        font-size: clamp(2.1rem, 4vw, 3rem);

    }

}



/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .journal-hero {

        padding: 4rem 0 3.5rem;

    }


    .journal-hero h1 {

        font-size: clamp(2.7rem, 11vw, 3.6rem);

    }


    .journal-hero p {

        font-size: .82rem;

        max-width: 360px;

    }


    .journal-featured {

        padding-bottom: 4rem;

    }


    .journal-entry {

        grid-template-columns: 1fr;

    }


    .journal-entry-image {

        min-height: auto;

        aspect-ratio: 1.15 / 1;

    }


    .journal-entry-content {

        padding: 2.5rem 2rem 2.75rem;

    }


    .journal-entry-meta {

        margin-bottom: 1.25rem;

        flex-wrap: wrap;

    }


    .journal-entry-content h2 {

        font-size: 2.4rem;

    }


    .journal-entry-content p {

        font-size: .8rem;

    }


    .journal-coming-soon {

        padding-bottom: 4.5rem;

    }


    .journal-coming-inner {

        min-height: 320px;

        padding: 3.5rem 1.5rem;

    }


    .journal-coming-inner h2 {

        font-size: 2.35rem;

    }

}



/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {

    .journal-hero {

        padding-top: 3rem;

    }


    .journal-hero h1 {

        font-size: 2.55rem;

    }


    .journal-entry-content {

        padding: 2.2rem 1.5rem 2.5rem;

    }


    .journal-entry-content h2 {

        font-size: 2.15rem;

    }


    .journal-coming-inner {

        border-radius: 14px;

    }


    .journal-coming-inner h2 {

        font-size: 2.05rem;

    }

}




/* ==========================================
TORTOISE & TIDE
JOURNAL ARTICLE PAGES
========================================== */

.article-hero-image {
    width:100%;
    height:clamp(380px,43vw,620px);
    overflow:hidden;
    background:var(--sand);
}

.article-hero-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 52%;
}

.article-intro {
    background:var(--cream);
    padding:2.5rem 0 4.5rem;
}

.back-to-journal {
    display:inline-flex;
    align-items:center;
    gap:.65rem;
    margin-bottom:3.5rem;
    color:var(--forest);
    font-size:.82rem;
    font-weight:500;
    transition:color .25s ease;
}

.back-to-journal span {
    font-size:1.1rem;
}

.back-to-journal:hover {
    color:var(--terracotta);
}

.article-intro-grid {
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(220px,.55fr);
    gap:clamp(4rem,9vw,9rem);
    align-items:end;
}

.article-heading {
    max-width:850px;
}

.article-meta {
    display:flex;
    align-items:center;
    gap:.8rem;
    margin-bottom:1.7rem;
    color:var(--forest);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:1.7px;
    text-transform:uppercase;
}

.article-meta span:first-child {
    color:var(--terracotta);
}

.article-heading h1 {
    color:var(--sage);
    font-size:clamp(3rem,5.2vw,5rem);
    line-height:1.02;
    letter-spacing:-.03em;
    margin:0;
}

.article-squiggle {
    display:block;
    width:55px;
    height:auto;
    margin:1.6rem 0 1.5rem;
}

.article-lead {
    max-width:720px;
    margin:0;
    color:#343934;
    font-size:1.05rem;
    line-height:1.8;
}

.article-toc {
    padding-bottom:.4rem;
}

.article-toc-label {
    display:block;
    color:var(--terracotta);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:1.25rem;
}

.article-toc nav {
    display:flex;
    flex-direction:column;
    gap:.9rem;
}

.article-toc a {
    color:#343934;
    font-size:.82rem;
    line-height:1.45;
    transition:color .25s ease,transform .25s ease;
}

.article-toc a:hover {
    color:var(--terracotta);
    transform:translateX(4px);
}

.article-body {
    background:var(--cream);
    padding:1rem 0 7rem;
}

.article-layout {
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(280px,.5fr);
    gap:clamp(5rem,9vw,9rem);
    align-items:start;
}

.article-content {
    max-width:780px;
}

.article-section {
    padding:4rem 0;
    border-top:1px solid rgba(55,69,54,.12);
}

.article-section h2 {
    color:var(--sage);
    font-size:clamp(2rem,3.3vw,3rem);
    line-height:1.08;
    letter-spacing:-.025em;
    margin-bottom:1.5rem;
}

.article-section p {
    max-width:680px;
    margin:0 0 1.15rem;
    color:#343934;
    font-size:.94rem;
    line-height:1.9;
}

.article-section p:last-child {
    margin-bottom:0;
}

.article-section strong {
    color:var(--forest);
    font-weight:600;
}

.article-section em {
    font-family:var(--heading);
    font-size:1.05em;
}

.article-section-highlight {
    padding-top:5rem;
}

.article-section-highlight h2 {
    font-size:clamp(2.4rem,4vw,3.7rem);
    max-width:720px;
}

.article-rhythm {
    display:flex;
    flex-direction:column;
    gap:.25rem;
    margin:2rem 0 2.3rem;
    padding-left:1.4rem;
    border-left:2px solid var(--terracotta);
}

.article-rhythm span {
    color:var(--sage);
    font-family:var(--heading);
    font-size:clamp(1.35rem,2vw,1.7rem);
    line-height:1.35;
}

.article-section blockquote {
    margin:3rem 0;
    padding:2.3rem 2.5rem;
    border-left:3px solid var(--terracotta);
    background:rgba(238,229,216,.62);
}

.article-section blockquote p {
    margin:0;
    color:var(--forest);
    font-family:var(--heading);
    font-size:clamp(1.7rem,3vw,2.4rem);
    font-style:italic;
    line-height:1.25;
}

.article-section-final {
    padding-bottom:2rem;
}

.article-final-line {
    font-family:var(--heading);
    font-size:1.25rem!important;
}

.article-closing {
    margin-top:2.3rem!important;
    color:var(--sage)!important;
    font-family:var(--heading);
    font-size:clamp(1.8rem,3vw,2.5rem)!important;
    line-height:1.2!important;
}

.article-sidebar {
    position:sticky;
    top:125px;
}

.article-quote-card {
    overflow:hidden;
    border:1px solid rgba(55,69,54,.1);
    border-radius:16px;
    background:#fff;
}

.article-quote-image {
    aspect-ratio:1.1/1;
    overflow:hidden;
    background:var(--sand);
}

.article-quote-image img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.article-quote-content {
    padding:2rem;
}

.article-quote-content blockquote {
    margin:0;
    color:var(--sage);
    font-family:var(--heading);
    font-size:1.65rem;
    font-style:italic;
    line-height:1.3;
}

.article-quote-content cite {
    display:block;
    margin-top:1.5rem;
    color:var(--terracotta);
    font-size:.68rem;
    font-style:normal;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.article-share {
    margin-top:2.5rem;
}

.article-share>span {
    display:block;
    margin-bottom:1rem;
    color:var(--terracotta);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:1.7px;
    text-transform:uppercase;
}

.share-links {
    display:flex;
    align-items:center;
    gap:1.2rem;
}

.share-links a {
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    color:var(--forest);
    font-size:.85rem;
    font-weight:700;
    transition:color .25s ease,transform .25s ease;
}

.share-links a:hover {
    color:var(--terracotta);
    transform:translateY(-2px);
}

.site-header .nav-links a[aria-current="page"] {
    color:var(--terracotta);
}

.site-header .nav-links a[aria-current="page"]::after {
    width:100%;
}

@media(max-width:1200px) {
    .article-intro-grid {
        gap:4rem;
    }

    .article-layout {
        gap:5rem;
    }

    .article-sidebar {
        top:110px;
    }

}

@media(max-width:992px) {
    .article-hero-image {
        height:480px;
    }

    .article-intro-grid {
        grid-template-columns:1fr;
        gap:3rem;
    }

    .article-toc {
        padding:1.5rem 0 0;
        border-top:1px solid rgba(55,69,54,.12);
    }

    .article-toc nav {
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:.8rem 2rem;
    }

    .article-layout {
        grid-template-columns:1fr;
        gap:3rem;
    }

    .article-sidebar {
        position:static;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:2.5rem;
        max-width:780px;
    }

    .article-share {
        margin-top:0;
        align-self:center;
    }

}

@media(max-width:768px) {
    .article-hero-image {
        height:350px;
    }

    .article-intro {
        padding:2rem 0 3.5rem;
    }

    .back-to-journal {
        margin-bottom:2.5rem;
    }

    .article-heading h1 {
        font-size:clamp(2.5rem,11vw,3.5rem);
    }

    .article-lead {
        font-size:.88rem;
    }

    .article-toc nav {
        grid-template-columns:1fr;
    }

    .article-body {
        padding-bottom:4.5rem;
    }

    .article-section {
        padding:3.2rem 0;
    }

    .article-section h2 {
        font-size:2.2rem;
    }

    .article-section p {
        font-size:.8rem;
        line-height:1.8;
    }

    .article-section-highlight h2 {
        font-size:2.5rem;
    }

    .article-rhythm span {
        font-size:1.35rem;
    }

    .article-section blockquote {
        margin:2rem 0;
        padding:1.8rem 1.5rem;
    }

    .article-section blockquote p {
        font-size:1.7rem;
    }

    .article-sidebar {
        grid-template-columns:1fr;
        gap:2rem;
    }

    .article-share {
        text-align:center;
    }

    .share-links {
        justify-content:center;
    }

}

@media(max-width:480px) {
    .article-hero-image {
        height:290px;
    }

    .article-heading h1 {
        font-size:2.3rem;
    }

    .article-meta {
        font-size:.64rem;
    }

    .article-section h2 {
        font-size:2rem;
    }

    .article-section-highlight h2 {
        font-size:2.2rem;
    }

    .article-quote-content {
        padding:1.5rem;
    }

    .article-quote-content blockquote {
        font-size:1.45rem;
    }

}



































/* ==========================================
   TORTOISE & TIDE
   JOURNAL PAGE
========================================== */


/* ==========================================
   JOURNAL HERO
========================================== */

.journal-hero {

    background: var(--cream);

    padding: 5.5rem 0 4.5rem;

}


.journal-hero-content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;

}


.journal-hero .about-label {

    margin-bottom: 1rem;

}


.journal-hero h1 {

    color: var(--sage);

    font-size: clamp(3rem, 5vw, 4.5rem);

    line-height: 1.02;

    letter-spacing: -0.025em;

    margin: 0;

}


.journal-squiggle {

    display: block;

    width: 55px;

    height: auto;

    margin: 1.6rem auto 1.5rem;

}


.journal-hero p {

    max-width: 580px;

    margin: 0 auto;

    font-size: 1rem;

    line-height: 1.75;

    color: var(--forest);

}



/* ==========================================
   FEATURED ENTRY
========================================== */

.journal-featured {

    background: var(--cream);

    padding: 1rem 0 5.5rem;

}


.journal-entry {

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, .92fr);

    background: white;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid rgba(55,69,54,.08);

}


.journal-entry-image {

    display: block;

    min-height: 520px;

    overflow: hidden;

    background: var(--sand);

}


.journal-entry-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;

}


.journal-entry:hover .journal-entry-image img {

    transform: scale(1.035);

}



/* ---------- ENTRY CONTENT ---------- */

.journal-entry-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: clamp(3rem, 5vw, 5.5rem);

}


.journal-entry-meta {

    display: flex;

    align-items: center;

    gap: .75rem;

    color: var(--forest);

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    margin-bottom: 1.8rem;

}


.journal-entry-meta span:first-child {

    color: var(--terracotta);

}


.journal-entry-content h2 {

    color: var(--sage);

    font-size: clamp(2.4rem, 4vw, 3.45rem);

    line-height: 1.03;

    letter-spacing: -0.025em;

    margin: 0;

}


.journal-entry-line {

    width: 42px;

    height: 1px;

    background: var(--terracotta);

    margin: 2rem 0 1.6rem;

}


.journal-entry-content p {

    max-width: 460px;

    margin: 0;

    font-size: .9rem;

    line-height: 1.8;

    color: #343934;

}


.journal-entry-content p + p {

    margin-top: 1rem;

}


.journal-read-link {

    display: inline-flex;

    align-items: center;

    gap: 1.25rem;

    align-self: flex-start;

    margin-top: 2rem;

    padding-bottom: .35rem;

    border-bottom: 1px solid var(--forest);

    color: var(--forest);

    font-size: .85rem;

    font-weight: 700;

    transition:
        color .25s ease,
        border-color .25s ease;

}


.journal-read-link span {

    font-size: 1.2rem;

    line-height: 1;

    transition: transform .25s ease;

}


.journal-read-link:hover {

    color: var(--terracotta);

    border-color: var(--terracotta);

}


.journal-read-link:hover span {

    transform: translateX(5px);

}



/* ==========================================
   COMING SOON
========================================== */

.journal-coming-soon {

    background: var(--cream);

    padding: 0 0 6rem;

}


.journal-coming-inner {

    position: relative;

    min-height: 340px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 4rem 2rem;

    border-radius: 18px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.62),
            rgba(238,229,216,.68)
        );

    border: 1px solid rgba(55,69,54,.06);

}


/* subtle organic decoration */

.journal-coming-inner::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    right: -80px;

    bottom: -120px;

    border: 1px solid rgba(81,102,78,.16);

    border-radius: 58% 42% 55% 45%;

    transform: rotate(-25deg);

}


.journal-coming-inner::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    left: -100px;

    top: -90px;

    border: 1px solid rgba(209,112,70,.13);

    border-radius: 50%;

}


.journal-coming-icon {

    position: relative;

    z-index: 2;

    width: 72px;

    height: 72px;

    margin-bottom: 1.1rem;

    display: flex;

    align-items: center;

    justify-content: center;

}


.journal-coming-icon img {

    width: 100%;

    object-fit: contain;

}


.journal-coming-inner .about-label {

    position: relative;

    z-index: 2;

    margin-bottom: .65rem;

}


.journal-coming-inner h2 {

    position: relative;

    z-index: 2;

    color: var(--forest);

    font-size: clamp(2.2rem, 4vw, 3.2rem);

    line-height: 1.05;

    margin: 0;

}


.journal-coming-squiggle {

    position: relative;

    z-index: 2;

    display: block;

    width: 45px;

    margin: 1.25rem auto 1rem;

}


.journal-coming-inner p {

    position: relative;

    z-index: 2;

    max-width: 470px;

    margin: 0;

    font-size: .9rem;

    line-height: 1.75;

    color: #343934;

}



/* ==========================================
   ACTIVE NAV
========================================== */

.site-header
.nav-links
a[aria-current="page"] {

    color: var(--terracotta);

}


.site-header
.nav-links
a[aria-current="page"]::after {

    width: 100%;

}



/* ==========================================
   RESPONSIVE
========================================== */


/* ---------- LARGE TABLET ---------- */

@media (max-width: 1200px) {

    .journal-entry-content {

        padding: 3.5rem;

    }

    .journal-entry-image {

        min-height: 480px;

    }

}



/* ---------- TABLET ---------- */

@media (max-width: 992px) {

    .journal-hero {

        padding-top: 4.5rem;

    }


    .journal-entry {

        grid-template-columns: 1fr 1fr;

    }


    .journal-entry-image {

        min-height: 450px;

    }


    .journal-entry-content {

        padding: 2.75rem;

    }


    .journal-entry-content h2 {

        font-size: clamp(2.1rem, 4vw, 3rem);

    }

}



/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    .journal-hero {

        padding: 4rem 0 3.5rem;

    }


    .journal-hero h1 {

        font-size: clamp(2.7rem, 11vw, 3.6rem);

    }


    .journal-hero p {

        font-size: .82rem;

        max-width: 360px;

    }


    .journal-featured {

        padding-bottom: 4rem;

    }


    .journal-entry {

        grid-template-columns: 1fr;

    }


    .journal-entry-image {

        min-height: auto;

        aspect-ratio: 1.15 / 1;

    }


    .journal-entry-content {

        padding: 2.5rem 2rem 2.75rem;

    }


    .journal-entry-meta {

        margin-bottom: 1.25rem;

        flex-wrap: wrap;

    }


    .journal-entry-content h2 {

        font-size: 2.4rem;

    }


    .journal-entry-content p {

        font-size: .8rem;

    }


    .journal-coming-soon {

        padding-bottom: 4.5rem;

    }


    .journal-coming-inner {

        min-height: 320px;

        padding: 3.5rem 1.5rem;

    }


    .journal-coming-inner h2 {

        font-size: 2.35rem;

    }

}



/* ---------- SMALL MOBILE ---------- */

@media (max-width: 480px) {

    .journal-hero {

        padding-top: 3rem;

    }


    .journal-hero h1 {

        font-size: 2.55rem;

    }


    .journal-entry-content {

        padding: 2.2rem 1.5rem 2.5rem;

    }


    .journal-entry-content h2 {

        font-size: 2.15rem;

    }


    .journal-coming-inner {

        border-radius: 14px;

    }


    .journal-coming-inner h2 {

        font-size: 2.05rem;

    }

}




/* ==========================================
TORTOISE & TIDE
JOURNAL ARTICLE PAGES
========================================== */

.article-hero-image {
    width:100%;
    height:clamp(380px,43vw,620px);
    overflow:hidden;
    background:var(--sand);
}

.article-hero-image img {
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 52%;
}

.article-intro {
    background:var(--cream);
    padding:2.5rem 0 4.5rem;
}

.back-to-journal {
    display:inline-flex;
    align-items:center;
    gap:.65rem;
    margin-bottom:3.5rem;
    color:var(--forest);
    font-size:.82rem;
    font-weight:500;
    transition:color .25s ease;
}

.back-to-journal span {
    font-size:1.1rem;
}

.back-to-journal:hover {
    color:var(--terracotta);
}

.article-intro-grid {
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(220px,.55fr);
    gap:clamp(4rem,9vw,9rem);
    align-items:end;
}

.article-heading {
    max-width:850px;
}

.article-meta {
    display:flex;
    align-items:center;
    gap:.8rem;
    margin-bottom:1.7rem;
    color:var(--forest);
    font-size:.72rem;
    font-weight:700;
    letter-spacing:1.7px;
    text-transform:uppercase;
}

.article-meta span:first-child {
    color:var(--terracotta);
}

.article-heading h1 {
    color:var(--sage);
    font-size:clamp(3rem,5.2vw,5rem);
    line-height:1.02;
    letter-spacing:-.03em;
    margin:0;
}

.article-squiggle {
    display:block;
    width:55px;
    height:auto;
    margin:1.6rem 0 1.5rem;
}

.article-lead {
    max-width:720px;
    margin:0;
    color:#343934;
    font-size:1.05rem;
    line-height:1.8;
}

.article-toc {
    padding-bottom:.4rem;
}

.article-toc-label {
    display:block;
    color:var(--terracotta);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    margin-bottom:1.25rem;
}

.article-toc nav {
    display:flex;
    flex-direction:column;
    gap:.9rem;
}

.article-toc a {
    color:#343934;
    font-size:.82rem;
    line-height:1.45;
    transition:color .25s ease,transform .25s ease;
}

.article-toc a:hover {
    color:var(--terracotta);
    transform:translateX(4px);
}

.article-body {
    background:var(--cream);
    padding:1rem 0 7rem;
}

.article-layout {
    display:grid;
    grid-template-columns:minmax(0,1.5fr) minmax(280px,.5fr);
    gap:clamp(5rem,9vw,9rem);
    align-items:start;
}

.article-content {
    max-width:780px;
}

.article-section {
    padding:4rem 0;
    border-top:1px solid rgba(55,69,54,.12);
}

.article-section h2 {
    color:var(--sage);
    font-size:clamp(2rem,3.3vw,3rem);
    line-height:1.08;
    letter-spacing:-.025em;
    margin-bottom:1.5rem;
}

.article-section p {
    max-width:680px;
    margin:0 0 1.15rem;
    color:#343934;
    font-size:.94rem;
    line-height:1.9;
}

.article-section p:last-child {
    margin-bottom:0;
}

.article-section strong {
    color:var(--forest);
    font-weight:600;
}

.article-section em {
    font-family:var(--heading);
    font-size:1.05em;
}

.article-section-highlight {
    padding-top:5rem;
}

.article-section-highlight h2 {
    font-size:clamp(2.4rem,4vw,3.7rem);
    max-width:720px;
}

.article-rhythm {
    display:flex;
    flex-direction:column;
    gap:.25rem;
    margin:2rem 0 2.3rem;
    padding-left:1.4rem;
    border-left:2px solid var(--terracotta);
}

.article-rhythm span {
    color:var(--sage);
    font-family:var(--heading);
    font-size:clamp(1.35rem,2vw,1.7rem);
    line-height:1.35;
}

.article-section blockquote {
    margin:3rem 0;
    padding:2.3rem 2.5rem;
    border-left:3px solid var(--terracotta);
    background:rgba(238,229,216,.62);
}

.article-section blockquote p {
    margin:0;
    color:var(--forest);
    font-family:var(--heading);
    font-size:clamp(1.7rem,3vw,2.4rem);
    font-style:italic;
    line-height:1.25;
}

.article-section-final {
    padding-bottom:2rem;
}

.article-final-line {
    font-family:var(--heading);
    font-size:1.25rem!important;
}

.article-closing {
    margin-top:2.3rem!important;
    color:var(--sage)!important;
    font-family:var(--heading);
    font-size:clamp(1.8rem,3vw,2.5rem)!important;
    line-height:1.2!important;
}

.article-sidebar {
    position:sticky;
    top:125px;
}

.article-quote-card {
    overflow:hidden;
    border:1px solid rgba(55,69,54,.1);
    border-radius:16px;
    background:#fff;
}

.article-quote-image {
    aspect-ratio:1.1/1;
    overflow:hidden;
    background:var(--sand);
}

.article-quote-image img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.article-quote-content {
    padding:2rem;
}

.article-quote-content blockquote {
    margin:0;
    color:var(--sage);
    font-family:var(--heading);
    font-size:1.65rem;
    font-style:italic;
    line-height:1.3;
}

.article-quote-content cite {
    display:block;
    margin-top:1.5rem;
    color:var(--terracotta);
    font-size:.68rem;
    font-style:normal;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
}

.article-share {
    margin-top:2.5rem;
}

.article-share>span {
    display:block;
    margin-bottom:1rem;
    color:var(--terracotta);
    font-size:.7rem;
    font-weight:700;
    letter-spacing:1.7px;
    text-transform:uppercase;
}

.share-links {
    display:flex;
    align-items:center;
    gap:1.2rem;
}

.share-links a {
    display:flex;
    align-items:center;
    justify-content:center;
    width:30px;
    height:30px;
    color:var(--forest);
    font-size:.85rem;
    font-weight:700;
    transition:color .25s ease,transform .25s ease;
}

.share-links a:hover {
    color:var(--terracotta);
    transform:translateY(-2px);
}

.site-header .nav-links a[aria-current="page"] {
    color:var(--terracotta);
}

.site-header .nav-links a[aria-current="page"]::after {
    width:100%;
}

@media(max-width:1200px) {
    .article-intro-grid {
        gap:4rem;
    }

    .article-layout {
        gap:5rem;
    }

    .article-sidebar {
        top:110px;
    }

}

@media(max-width:992px) {
    .article-hero-image {
        height:480px;
    }

    .article-intro-grid {
        grid-template-columns:1fr;
        gap:3rem;
    }

    .article-toc {
        padding:1.5rem 0 0;
        border-top:1px solid rgba(55,69,54,.12);
    }

    .article-toc nav {
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:.8rem 2rem;
    }

    .article-layout {
        grid-template-columns:1fr;
        gap:3rem;
    }

    .article-sidebar {
        position:static;
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:2.5rem;
        max-width:780px;
    }

    .article-share {
        margin-top:0;
        align-self:center;
    }

}

@media(max-width:768px) {
    .article-hero-image {
        height:350px;
    }

    .article-intro {
        padding:2rem 0 3.5rem;
    }

    .back-to-journal {
        margin-bottom:2.5rem;
    }

    .article-heading h1 {
        font-size:clamp(2.5rem,11vw,3.5rem);
    }

    .article-lead {
        font-size:.88rem;
    }

    .article-toc nav {
        grid-template-columns:1fr;
    }

    .article-body {
        padding-bottom:4.5rem;
    }

    .article-section {
        padding:3.2rem 0;
    }

    .article-section h2 {
        font-size:2.2rem;
    }

    .article-section p {
        font-size:.8rem;
        line-height:1.8;
    }

    .article-section-highlight h2 {
        font-size:2.5rem;
    }

    .article-rhythm span {
        font-size:1.35rem;
    }

    .article-section blockquote {
        margin:2rem 0;
        padding:1.8rem 1.5rem;
    }

    .article-section blockquote p {
        font-size:1.7rem;
    }

    .article-sidebar {
        grid-template-columns:1fr;
        gap:2rem;
    }

    .article-share {
        text-align:center;
    }

    .share-links {
        justify-content:center;
    }

}

@media(max-width:480px) {
    .article-hero-image {
        height:290px;
    }

    .article-heading h1 {
        font-size:2.3rem;
    }

    .article-meta {
        font-size:.64rem;
    }

    .article-section h2 {
        font-size:2rem;
    }

    .article-section-highlight h2 {
        font-size:2.2rem;
    }

    .article-quote-content {
        padding:1.5rem;
    }

    .article-quote-content blockquote {
        font-size:1.45rem;
    }

}
