:root{
    --green:#435d4a;
    --brown:#8d6543;
    --cream:#f4ebe3;
    --ink:#1f211e;
    --muted:#6d706a;
    --line:#d9d1c4;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:var(--cream);
    color:var(--ink);
    font-family:Georgia, serif;
    min-height:100vh;
}

.wrapper{
    min-height:100vh;
    display:grid;
    grid-template-rows:auto 1fr auto;
}

a{
    color:var(--green);
}

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

header{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
    width:100%;
    padding:28px 7vw;
    border-bottom:1px solid var(--line);
    position:relative;
}

.header-logo{
    display:block;
    line-height:0;
    flex-shrink:0;
}

.header-logo img{
    width:40px;
    height:auto;
    display:block;
}

.nav-toggle{
    display:none;
    border:1px solid var(--line);
    background:transparent;
    width:40px;
    height:40px;
    border-radius:4px;
    cursor:pointer;
    padding:0;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
    display:block;
    width:18px;
    height:2px;
    background:var(--ink);
    border-radius:1px;
    transition:.2s;
}

.nav-toggle span{
    position:relative;
}

.nav-toggle span::before,
.nav-toggle span::after{
    content:"";
    position:absolute;
    left:0;
}

.nav-toggle span::before{
    top:-6px;
}

.nav-toggle span::after{
    top:6px;
}

nav{
    display:flex;
    align-items:center;
    gap:28px;
}

nav a{
    text-decoration:none;
    color:var(--muted);
    font-family:Arial, sans-serif;
    font-size:14px;
    letter-spacing:.04em;
}

nav a:hover{
    color:var(--green);
}

nav a[aria-current="page"]{
    color:var(--green);
    text-decoration:underline;
    text-underline-offset:.35em;
    text-decoration-thickness:1px;
}

.page-label{
    display:none;
    font-family:Arial, sans-serif;
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--ink);
    margin:0;
    margin-left:auto;
    line-height:1;
}

/* ---------- MAIN LAYOUT ---------- */

main{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:48px 7vw;
}

main.is-page{
    align-items:stretch;
    justify-content:flex-start;
    padding-top:56px;
    padding-bottom:64px;
}

/* ---------- HERO (homepage) ---------- */

.right{
    font-family:Arial, sans-serif;
    font-size:13px;
    color:var(--muted);
    line-height:2;
    text-align:center;
    text-transform:uppercase;
    letter-spacing:.12em;
    margin-bottom:28px;
}

.hero{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    width:100%;
}

.hero-logo{
    display:block;
    line-height:0;
    margin-bottom:24px;
}

.hero-logo img{
    width:min(120px, 28vw);
    height:auto;
    display:block;
    margin:0 auto;
}

.brand-name{
    font-size:clamp(28px, 5vw, 48px);
    line-height:1.1;
    font-weight:normal;
    color:var(--ink);
    margin-bottom:10px;
    letter-spacing:.42em;
    text-transform:uppercase;
    text-indent:.42em;
}

.brand-sub{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    font-size:11px;
    color:var(--muted);
    margin-bottom:20px;
}

.brand-sub-inner{
    display:inline-flex;
    align-items:baseline;
    gap:.35em;
}

.brand-sub-text{
    font-family:Arial, sans-serif;
    letter-spacing:.35em;
    text-transform:uppercase;
}

.brand-sub .samech{
    font-family:"Frank Ruhl Libre", Georgia, serif;
    font-size:11px;
    font-weight:700;
    letter-spacing:0;
    line-height:1;
    text-transform:none;
}

.brand-sub::before,
.brand-sub::after{
    content:"";
    width:48px;
    height:1px;
    background:var(--line);
}

.tagline{
    text-transform:uppercase;
    letter-spacing:.18em;
    font-size:11px;
    color:var(--muted);
    margin-bottom:24px;
    font-family:Arial, sans-serif;
}

.hero-body{
    max-width:36rem;
    font-size:clamp(16px, 2.2vw, 18px);
    line-height:1.75;
    margin-bottom:32px;
    color:var(--ink);
}

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

.cta-row{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}

.cta-row.secondary{
    margin-top:16px;
}

.btn{
    text-decoration:none;
    padding:14px 28px;
    border-radius:999px;
    font-family:Arial, sans-serif;
    transition:.2s;
    border:none;
    cursor:pointer;
    font-size:14px;
    display:inline-block;
}

.primary{
    background:var(--green);
    color:white;
}

.primary:hover{
    opacity:.92;
}

.btn-text{
    background:transparent;
    color:var(--muted);
    padding:14px 20px;
}

.btn-text:hover{
    color:var(--green);
}

/* ---------- TESTIMONIALS ---------- */

.testimonials{
    width:100%;
    max-width:620px;
    margin-top:48px;
    text-align:center;
}

.carousel{
    margin-top:8px;
}

.carousel-viewport{
    overflow:hidden;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.carousel-track{
    display:flex;
    transition:transform .45s ease;
    margin:0;
    padding:0;
}

.carousel-slide{
    flex:0 0 100%;
    padding:32px 12px;
    list-style:none;
}

.carousel-quote{
    font-size:clamp(16px, 2.5vw, 18px);
    line-height:1.7;
    color:var(--ink);
    font-style:italic;
    margin-bottom:18px;
}

.carousel-author{
    font-family:Arial, sans-serif;
    font-size:11px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--muted);
}

.carousel-controls{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:20px;
}

.carousel-btn{
    border:1px solid var(--line);
    background:transparent;
    color:var(--ink);
    width:36px;
    height:36px;
    border-radius:999px;
    font-family:Arial, sans-serif;
    font-size:18px;
    line-height:1;
    cursor:pointer;
    transition:.2s;
}

.carousel-btn:hover{
    border-color:var(--green);
    color:var(--green);
}

.carousel-dots{
    display:flex;
    align-items:center;
    gap:8px;
}

.carousel-dot{
    width:8px;
    height:8px;
    border:0;
    border-radius:999px;
    background:var(--line);
    cursor:pointer;
    padding:0;
    transition:.2s;
}

.carousel-dot.is-active{
    background:var(--green);
    transform:scale(1.15);
}

/* ---------- CONTENT PAGES ---------- */

.page{
    width:100%;
    max-width:42rem;
    margin:0 auto;
}

.page:has(.about-intro){
    max-width:48rem;
}

.page-centered{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.page-title{
    font-size:clamp(24px, 4vw, 32px);
    font-weight:normal;
    line-height:1.3;
    margin-bottom:20px;
    color:var(--ink);
}

.subhead{
    font-family:Arial, sans-serif;
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--muted);
    margin:0 0 12px;
}

.about-intro{
    display:grid;
    grid-template-columns:minmax(10rem, 17rem) minmax(0, 1fr);
    gap:32px 40px;
    align-items:start;
    margin-bottom:48px;
}

.about-portrait{
    margin:0;
}

.about-portrait img{
    display:block;
    width:100%;
    height:auto;
}

.about-copy p{
    margin-bottom:0;
    font-size:clamp(16px, 2vw, 18px);
    line-height:1.8;
}

.page-lead{
    font-size:clamp(17px, 2.2vw, 19px);
    line-height:1.7;
    color:var(--ink);
    margin-bottom:40px;
}

.page p{
    font-size:17px;
    line-height:1.75;
    margin-bottom:1.25em;
}

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

.content-section{
    margin-bottom:48px;
}

.content-section:last-child{
    margin-bottom:0;
}

.content-section h2{
    font-size:clamp(17px, 2.2vw, 20px);
    font-weight:normal;
    line-height:1.35;
    margin:0 0 16px;
    color:var(--ink);
}

.section-label{
    font-family:Arial, sans-serif;
    font-size:12px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--muted);
    margin-bottom:20px;
}

.page-cta{
    margin-top:48px;
    padding-top:32px;
    border-top:1px solid var(--line);
}

/* ---------- BEFORE BOOKING ---------- */

.before-booking{
    width:100%;
    text-align:left;
    margin-top:48px;
    scroll-margin-top:24px;
}

.before-booking > h2{
    font-size:clamp(20px, 3vw, 24px);
    font-weight:normal;
    line-height:1.3;
    margin-bottom:20px;
    color:var(--ink);
}

.before-booking p{
    margin-bottom:1.25em;
}

.before-booking p:last-child{
    margin-bottom:0;
}

.book-whatsapp{
    font-size:15px;
    line-height:1.6;
    color:var(--muted);
    margin:0;
    max-width:28rem;
}

.book-whatsapp a{
    color:var(--green);
    text-decoration:none;
}

.book-whatsapp a:hover{
    text-decoration:underline;
}

/* ---------- WHAT WE OFFER ---------- */

.book-services{
    width:100%;
    text-align:left;
    margin-top:0;
    scroll-margin-top:24px;
}

.book-services > h2{
    font-size:clamp(20px, 3vw, 24px);
    font-weight:normal;
    line-height:1.3;
    margin-bottom:20px;
    color:var(--ink);
}

.service-overview{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(14rem, 1fr));
    gap:28px 36px;
}

.service-overview-item{
    scroll-margin-top:24px;
}

.service-overview-item h3{
    font-size:clamp(16px, 2vw, 18px);
    font-weight:normal;
    line-height:1.35;
    margin:0 0 8px;
    color:var(--ink);
}

.service-overview-item p{
    font-size:15px;
    line-height:1.65;
    color:var(--muted);
    margin:0;
}

/* ---------- OUR PROCESS ---------- */

.book-process{
    width:100%;
    text-align:left;
    margin-top:48px;
    scroll-margin-top:24px;
}

.book-process > h2{
    font-size:clamp(20px, 3vw, 24px);
    font-weight:normal;
    line-height:1.3;
    margin-bottom:20px;
    color:var(--ink);
}

.book-process p{
    margin-bottom:1.25em;
}

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

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

@media (max-width:900px){

    header{
        padding:20px 24px;
        gap:16px;
    }

    .nav-toggle{
        display:flex;
    }

    .page-label{
        display:block;
    }

    nav a[aria-current="page"]{
        text-decoration:none;
    }

    nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        right:0;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:var(--cream);
        border-bottom:1px solid var(--line);
        padding:12px 24px 20px;
        z-index:10;
    }

    nav.is-open{
        display:flex;
    }

    nav a{
        font-size:14px;
        padding:12px 0;
        border-bottom:1px solid var(--line);
    }

    nav a:last-child{
        border-bottom:none;
    }

    main{
        padding:36px 24px;
    }

    main.is-page{
        padding-top:40px;
    }

    .brand-name{
        letter-spacing:.28em;
        text-indent:.28em;
    }

}

@media (max-width:640px){

    .about-intro{
        grid-template-columns:1fr;
        gap:28px;
    }

    .about-portrait{
        max-width:18rem;
        margin-inline:auto;
    }
}
