:root{
    --background:#E0E3C4;
    --main-text:#342B26;

    --light-green:#AFAE90;
    --dark-green:#4E5939;
    --green:#6D705B;
    --illustration:#8A857D;

    --cream:#E8E9D6;

    --radius:6px;

    --serif:'Instrument Serif', Georgia, serif;
    --sans:'Helvetica Neue Cyr','Helvetica Neue',Helvetica,Arial,sans-serif;
    --hand:'La Belle Aurore', cursive;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    max-width:100%;
}

body{
    font-family:var(--sans);
    background:var(--background);
    color:var(--main-text);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
    max-width:100%;
    line-height:1.5;
    font-size:15px;
}

img{
    display:block;
    max-width:100%;
}

a{
    color:inherit;
    text-decoration:none;
}

::selection{
    background:var(--dark-green);
    color:var(--cream);
}

.container{
    max-width:1320px;
    margin:0 auto;
    padding:0 32px;
}

.serif{
    font-family:var(--serif);
    font-weight:400;
}

.hand{
    font-family:var(--hand);
}

.slot{
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            120% 80% at 30% 20%,
            rgba(255,255,255,.16),
            transparent 60%
        ),
        linear-gradient(
            140deg,
            #8A9266 0%,
            #606B46 55%,
            #9A8E6B 100%
        );
}

.slot::after{
    content:attr(data-label);

    position:absolute;
    left:50%;
    bottom:9px;

    transform:translateX(-50%);

    font-size:9px;
    letter-spacing:.18em;
    text-transform:uppercase;

    color:rgba(255,255,255,.6);

    white-space:nowrap;
    z-index:0;
}

.slot img,
.slot video{
    position:relative;
    z-index:1;

    width:100%;
    height:100%;

    object-fit:cover;
}

.slot.gray img{
    filter:grayscale(1) contrast(.95);
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:100;

    padding:26px 0;

    transition:all .35s ease;
}

header.scrolled{
    background:rgba(78,89,57,.92);
    backdrop-filter:blur(12px);
    padding:18px 0;
}

.nav-inner{
    max-width:1320px;
    margin:0 auto;

    padding:0 34px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.brand-logo{
    display:flex;
    align-items:center;
}

.brand-logo img{
    width:82px;
    height:auto;
    display:block;

    transition:.35s ease;
}

header.scrolled .brand-logo img{
    width:70px;
}

nav.main{
    display:flex;
    align-items:center;
    gap:42px;
}

nav.main a{
    color:var(--cream);

    font-size:10px;
    font-weight:500;

    letter-spacing:.22em;
    text-transform:uppercase;

    transition:opacity .3s ease;
}

nav.main a:hover{
    opacity:.6;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.lang{
    display:flex;
    align-items:center;
    gap:8px;

    color:var(--cream);

    font-size:10px;
    letter-spacing:.18em;
    text-transform:uppercase;

    cursor:pointer;
}

.lang svg{
    width:8px;
    height:8px;
    flex-shrink:0;
}

.btn-book{
    width:94px;
    height:38px;

    border:none;
    border-radius:2px;

    background:var(--cream);
    color:var(--main-text);

    font-family:var(--sans);
    font-size:10px;
    font-weight:500;

    letter-spacing:.24em;
    text-transform:uppercase;

    cursor:pointer;

    transition:.3s ease;
}

.btn-book:hover{
    background:var(--dark-green);
    color:var(--cream);
}

.burger{
    display:none;
    flex-direction:column;
    gap:5px;

    background:none;
    border:none;
    cursor:pointer;
}

.burger span{
    width:24px;
    height:2px;

    background:var(--cream);

    transition:.3s;
}

.hero{
    position:relative;

    min-height:100vh;
    height:100vh;

    display:flex;
    align-items:flex-end;
    justify-content:center;

    overflow:hidden;
}

.hero .slot{
    position:absolute;
    inset:0;

    z-index:1;
}

.hero .slot img,
.hero .slot video{
    width:100%;
    height:100%;

    object-fit:cover;

    filter:
        saturate(.95)
        contrast(1.02)
        brightness(.88);
}

.hero .slot::before{
    content:"";

    position:absolute;
    inset:0;

    z-index:2;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.08) 0%,
            rgba(0,0,0,.02) 40%,
            rgba(0,0,0,.18) 100%
        );
}

.hero-content{
    position:relative;
    z-index:3;

    width:100%;
    max-width:1320px;

    padding:0 40px 22px;

    text-align:center;
}

.hero-tag{
    font-family:var(--serif);

    font-size:clamp(22px,1.8vw,32px);
    line-height:1;

    color:rgba(232,233,214,.95);

    margin-bottom:6px;

    text-shadow:0 2px 14px rgba(0,0,0,.25);
}

.hero-title{
    font-family:var(--sans);

    font-weight:700;

    font-size:clamp(70px,8vw,120px);

    line-height:.88;

    letter-spacing:-0.075em;

    text-transform:uppercase;
    white-space:nowrap;

    color:var(--cream);

    text-shadow:0 2px 24px rgba(0,0,0,.18);
}

.hero-est{
    font-family:var(--hand);

    font-size:30px;

    color:var(--cream);

    margin-top:-8px;

    text-shadow:0 2px 10px rgba(0,0,0,.2);
}

@media(max-width:1024px){

    nav.main{
        gap:28px;
    }

    .hero-title{
        font-size:clamp(64px,9vw,96px);
    }

    .hero-tag{
        font-size:24px;
    }
}

@media(max-width:768px){

    header{
        padding:20px 0;
    }

    nav.main{
        display:none;
    }

    .burger{
        display:flex;
    }

    .brand-logo img{
        width:58px;
    }

    .lang{
        font-size:9px;
        gap:5px;
    }

    .btn-book{
        width:78px;
        height:34px;
        font-size:9px;
    }

    .hero{
        min-height:100svh;
    }

    .hero-content{
        padding:0 20px 36px;
    }

    .hero-tag{
        font-size:18px;
        margin-bottom:8px;
    }

    .hero-title{
        white-space:normal;
        font-size:clamp(52px,16vw,82px);
        line-height:.92;
        letter-spacing:-0.05em;
    }

    .hero-est{
        font-size:24px;
        margin-top:2px;
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100vh;
    height: 100svh;

    background: var(--background);

    display: flex;
    flex-direction: column;

    padding: 36px 28px 32px;

    z-index: 200;

    transform: translateX(100%);
    transition: transform 0.45s ease;
    visibility: hidden;
    overflow: hidden;
}

.mobile-menu.open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-menu-brand{
    align-self:center;

    display:flex;
    flex-direction:column;
    align-items:center;

    position:relative;
    z-index:2;
}

.mobile-menu-brand img{
    width:64px;
    height:auto;

    filter:brightness(0);
}

.mobile-menu-brand .brand{
    margin-top:4px;

    font-size:20px;
    line-height:1.1;
    text-align:center;

    color:var(--main-text);
}

.mobile-menu .close{
    position:absolute;
    top:32px;
    right:28px;

    background:none;
    border:none;

    color:var(--main-text);

    font-size:32px;
    line-height:1;

    cursor:pointer;

    z-index:3;
}

.mobile-menu-links{
    display:flex;
    flex-direction:column;
    gap:22px;

    margin-top:auto;
    margin-bottom:auto;
    padding-top:60px;

    position:relative;
    z-index:2;
}

.mobile-menu-links .mlink{
    font-family:var(--sans);
    font-weight:700;

    font-size:clamp(28px,8vw,34px);
    line-height:1.05;

    letter-spacing:-0.01em;
    text-transform:uppercase;

    color:var(--main-text);
}

.mobile-menu-illustration{
    position:absolute;
    right:-60px;
    bottom:56px;

    width:280px;

    opacity:.5;
    pointer-events:none;
    z-index:1;
}

.mobile-menu-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
    z-index:2;
}

.mobile-menu-lang{
    font-size:10px;
    letter-spacing:.16em;
    text-transform:uppercase;

    color:var(--main-text);
}

.mobile-menu-copy{
    font-size:10px;
    letter-spacing:.02em;

    color:var(--main-text);
    opacity:.55;
}

.azores{
    position:relative;
    padding:180px 0 120px;
    overflow:hidden;
    background:var(--background);
}

.azores .container{
    position:relative;
    max-width:1600px;
}

.thumb-row{
    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    margin-bottom:180px;

    position:relative;
    z-index:3;
}

.thumb-pair{
    display:flex;
    gap:14px;
}

.thumb{
    width:74px;
    height:98px;

    overflow:hidden;
    flex-shrink:0;
}

.thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.azores-sketch{
    position:absolute;

    top:140px;
    left:50%;

    transform:translateX(-50%);

    width:1080px;
    max-width:none;

    opacity:.055;

    z-index:1;
    pointer-events:none;
}

.azores-inner{
    position:relative;
    z-index:2;

    max-width:700px;
    margin:0 auto;

    text-align:center;
}

.eyebrow{
    font-family:'Helvetica Neue Cyr','Helvetica Neue',sans-serif;

    font-size:40px;
    font-weight:400;
    line-height:1;

    text-transform:uppercase;
    letter-spacing:0;

    color:var(--main-text);

    margin-bottom:0;
}

.azores h2{
    font-family:'Instrument Serif',serif;
    font-size:68px;
    font-weight:400;
    line-height:.85;

    color:var(--main-text);

    margin-top:8px;
    margin-bottom:56px;

    text-align:center;
}

.azores p{
    max-width:700px;

    margin:0 auto;

    font-family:'Helvetica Neue Cyr','Helvetica Neue',sans-serif;
    font-size:24px;
    font-weight:400;

    line-height:1;
    letter-spacing:-0.02em;

    text-align:center;

    color:var(--main-text);
}

@media(max-width:1024px){

    .azores{
        padding:140px 0 100px;
    }

    .thumb-row{
        margin-bottom:140px;
    }

    .azores-sketch{
        width:820px;
    }

    .azores h2{
        font-size:56px;
    }
}

@media(max-width:768px){

    .azores{
        padding:100px 0 80px;
    }

    .thumb-row{
        justify-content:center;
        gap:60px;

        flex-wrap:wrap;

        margin-bottom:80px;
    }

    .thumb-pair{
        gap:10px;
    }

    .thumb{
        width:60px;
        height:82px;
    }

    .azores-sketch{
        width:620px;
        top:40px;
    }

    .eyebrow{
        font-size:12px;
    }

    .azores h2{
        font-size:48px;
    }

    .azores p{
        max-width:340px;
        font-size:14px;
        line-height:1.7;
    }
}

.experiences{
    position:relative;
    padding:60px 0 120px;
}

.experiences .container{
    position:relative;
}

.visit-head{
    position:absolute;

    top:-70px;
    left:-8px;

    z-index:20;
}

.visit-illustration{
    width:120px;
    height:auto;

    opacity:.95;
}

.cards{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:10px;

    align-items:start;
}

.card{
    position:relative;

    background:var(--light-green);

    min-height:420px;

    padding:12px;

    display:flex;
    flex-direction:column;

    cursor:pointer;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        background .45s ease,
        box-shadow .45s ease;

    transform-origin:center center;
}

.card:hover{
    background:var(--green);

    transform:
        translateY(-18px)
        rotate(-4deg)
        scale(1.03);

    z-index:50;

    box-shadow:
        0 30px 60px rgba(52,43,38,.18);
}

.card:nth-child(2):hover{
    transform:
        translateY(-18px)
        rotate(-6deg)
        scale(1.04);
}

.card:hover h3,
.card:hover .desc,
.card:hover .price,
.card:hover .dur{
    color:var(--cream);
}

.card .slot{
    width:100%;
    height:260px;

    overflow:hidden;

    margin-bottom:16px;
}

.card .slot::after{
    display:none;
}

.card .slot img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:
        transform .8s ease,
        filter .45s ease;
}

.card:hover .slot img{
    transform:scale(1.05);
}

.card h3{
    font-family:var(--serif);
    font-size:34px;
    font-weight:400;
    line-height:1;

    color:var(--main-text);

    margin-bottom:14px;

    transition:color .45s ease;
}

.card .desc{
    font-family:var(--sans);
    font-size:12px;
    font-weight:400;

    line-height:1.15;

    color:var(--main-text);

    max-width:95%;

    transition:color .45s ease;
}

.card .meta{
    margin-top:auto;

    padding-top:34px;
}

.card .price,
.card .dur{
    font-family:var(--serif);
    font-size:18px;
    line-height:1.1;
    font-weight:400;

    color:var(--main-text);

    transition:color .45s ease;
}

.card .dur{
    margin-top:10px;
}

@media(max-width:1100px){

    .cards{
        grid-template-columns:1fr;
        gap:22px;
    }

    .card{
        min-height:auto;
    }

    .card .slot{
        height:320px;
    }

    .visit-head{
        position:relative;
        top:auto;
        left:auto;

        margin-bottom:24px;
    }
}

@media(max-width:768px){

    .experiences{
        padding:40px 0 80px;
    }

    .visit-illustration{
        width:95px;
    }

    .card{
        padding:8px;
    }

    .card .slot{
        height:230px;
    }

    .card h3{
        font-size:44px;
    }

    .card .desc{
        font-size:14px;
        line-height:1.3;
    }

    .card .price,
    .card .dur{
        font-size:24px;
    }

    .card:hover{
        transform:translateY(-8px);
    }
}

.heart{
    position:relative;
    padding:100px 0 80px;
    overflow:hidden;
}

.heart-title{
    text-align:center;
    margin-bottom:60px;
}

.heart-title .top{
    font-family:var(--serif);
    font-size:72px;
    line-height:1;
    color:var(--main-text);
}

.heart-title .bottom{
    margin-top:12px;
    font-size:28px;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:var(--main-text);
}

.heart-grid{
    display:grid;
    grid-template-columns:240px 560px 240px;
    justify-content:center;
    align-items:start;
    gap:60px;
    max-width:1200px;
    margin:0 auto;
}

.heart-col p{
    font-size:16px;
    line-height:1.15;
    color:var(--main-text);
}

.heart-col.left{
    padding-top:20px;
}

.heart-col.left p:first-child{
    margin-bottom:70px;
}

.heart-col.right{
    padding-top:110px;
}

.heart-photos{
    position:relative;
    width:560px;
    height:760px;
    margin:0 auto;
}

.heart-photos .slot{
    position:absolute;
    overflow:hidden;
}

.heart-photos .slot img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    display:block;

    transition:opacity .5s ease;
}

.img-bw{
    opacity:1;
    z-index:1;
}

.img-color{
    opacity:0;
    z-index:2;
}

.slot:hover .img-bw{
    opacity:0;
}

.slot:hover .img-color{
    opacity:1;
}

.p1{
    width:430px;
    height:540px;
    left:0;
    top:0;
}

.p3{
    width:300px;
    height:400px;
    right:0;
    bottom:0;
}

.corner{
    position:absolute;
    pointer-events:none;
    z-index:5;
}

.corner-tr{
    width:58px;

    top:-18px;
    left:390px;
}

.corner-bl{
    width:58px;

    left:-20px;
    top:520px;
}

.corner-br{
    width:72px;

    right:-18px;
    bottom:-18px;
}

.flowers{
    position:absolute;
    width:90px;
    top:445px;
    right:55px;
    color:var(--illustration);
}

.label-hand{
    position:absolute;

    font-family:var(--hand);
    font-size:22px;

    color:var(--main-text);

    white-space:nowrap;
    z-index:10;
}

.label-hand img{
    position:absolute;

    width:auto;
    height:auto;

    pointer-events:none;
}

.label-dad{
    left:-230px;
    top:415px;
}

.label-dad img{
    width:42px;

    left:150px;
    top:-12px;
}

.label-mariana{
    right:-140px;   
    bottom:165px;   
}

.label-mariana img{
    width:48px;
    right:48px;
    top:26px;
}

.calm{
    position:absolute;
    left:30px;
    bottom:140px;

    font-family:var(--serif);
    font-size:52px;
    line-height:.9;

    color:var(--main-text);
}

.heart-cta{
    text-align:center;
    margin-top:50px;
}

@media (max-width:1100px){

    .heart-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .heart-col{
        max-width:500px;
        margin:0 auto;
        text-align:center;
    }

    .heart-col.left,
    .heart-col.right{
        padding-top:0;
    }

    .heart-photos{
        max-width:560px;
        width:100%;
    }

    .calm{
        position:static;
        text-align:center;
        margin:50px 0;
    }
}

@media (max-width:768px){

    .heart{
        min-height:100svh;

        padding:60px 0 50px;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;

        overflow-x:hidden;
    }

    .heart-title{
        margin-bottom:32px;
        padding:0 20px;
    }

    .heart-title .top{
        font-size:40px;
    }

    .heart-title .bottom{
        font-size:20px;
        letter-spacing:.03em;
    }

    .heart-grid{
        display:flex;
        flex-direction:column;
        width:100%;
        max-width:100%;
        margin:0;
        padding:0 20px;
        gap:36px;

        overflow-x:hidden;
    }

    .heart-col{
        width:100%;
        max-width:100%;
        margin:0;
        padding-top:0;
        text-align:center;
    }

    .heart-col p{
        font-size:15px;
        line-height:1.5;
    }

    .heart-col.left p:first-child{
        margin-bottom:16px;
    }

    .heart-photos{
        position:relative;

        width:80vw;
        max-width:320px;
        height:clamp(330px,100vw,430px);

        margin:0 auto;
    }

    .heart-photos .slot{
        position:absolute;
        overflow:hidden;

        border-radius:var(--radius);
    }

    .heart-photos .slot img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .p1{
        left:6%;
        top:0;

        width:54vw;
        max-width:180px;
        height:auto;
        aspect-ratio:430/540;

        right:auto;
        bottom:auto;

        z-index:2;
    }

    .p3{
        right:4%;
        top:54%;

        width:32vw;
        max-width:112px;
        height:auto;
        aspect-ratio:3/4;

        left:auto;
        bottom:auto;

        z-index:3;
    }

    .corner{
        width:26px;
        z-index:1;
    }

    .corner-tr{
        top:-8px;
        left:auto;
        right:-8px;
    }

    .corner-bl{
        top:auto;
        bottom:-8px;
        left:-8px;
    }

    .corner-br{
        display:none;
    }

    .flowers{
        width:30px;
        top:calc(54% - 20px);
        right:6%;

        z-index:4;
    }

    .label-hand{
        font-size:13px;
        z-index:4;
    }

    .label-dad{
        left:6%;
        top:-20px;
        bottom:auto;
        right:auto;
    }

    .label-dad img{
        width:22px;
        left:52px;
        top:6px;

        transform:rotate(55deg);
    }

    .label-mariana{
        right:2%;
        bottom:-18px;
        top:auto;
        left:auto;
    }

    .label-mariana img{
        width:26px;
        right:8px;
        top:-22px;

        transform:rotate(-110deg);
    }

    .calm{
        position:static;
        text-align:center;
        margin:8px 0 0;
        font-size:32px;
        line-height:1;
    }

    .heart-cta{
        margin-top:32px;
    }

    .heart-cta .btn-solid{
        width:100%;
        max-width:320px;
    }
}

@media (max-width:480px){

    .heart{
        padding:50px 0 40px;
    }

    .heart-title{
        margin-bottom:26px;
    }

    .heart-title .top{
        font-size:32px;
    }

    .heart-title .bottom{
        font-size:17px;
    }

    .heart-col p{
        font-size:14px;
    }

    .calm{
        font-size:26px;
    }
}

  .btn-solid{display:inline-block;text-align:center;text-decoration:none;background:var(--dark-green);color:var(--cream);border:none;cursor:pointer;font-family:var(--sans);font-size:10px;letter-spacing:.2em;text-transform:uppercase;padding:14px 30px;border-radius:2px;transition:background .3s}
  .btn-solid:hover{background:var(--green)}

.location{
    width:100%;

    padding-top:180px; 
    margin-bottom:120px;
}

.location-map{
    position:relative;

    display:block;

    width:100%;
    height:760px;

    overflow:hidden;

    text-decoration:none;
}

.location-bg{
    width:100%;
    height:100%;

    object-fit:cover;
    display:block;

    transition:1s ease;
}

.location-map:hover .location-bg{
    transform:scale(1.03);
}

.farm-path{
    position:absolute;
    top:50%;
    left:50%;

    width:40%;

    transform:translate(-50%, -50%);

    opacity:.95;

    filter:brightness(0) invert(1);

    pointer-events:none;
}

.location-info{
    position:absolute;

    left:30px;
    bottom:30px;

    color:var(--background);

    z-index:5;
}

.location-info h3{
    font-family:var(--serif);
    font-weight:400;
    font-size:30px;

    line-height:60px;
    letter-spacing:0;

    margin:0 0 4px 0;
}

.location-info p{
    font-family:var(--serif);
    font-weight:400;
    font-size:28px;

    line-height:40px;
    letter-spacing:0;

    margin:0;
}

@media(max-width:768px){

    .location{
        padding-top:100px;
    }

    .location-map{
        height:500px;
    }

    .farm-path{
        width:90%;
    }

    .location-info{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .location-info h3{
        font-size:clamp(16px,5vw,22px);
        line-height:1.2;
    }

    .location-info p{
        font-size:clamp(12px,3.4vw,15px);
        line-height:1.3;
    }

}

.testi{
    padding:140px 0 120px;
    text-align:center;
    position:relative;
}

.cow-head{
    width:165px;
    color:var(--illustration);
    margin:0 auto 35px;
    display:block;
}

.testi h2{
    max-width:589px;

    margin:0 auto 120px;

    font-family:var(--serif);
    font-weight:400;

    font-size:68px;
    line-height:74px;

    letter-spacing:0;

    text-align:center;

    color:var(--main-text);
}

.testi-track{
    position:relative;
}

.shared{
    position:absolute;

    top:-12px;
    left:67%;

    transform:translateX(-50%) rotate(8deg);

    font-family:var(--hand);
    font-size:21px;

    color:var(--main-text);

    z-index:10;
}

.testi-cards{
    display:grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:8px;
}

.testi-card{
    background:#c1beaa;

    min-height:228px;

    padding:46px 28px 22px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    text-align:center;
}

.quote{
    font-family:var(--sans);

    font-size:13px;
    line-height:1.05;

    max-width:255px;

    margin:0 auto;

    color:var(--main-text);
}

.card-footer{
    margin-top:30px;
}

.who{
    font-family:var(--serif);

    font-size:18px;
    line-height:1;

    margin-bottom:6px;

    color:var(--main-text);
}

.stars{
    font-size:9px;
    letter-spacing:2px;

    color: #E0E3C4;
}

.testi-nav{
    margin-top:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;
}

.rule{
    width:170px;
    height:1px;

    background:#b4b19d;
}

.arrow-btn{
    width:28px;
    height:28px;

    border:none;

    background:#71755b;

    color:#E0E3C4;

    cursor:pointer;

    font-size:14px;
}

.arrow-btn:hover{
    opacity:.8;
}

@media(max-width:900px){

    .testi h2{
        font-size:44px;
    }

    .testi-cards{
        grid-template-columns:1fr;
    }

    .shared{
        top:-40px;
    }

    .rule{
        width:60px;
    }
}

.faq{
    position:relative;
    padding:82px 0 108px;
    overflow:hidden;
}

.faq-wrap{
    position:relative;
    width:100%;
    max-width:410px;
    margin:0 auto;
    z-index:2;
}

.faq-item{
    position:relative;
    z-index:10;
    margin-bottom:7px;
}

.faq-q{
    display:flex;
    align-items:center;
    justify-content:space-between;

    min-height:52px;

    padding:0 18px;

    background:#6D705B;

    color:var(--cream);

    cursor:pointer;

    font-family:var(--sans);
    font-size:12px;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:0;

    transition:background .3s ease;
}

.faq-q:hover{
    background:var(--dark-green);
}

.plus{
    font-size:29px;
    font-weight:300;
    line-height:1;
    transition:.3s;
}

.faq-item.open .plus{
    transform:rotate(45deg);
}

.faq-a{
    max-height:0;
    overflow:hidden;
    background:rgba(123,125,103,.12);
    transition:max-height .4s ease;
}

.faq-item.open .faq-a{
    max-height:180px;
}

.faq-a p{
    padding:18px;
    margin:0;

    color:var(--main-text);

    font-size:14px;
    line-height:1.6;
}

.faq-photo{
    position:absolute;
    z-index:1;
    overflow:hidden;
    pointer-events:none;
}

.faq-photo img{
    width:122%;
    height:122%;

    object-fit:cover;
    display:block;

    transform:translate(-11%,-11%);
}

.faq-photo.tr{
    width:96px;
    height:126px;

    top:-12px;
    right:-70px;

    transform:rotate(20deg);
}

.faq-photo.bl{
    width:118px;
    height:148px;

    left:-92px;
    bottom:-18px;

    transform:rotate(-19deg);
}

@media(max-width:900px){

    .faq-wrap{
        max-width:100%;
    }

}

@media(max-width:768px){

    .faq{
        padding:130px 0 150px;
    }

    .faq-q{
        min-height:48px;
        font-size:11px;
        padding:0 16px;
    }

    .plus{
        font-size:24px;
    }

    .faq-photo.tr{
        width:62px;
        height:82px;

        top:-34px;
        right:-14px;

        transform:rotate(13deg);
    }

    .faq-photo.bl{
        width:76px;
        height:96px;

        left:-14px;
        bottom:-30px;

        transform:rotate(-19deg);
    }

}

.contact{
    position: relative;

    padding: 120px 0 140px;

    overflow: hidden;
}

.contact-grid{
    position: relative;

    display: grid;

    grid-template-columns: 1fr 430px;

    align-items: start;

    gap: 80px;

    z-index: 5;
}

.contact-cow{
    position: absolute;

    left: 80px;
    bottom: -10px;

    width: 920px;

    opacity: .08; 

    pointer-events: none;
    z-index: 1;
}

.contact-head{
    justify-self: center;

    width: 520px;

    font-family: var(--serif);
    font-size: 42px;      

    line-height: .95;
    font-weight: 400;

    text-align: center;

    color: var(--main-text);

    margin: 0;

    transform: translateX(180px); 
}

.contact-head span{
    display: block;
}

.contact-head span:nth-child(3){
    margin-top: 12px;
}

.contact-head span:nth-child(4){
    margin-top: 8px;
}

.contact-form{
    width: 100%;
    max-width: 370px;

    margin-top: 120px; 

    justify-self: start;
}

.field{
    margin-bottom: 26px;
}

.field input{
    width:100%;

    padding: 0 0 10px;

    border:none;
    border-bottom:1px solid rgba(52,43,38,.35);

    background:transparent;

    font-size:14px;
}

.field input::placeholder{
    color: rgba(52,43,38,.8);

    font-size: 16px;

    letter-spacing: .02em;

    text-transform: uppercase;
}

.contact .btn-solid{
    margin-top: 18px;

    width: 165px;
    height: 46px;

    white-space: nowrap;
}

@media(max-width:1100px){

    .contact-grid{
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 0 20px;
    }

    .contact-head{
        width: auto;
        max-width: 500px;

        font-size: 52px;

        transform: none;
    }

    .contact-form{
        width: 100%;
        max-width: 500px;

        margin: 0 auto;

        justify-self: center;
    }

    .contact-cow{
        width: 520px;

        left: -100px;
    }
}

@media(max-width:768px){

    .contact{
        min-height: 0;

        padding: clamp(60px,10vh,80px) 0 48px;

        overflow-x: hidden;
    }

    .contact-grid{
        display: flex;
        flex-direction: column;
        align-items: center;

        width: 100%;
        max-width: 100%;

        gap: clamp(75px,20vh,120px);

        padding: 0 15px;

        overflow-x: hidden;
    }

    .contact-head{
        width: fit-content;
        max-width: 100%;

        font-size: clamp(27px,8vw,34px);
        line-height: .9;

        text-align: left;

        margin: 0;
    }

    .contact-head span{
        white-space: nowrap;
    }

    .contact-head span:nth-child(1){
        margin-left: 0;
    }

    .contact-head span:nth-child(2){
        margin-top: 2px;
        margin-left: 0;
    }

    .contact-head span:nth-child(3){
        margin-top: 10px;
        margin-left: clamp(60px,20vw,100px);
    }

    .contact-head span:nth-child(4){
        margin-top: 6px;
        margin-left: clamp(90px,30vw,150px);
    }

    .contact-cow{
        left: 50%;
        top: 40%;
        bottom: auto;
        transform: translateX(-50%);

        width: 88vw;
        max-width: 420px;
        height: auto;

        opacity: .15;
    }

    .contact-form{
        width: 100%;
        max-width: 100%;

        margin: 0;

        text-align: center;
    }

    .field{
        width: 100%;
        margin-bottom: 16px;

        text-align: left;
    }

    .field input{
        max-width: 100%;
        font-size: 13px;

        text-align: left;

        border-bottom-color: rgba(52,43,38,.3);
    }

    .field input::placeholder{
        font-size: clamp(8px,2.4vw,10px);
        letter-spacing: .14em;
    }

    .contact .btn-solid{
        margin-top: 40px;

        width: auto;
        height: auto;

        white-space: nowrap;
    }
}

.footer{
    margin-top:180px; 

    background:#58633B;

    color:#F4F1DE;
}

.footer-grid{
    display:grid;

    grid-template-columns:
        1.3fr
        .7fr
        .7fr
        auto;

    gap:120px;

    padding:70px 30px 90px;

    align-items:flex-start;
}

.footer-brand img{
    width:120px;
    margin-bottom:45px;
}

.footer-socials{
    grid-column:1;

    display:flex;
    gap:14px;
}

.footer-socials a{
    width:42px;
    height:42px;

    border-radius:50%;

    background:var(--background);

    color:var(--main-text);

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:20px;

    transition:.3s;
}

.footer-socials a:hover{
    transform:translateY(-3px);
}

.foot-col h4{
    font-family:var(--serif);
    font-size:42px;
    font-weight:400;

    margin-bottom:26px;
}

.foot-col a,
.foot-col p{
    display:block;

    font-size:12px;
    text-transform:uppercase;

    color:#F4F1DE;

    text-decoration:none;

    margin-bottom:10px;

    opacity:.95;
}

.foot-book{
    display:flex;
    justify-content:flex-end;
}

.foot-book .btn-solid{
    min-width:120px;
}

.footer-bottom{
    border-top:1px solid rgba(244,241,222,.15);

    padding:18px 0;
}

.footer-bottom-inner{
    display:flex;

    justify-content:space-between;
    align-items:center;

    gap:20px;
}

.footer-bottom span,
.footer-bottom a{
    color:#F4F1DE;

    text-decoration:none;

    font-size:12px;
}

.footer-credit a{
    font-weight:600;
}

.footer-credit{
    opacity:.9;
}

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:60px;
    }

    .foot-book{
        justify-content:flex-start;
    }

}

@media(max-width:768px){

    /* Flatten the grid/bottom-bar wrapper boxes so every link becomes a
       direct grid item of .footer. This lets the legal links (originally
       markup'd inside .footer-bottom) be placed in the Menu column below
       the nav links, without moving anything in the HTML and without
       touching desktop, which never enters this media query. */
    .footer-grid,
    .foot-col,
    .footer-bottom,
    .footer-bottom-inner{
        display:contents;
    }

    .footer{
        display:grid;
        grid-template-columns:1fr 1fr;
        column-gap:34px;

        margin-top:60px;

        height:auto;
        min-height:0;

        overflow-x:hidden;

        padding:27px 23px 20px;
    }

    .footer-brand{
        grid-column:1;
        grid-row:1;
    }

    .footer-brand img{
        width:clamp(110px,28vw,128px);
        max-width:100%;
        height:auto;

        margin-bottom:0;
    }

    .foot-book{
        grid-column:2;
        grid-row:1;

        justify-self:end;
        align-self:start;
    }

    .foot-book .btn-solid{
        width:95px;
        height:37px;

        min-width:auto;
        padding:0;

        display:inline-flex;
        align-items:center;
        justify-content:center;

        background:var(--cream);
        color:var(--dark-green);

        font-size:12px;
        border-radius:3px;
    }

    .footer-socials{
        grid-column:1 / -1;
        grid-row:2;

        margin-top:50px;

        justify-content:flex-start;
        gap:7px;
    }

    .footer-socials a{
        width:44px;
        height:44px;
        flex:0 0 44px;

        font-size:17px;

        color:var(--dark-green);
    }

    /* Menu column: heading, the 4 nav links, then the 4 legal links
       immediately below them, same column/width/typography. */
    .footer-socials + .foot-col > h4{
        grid-column:1;
        grid-row:3;

        margin-top:94px;
    }

    .footer-socials + .foot-col > a:nth-of-type(1){ grid-column:1; grid-row:4; }
    .footer-socials + .foot-col > a:nth-of-type(2){ grid-column:1; grid-row:5; }
    .footer-socials + .foot-col > a:nth-of-type(3){ grid-column:1; grid-row:6; }
    .footer-socials + .foot-col > a:nth-of-type(4){ grid-column:1; grid-row:7; }

    .footer-bottom-inner > a:nth-of-type(1){ grid-column:1; grid-row:8; margin-top:16px; }
    .footer-bottom-inner > a:nth-of-type(2){ grid-column:1; grid-row:9; }
    .footer-bottom-inner > a:nth-of-type(3){ grid-column:1; grid-row:10; }
    .footer-bottom-inner > a:nth-of-type(4){ grid-column:1; grid-row:11; }

    /* Contacts column: heading + address/email/phone, unchanged. */
    .footer-socials + .foot-col + .foot-col > h4{
        grid-column:2;
        grid-row:3;

        margin-top:94px;
    }

    .footer-socials + .foot-col + .foot-col > p:nth-of-type(1){ grid-column:2; grid-row:4; }
    .footer-socials + .foot-col + .foot-col > p:nth-of-type(2){ grid-column:2; grid-row:5; }
    .footer-socials + .foot-col + .foot-col > p:nth-of-type(3){ grid-column:2; grid-row:6; }

    .foot-col h4{
        font-size:clamp(28px,8.5vw,36px);
        line-height:1;

        margin-bottom:22px;
    }

    .foot-col a,
    .foot-col p,
    .footer-bottom-inner > a{
        font-size:clamp(12px,3.3vw,15px);
        line-height:1.42;

        margin-bottom:4px;
    }

    .foot-col a[href^="mailto:"]{
        text-transform:none;
    }

    /* Bottom of footer: copyright + credit only, full width, below both columns. */
    .footer-bottom-inner > span:not(.footer-credit){
        grid-column:1 / -1;
        grid-row:12;

        margin-top:76px;
        padding-top:19px;

        border-top:1px solid rgba(244,241,222,.15);
    }

    .footer-bottom-inner > .footer-credit{
        grid-column:1 / -1;
        grid-row:13;

        margin-top:6px;
    }

    .footer-bottom-inner > span,
    .footer-bottom-inner > .footer-credit{
        font-size:clamp(12px,3.3vw,15px);
        line-height:1.45;
    }
}

@media(max-width:350px){

    .footer-brand img{
        width:100px;
    }

    .footer-socials a{
        width:38px;
        height:38px;
        flex-basis:38px;
    }

    .foot-col h4{
        font-size:26px;
    }

    .footer-socials + .foot-col > h4,
    .footer-socials + .foot-col + .foot-col > h4{
        margin-top:70px;
    }
}

.about-hero{
    position:relative;

    width:100%;
    height:100vh;
    min-height:820px;

    overflow:hidden;

    display:flex;
    align-items:flex-end;
    justify-content:center;
}

.about-hero-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center;

    filter:
        brightness(.62)
        saturate(.82)
        contrast(1.05);

    z-index:1;
}

.about-hero .overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,
        rgba(0,0,0,.12) 0%,
        rgba(0,0,0,.08) 40%,
        rgba(0,0,0,.20) 100%
    );

    z-index:2;
}

.about-hero .container{
    position:relative;
    z-index:3;

    width:100%;
}

.about-hero-content{
    width:100%;

    padding-bottom:72px;

    text-align:center;
}

.about-hero h1{
    font-family:var(--sans);
    font-weight:700;

    font-size:clamp(72px,8vw,132px);

    line-height:.88;

    letter-spacing:-.06em;

    text-transform:uppercase;

    color:var(--cream);

    margin:0;
}

.about-hero h2{
    margin:8px 0 0;

    font-family:var(--serif);
    font-weight:400;

    font-size:clamp(26px,2vw,36px);

    line-height:1;

    color:var(--cream);
}

.hero-location{
    display:block;

    margin-top:46px;

    font-family:var(--hand);

    font-size:24px;

    color:var(--cream);

    transform:rotate(-2deg);
}

@media (max-width:900px){

    .about-hero{
        min-height:720px;
    }

    .about-hero-content{
        padding-bottom:48px;
    }

    .hero-location{
        margin-top:34px;
        font-size:20px;
    }

}

@media (max-width:768px){

    .about-hero{
        min-height:640px;
    }

    .about-hero h1{
        font-size:clamp(54px,14vw,82px);
    }

    .about-hero h2{
        font-size:22px;
    }

    .hero-location{
        font-size:18px;
        margin-top:28px;
    }

}

.about-intro{
    padding:160px 0;
    position:relative;
}

.intro-text{
    position: relative;
    width: 760px;
    height: 700px;
    margin: 0 auto;

    left: 80px;   
}

.intro-top{

    position:absolute;

    width:734px;

    left:35%;
    transform:translateX(-50%);

    top:0;

    z-index:2;
}

.intro-title{

    margin:0;

    font-family:var(--sans);
    font-size:68px;
    font-weight:550;
    line-height:68px;
    letter-spacing:-0.02em;

    color:var(--main-text);
}

.intro-subtitle{
    margin: 22px 0 18px 230px;

    font-family: var(--serif);
    font-size: 80px;
    font-weight: 400;
    line-height: 68px;
}

.intro-message{
    margin: 0;

    position: relative;
    left: 230px;   

    font-family: var(--sans);
    font-size: 68px;
    font-weight: 550;
    line-height: 68px;
    letter-spacing: -0.02em;

    width: 740px;
    max-width: none;
    white-space: nowrap;
}

.intro-photo{
    position: absolute;

    top: 290px;
    left: 300px;

    width: 170px;
    height: auto;

    background: transparent;
    padding: 0;
    border: 0;

    overflow: visible;

    transform: rotate(14deg);

    box-shadow: 0 24px 40px rgba(0,0,0,.15);

    z-index: 1;
}

.intro-photo img{
    display: block;
    width: 100%;
    height: auto;

    background: transparent;
}

.intro-bottom{

    position:absolute;

    left:0;
    top:493px;

    width:806px;

    margin:0;

    line-height:68px;

    color:var(--main-text);

    z-index:2;
}

.intro-bottom strong{

    font-family:var(--sans);
    font-size:68px;
    font-weight:550;
    letter-spacing:-0.02em;
}

.intro-bottom span{

    font-family:var(--serif);
    font-size:60px;
    font-weight:400;
}

.intro-bottom .ib-w1,
.intro-bottom .ib-w5{
    font-family:var(--serif);
    font-size:60px;
    font-weight:400;
}

.intro-bottom .ib-w2,
.intro-bottom .ib-w3,
.intro-bottom .ib-w4{
    font-family:var(--sans);
    font-size:68px;
    font-weight:550;
    letter-spacing:-0.02em;
}

@media(max-width:768px){

.about-hero{

    min-height:720px;
}

.about-hero h1{

    font-size:52px;
}

.about-hero h2{

    font-size:24px;
}

.hero-location{

    margin-top:34px;
}

.about-intro{

    padding:90px 0;
}

.intro-text{

    position:relative;
    width:100%;
    max-width:320px;
    height:auto;
    min-height:auto;
    left:auto;

    margin:0 auto;

    display:block;
}

.intro-top{

    position:relative;
    width:100%;
    max-width:100%;
    left:auto;
    top:auto;
    transform:none;

    text-align:right;

    z-index:2;
}

.intro-title{

    font-family:var(--sans);
    font-weight:700;

    font-size:clamp(26px,7.5vw,32px);
    line-height:1.15;

    color:#33322E;
}

.intro-subtitle{

    margin:0;

    font-family:var(--serif);
    font-weight:400;

    font-size:clamp(26px,7.5vw,32px);
    line-height:1.15;

    color:#33322E;
}

.intro-message{

    position:relative;
    left:auto;

    width:100%;
    max-width:100%;

    line-height:1.15;

    text-align:right;

    white-space:normal;
}

.im-l1,
.im-l2,
.im-l3{
    display:block;

    font-family:var(--sans);
    font-weight:700;

    font-size:clamp(26px,7.5vw,32px);

    color:#33322E;
}

.im-l3{
    text-align:left;
}

.im-br{
    display:none;
}

.intro-photo{

    position:relative;

    left:50%;
    top:auto;

    width:150px;

    margin:-16px 0 -20px;

    transform:translateX(-50%) rotate(10deg);

    box-shadow:0 18px 34px rgba(0,0,0,.28);

    z-index:1;
}

.intro-bottom{

    position:relative;
    left:auto;
    top:auto;

    width:100%;
    max-width:100%;

    margin:0;

    line-height:1.15;

    text-align:right;

    z-index:2;
}

.ib-line{
    display:inline;
}

.intro-bottom .ib-w1,
.intro-bottom .ib-w3,
.intro-bottom .ib-w5{
    font-family:var(--sans);
    font-weight:700;

    font-size:clamp(17px,5.6vw,22px);

    color:#33322E;
}

.intro-bottom .ib-w2,
.intro-bottom .ib-w4{
    font-family:var(--serif);
    font-weight:400;

    font-size:clamp(17px,5.6vw,22px);

    color:#33322E;
}

}

.values{

    position:relative;

    padding:110px 0 250px;

    overflow:hidden;
}

.values h3{

    text-align:center;

    font-family:var(--sans);
    font-size:19px;
    font-weight:400;

    letter-spacing:.04em;
    text-transform:uppercase;

    color:var(--main-text);

    margin-bottom:90px;
}

.values-grid{

    position:relative;

    width:min(1450px,94vw);
    aspect-ratio:1180/760;

    margin:0 auto;
}

.value{

    position:absolute;
}

.photo-stack{

    position:relative;

    display:inline-block;

    width:100%;
    height:100%;

    z-index:2;
}

.photo-stack .bg{

    position:absolute;

    display:block;

    object-fit:cover;

    border-radius:4px;

    z-index:1;
}

.photo-stack img{

    position:absolute;
    inset:0;

    display:block;

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:4px;

    z-index:2;
}

.value-1{

    top:6.6%;
    left:12.1%;

    width:16.1%;
    height:12.4%;
}

.value-1 .bg{

    width:95%;
    height:108%;

    top:-15%;
    right:-18%;
}

.value-1 .hand-arrow{

    position:absolute;

    top:119%;
    left:57%;
}

.value-2{

    top:19.8%;
    right:10.7%;

    width:14.4%;
    height:12.5%;
}

.value-2 .bg{

    width:97%;
    height:97%;

    left:-11%;
    top:17%;
}

.value-2 .hand-arrow{

    position:absolute;

    right:-32%;
    top:-58%;
}

.value-3{

    left:18.5%;
    top:46.8%;

    width:16.4%;
    height:12.6%;
}

.value-3 .bg{

    width:85%;
    height:96%;

    left:-9%;
    top:-19%;
}

.value-3 .hand-arrow{

    position:absolute;

    left:-36%;
    top:-68%;
}

.value-4{

    right:17.1%;
    bottom:7.7%;

    width:16.1%;
    height:12.6%;
}

.value-4 .bg{

    width:95%;
    height:106%;

    top:-17%;
    right:-17%;
}

.value-4 .hand-arrow{

    position:absolute;

    left:20%;
    top:155%;
}

.hand-arrow{

    font-family:var(--serif);

    font-size:clamp(14px,2.6vw,37px);
    font-weight:400;

    line-height:.95;

    color:var(--main-text);

    white-space:nowrap;
}

.value-arrow{

    position:absolute;

    height:auto;

    pointer-events:none;

    z-index:1;
}

.value-1 .value-arrow{

    width:20%;

    top:102%;
    left:32%;

    transform:rotate(-6deg);
}

.value-2 .value-arrow{

    width:12%;

    top:-22%;
    right:-18%;

    transform:rotate(4deg);
}

.value-3 .value-arrow{

    width:14%;

    top:-36%;
    left:-20%;

    transform:rotate(-4deg);
}

.value-4 .value-arrow{

    width:13%;

    top:104%;
    left:12%;

    transform:rotate(6deg);
}

.values-copy{

    position:absolute;

    left:1.7%;
    bottom:3.4%;

    width:16.1%;
    min-width:130px;

    font-size:clamp(11px,1.3vw,17px);
    line-height:1.4;

    color:var(--main-text);
}

.value-desc{

    position:absolute;

    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;

    clip:rect(0,0,0,0);
    white-space:nowrap;

    border:0;
}

.values-nav{
    display:none;
}

@media(max-width:768px){

    .values{
        padding:70px 0 80px;
    }

    .values h3{
        margin-bottom:50px;
    }

    .values-grid{
        position:relative;

        width:100%;
        aspect-ratio:auto;

        display:flex;
        gap:0;

        overflow-x:auto;
        overflow-y:visible;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;

        padding-bottom:0;

        margin:0;
    }

    .values-grid::-webkit-scrollbar{
        display:none;
    }

    .value-1,
    .value-2,
    .value-3,
    .value-4{
        position:relative;

        top:auto;
        left:auto;
        right:auto;
        bottom:auto;

        flex:0 0 100%;
        width:100%;
        max-width:none;
        height:auto;

        scroll-snap-align:center;
        scroll-snap-stop:always;

        display:flex;
        flex-direction:column;
        align-items:center;

        padding:0 6px;
    }

    .value-1 .bg,
    .value-2 .bg,
    .value-3 .bg,
    .value-4 .bg{
        display:none;
    }

    .value-arrow{
        display:none;
    }

    .photo-stack{
        position:relative;

        display:block;

        width:100%;
        height:auto;

        background:var(--dark-green);
        border-radius:16px;

        padding-top:14px;

        overflow:hidden;
    }

    .photo-stack img{
        position:static;
        inset:auto;

        display:block;

        width:100%;
        height:190px;

        max-width:100%;
        max-height:190px;

        object-fit:cover;
        object-position:center;

        border-radius:16px;
    }

    .value-1 .hand-arrow,
    .value-2 .hand-arrow,
    .value-3 .hand-arrow,
    .value-4 .hand-arrow{
        position:static;

        top:auto;
        left:auto;
        right:auto;
        bottom:auto;

        display:block;

        width:100%;

        margin-top:22px;

        font-size:clamp(28px,7vw,34px);
        text-align:center;
        white-space:normal;
    }

    .value-desc{
        position:static;

        width:100%;
        max-width:320px;
        height:auto;
        padding:0;
        margin:10px auto 0;
        overflow:visible;

        clip:auto;
        white-space:normal;

        font-family:var(--sans);
        font-size:14px;
        line-height:1.5;
        text-align:center;
        color:var(--main-text);
        opacity:.8;
    }

    .values-nav{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:14px;

        margin-top:24px;
    }

    .values-nav-btn{
        display:flex;
        align-items:center;
        justify-content:center;

        width:44px;
        height:44px;

        background:var(--dark-green);
        color:var(--cream);

        border:none;
        border-radius:8px;

        cursor:pointer;
    }

    .values-nav-btn svg{
        width:20px;
        height:20px;
    }

    .values-copy{
        position:static;

        left:auto;
        bottom:auto;

        width:100%;
        max-width:320px;
        min-width:0;

        margin:34px auto 0;

        text-align:center;
    }

}

.story-section{

    padding:140px 0;

    position:relative;
}

.story-quote{

    max-width:980px;

    margin:0 auto 70px;

    text-align:center;

    font-family:var(--serif);

    font-size:62px;

    line-height:.95;

    font-weight:400;

    color:var(--main-text);

    font-style:normal;
}

.story-copy{

    max-width:560px;

    margin:0 auto 90px;
}

.story-copy p{

    font-size:16px;

    line-height:1.3;

    color:var(--main-text);

    margin-bottom:22px;
}

.story-gallery{

    display:grid;

    grid-template-columns:300px 1fr;

    align-items:stretch;

    gap:18px;

    height:420px;

    margin-top:56px;
}

.story-small{

    position:relative;

    height:100%;
}

.story-small img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}

.story-big{

    height:100%;
}

.story-big img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}

.hand-title{

    position:absolute;

    left:0;

    top:-40px;

    font-family:var(--hand);

    font-size:22px;

    color:var(--main-text);

    transform:rotate(-8deg);
}

@media(max-width:1000px){

.story-gallery{

    grid-template-columns:1fr;

    height:auto;

    margin-top:70px;

}

.story-small{

    max-width:320px;

    height:280px;

}

.story-big{

    height:340px;

}

.story-quote{

    font-size:46px;

}

.story-copy{

    max-width:100%;
}

}

@media(max-width:700px){

.story-section{

    padding:90px 0;

}

.story-quote{

    font-size:34px;

}

.story-copy p{

    font-size:15px;

}

.hand-title{

    position:relative;

    display:block;

    margin-bottom:14px;

    left:0;

    top:0;

    transform:none;
}

}

@media(max-width:768px){

.story-small{

    display:none;

}

.story-big{

    position:static;

    top:auto;
    left:auto;
    right:auto;
    bottom:auto;

    width:100%;
    height:auto;

    margin:0;

}

.story-big img{

    width:100%;
    height:auto;

}

}

.discover-section{

    padding:180px 0;

    position:relative;
}

.discover-content{

    position:relative;

    max-width:520px;

    margin:0 auto;

    text-align:center;
}

.discover-eyebrow{

    display:block;

    font-family:var(--sans);

    font-size:17px;

    font-weight:400;

    color:var(--main-text);

    text-transform:uppercase;

    letter-spacing:0;

    margin-bottom:2px;
}

.discover-content h2{

    font-family:var(--serif);

    font-size:66px;

    font-weight:400;

    line-height:1;

    color:var(--main-text);

    margin-bottom:28px;
}

.discover-content p{

    max-width:430px;

    margin:0 auto;

    font-size:15px;

    line-height:1.25;

    color:var(--main-text);

    position:relative;

    z-index:2;
}

.discover-sketch{

    position:absolute;

    width:360px;

    left:50%;

    top:50%;

    transform:translate(-50%,-48%);

    opacity:.08;

    pointer-events:none;

    z-index:1;
}

@media(max-width:768px){

.discover-section{

    padding:110px 0;
}

.discover-content h2{

    font-size:46px;
}

.discover-eyebrow{

    font-size:15px;
}

.discover-content p{

    font-size:14px;
}

.discover-sketch{

    width:250px;
}

}

.closing-message{

    padding:170px 0 170px;

}

.closing-message p{

    max-width:1120px;

    margin:0 auto;

    text-align:center;

    font-family:var(--serif);

    font-size:68px;

    font-weight:400;

    line-height:1;

    letter-spacing:0;

    color:var(--main-text);

}

@media(max-width:1200px){

    .closing-message p{

        font-size:56px;

        max-width:900px;

    }

}

@media(max-width:900px){

    .closing-message{

        padding:120px 0;

    }

    .closing-message p{

        font-size:42px;

        max-width:700px;

    }

}

@media(max-width:600px){

    .closing-message{

        padding:90px 0;

    }

    .closing-message p{

        font-size:30px;

        line-height:1.1;

    }

}

.exp-hero{
    min-height: 92vh;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.hero-copy{
    transform: translateY(105px);
}

.hero-top{
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: var(--main-text);

    margin: 0 0 12px;
}

.exp-hero h1{
    font-family: var(--sans);
    font-size: 120px;
    font-weight: 700;
    line-height: .9;
    letter-spacing: -0.04em;
    text-transform: uppercase;

    color: var(--main-text);

    margin: 0 0 12px;
}

.hero-hand{
    display: block;

    font-family: var(--hand);
    font-size: 28px;
    line-height: 1;

    color: var(--main-text);

    transform: rotate(-4deg);
}

@media(max-width:1024px){

    .exp-hero h1{
        font-size:clamp(64px,10vw,96px);
    }

    .hero-top{
        font-size:32px;
    }
}

@media(max-width:768px){

    .exp-hero{
        min-height:70vh;

        padding:0 20px;
    }

    .hero-copy{
        transform:translateY(60px);
    }

    .hero-top{
        font-size:clamp(18px,5vw,24px);
    }

    .exp-hero h1{
        font-size:clamp(40px,13vw,60px);
        line-height:.95;
    }

    .hero-hand{
        margin-top:14px;
        font-size:20px;
    }
}

.light-header .brand-logo img{
    filter:brightness(0);
}

.light-header .brand{
    color:var(--main-text);
}

.light-header nav.main a{
    color:var(--main-text);
}

.light-header .lang{
    color:var(--main-text);
}

.light-header .burger span{
    background:var(--main-text);
}

.light-header header.scrolled .brand-logo img{
    filter:none;
}

.light-header header.scrolled .brand,
.light-header header.scrolled nav.main a,
.light-header header.scrolled .lang{
    color:var(--cream);
}

.light-header header.scrolled .burger span{
    background:var(--cream);
}

.light-header .btn-book{
    background:var(--dark-green);
    color:var(--cream);
}

.light-header .btn-book:hover{
    background:var(--main-text);
    color:var(--cream);
}

.policies-hero{
    padding:220px 0 120px;
    text-align:center;
}

.policies-hero-eyebrow{
    font-family:var(--serif);
    font-style:italic;
    font-size:clamp(18px,1.8vw,22px);
    color:var(--main-text);
    margin-bottom:4px;
}

.policies-hero h1{
    font-family:var(--sans);
    font-weight:800;
    font-size:clamp(48px,7vw,96px);
    line-height:.95;
    letter-spacing:.01em;
    color:var(--main-text);
}

.policies-hero-photo{
    width:110px;
    height:110px;
    object-fit:cover;
    border-radius:4px;
    margin:-14px auto 0;
    transform:rotate(18deg);
    box-shadow:0 12px 30px rgba(52,43,38,.18);
    position:relative;
    z-index:-1;
}

@media(max-width:900px){
    .policies-hero{
        padding:160px 0 90px;
    }

    .policies-hero-photo{
        width:88px;
        height:88px;
    }
}

.policy-list{
    padding:60px 0 120px;
}

.policy-note{
    font-family:var(--sans);
    font-size:14px;
    color:var(--main-text);
    opacity:.8;
    margin-bottom:8px;
}

.policy-row{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:start;

    padding:34px 0;
    border-top:1px solid rgba(52,43,38,.12);
}

.policy-row:last-child{
    border-bottom:1px solid rgba(52,43,38,.12);
}

.policy-title{
    font-family:var(--serif);
    font-weight:400;
    font-size:clamp(22px,2.2vw,28px);
    color:var(--main-text);
}

.policy-desc p{
    font-family:var(--sans);
    font-size:13px;
    line-height:1.7;
    color:var(--main-text);
    opacity:.8;
}

.policy-desc p + p{
    margin-top:2px;
}

@media(max-width:700px){
    .policy-row{
        grid-template-columns:1fr;
        gap:10px;
        padding:26px 0;
    }
}

.contact-info{
    padding:220px 0 100px;
}

.contact-info-head{
    text-align:center;
    margin-bottom:70px;
}

.contact-info-head h1{
    font-family:var(--sans);
    font-weight:700;
    font-size:clamp(44px,6vw,80px);
    line-height:1;
    letter-spacing:.01em;
    color:var(--main-text);
}

.contact-info-sub{
    font-family:var(--serif);
    font-style:italic;
    font-size:clamp(19px,2vw,26px);
    color:var(--main-text);
    margin-top:14px;
}

.contact-info-icon{
    width:52px;
    height:auto;
    margin:28px auto 0;
    color:var(--main-text);
}

.contact-info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    max-width:1100px;
    margin:0 auto;
}

.contact-info-notes p{
    max-width:340px;
    margin-bottom:18px;
    font-size:15px;
    line-height:1.6;
    color:var(--main-text);
}

.contact-info-notes p:last-child{
    margin-bottom:0;
}

.contact-info-details .detail-row{
    margin-bottom:24px;
}

.contact-info-details .detail-row:last-child{
    margin-bottom:0;
}

.contact-info-details .detail-label{
    display:block;
    font-size:13px;
    letter-spacing:.02em;
    color:var(--illustration);
    margin-bottom:4px;
}

.contact-info-details strong{
    display:block;
    font-weight:600;
    font-size:16px;
    color:var(--main-text);
}

.contact-info-details strong a{
    text-decoration:none;
}

.contact-info-details strong a:hover{
    text-decoration:underline;
}

@media(max-width:900px){
    .contact-info{
        padding:160px 0 70px;
    }

    .contact-info-grid{
        grid-template-columns:1fr;
        gap:36px;
    }

    .contact-info-notes p{
        max-width:none;
    }
}

.experience-list{

    border-top:1px solid rgba(52,43,38,.08);

}

.experience-item{

    padding:82px 0 82px;

    border-bottom:1px solid rgba(52,43,38,.08);

}

.experience-grid{

    width:min(1380px,92%);

    margin:0 auto;

    display:grid;

    grid-template-columns:290px 240px 1fr;

    column-gap:120px;

    align-items:start;

}

.experience-title{

    min-height:520px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}

.experience-title h2{

    font-family:var(--serif);

    font-size:68px;

    font-weight:400;

    line-height:1;

    color:var(--main-text);

}

.experience-info{

    padding-top:8px;

}

.row{

    display:grid;

    grid-template-columns:110px 1fr;

    column-gap:26px;

    margin-bottom:12px;

}

.row span{

    font-family:var(--sans);

    font-size:18px;

    color:#86836F;

}

.row strong{

    font-family:var(--sans);

    font-size:18px;

    font-weight:400;

    color:var(--main-text);

}

.times{

    display:flex;

    flex-direction:column;

    gap:8px;

}

.experience-content{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}

.experience-content p{

    max-width:420px;

    margin-bottom:42px;

    font-size:18px;

    line-height:1.1;

    color:var(--main-text);

}

.experience-content img{

    width:100%;

    max-width:520px;

    aspect-ratio:1.42;

    object-fit:cover;

    display:block;

}

.experience-title .btn-solid{

    width:200px;

    justify-content:center;

}

@media(max-width:1100px){

.experience-grid{

    grid-template-columns:1fr;

    row-gap:40px;

}

.experience-title{

    display:contents;

}

.experience-title h2{

    order:1;

    font-size:54px;

}

.experience-info{

    order:2;

}

.experience-content{

    order:3;

}

.experience-content img{

    max-width:100%;

}

.experience-title .btn-solid{

    order:4;

}

}

@media(max-width:768px){

.experience-item{

    padding:70px 0;

}

.experience-title h2{

    font-size:42px;

}

.row{

    grid-template-columns:90px 1fr;

}

.row span,
.row strong{

    font-size:16px;

}

.experience-content p{

    font-size:16px;

}

}

.visit-info{

    padding:140px 0 170px;

}

.visit-gallery{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:70px;

}

.gallery-group{

    display:flex;

    gap:12px;

}

.gallery-group img{

    width:78px;

    height:118px;

    object-fit:cover;

    display:block;

}

.visit-heading{

    text-align:center;

    margin-bottom:70px;

}

.visit-heading span{

    display:block;

    font-family:var(--sans);

    font-size:28px;

    color:var(--main-text);

    margin-bottom:-8px;

}

.visit-heading h2{

    font-family:var(--serif);

    font-size:64px;

    font-weight:400;

    color:var(--main-text);

}

.visit-list{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visit-row{
    display: flex;
    align-items: center;
    gap: 14px;

    width: fit-content;
    margin-bottom: 14px;
}

.visit-row img{
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: .95;
}

.visit-row p{
    margin: 0;

    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;

    color: var(--main-text);
}

@media(max-width:900px){

    .visit-gallery{

        justify-content:center;

        margin-bottom:40px;

    }

    .gallery-group.left,
    .gallery-group.center{

        display:none;

    }

    .gallery-group.right{

        gap:78px;

    }

    .gallery-group.right img{

        width:88px;
        height:132px;

    }

}

@media(max-width:768px){

    .visit-info{

        padding:90px 0;

    }

    .visit-heading span{

        font-size:22px;

    }

    .visit-heading h2{

        font-size:48px;

    }

    .visit-row p{

        font-size:16px;
        text-align:center;

    }

}

.gallery-hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    background:#000;

}

.gallery-slider{

    width:100%;

    height:100%;

    position:relative;

}

.gallery-slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity .8s ease;

}

.gallery-slide.active{

    opacity:1;

}

.gallery-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.gallery-hand{

    position:absolute;

    left:150px;

    top:170px;

    font-family:var(--hand);

    font-size:24px;

    color:var(--cream);

    transform:rotate(-8deg);

    z-index:5;

}

.gallery-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:46px;

    height:46px;

    border:none;

    cursor:pointer;

    background:rgba(224,227,196,.92);

    color:var(--dark-green);

    font-size:22px;

    transition:.3s;

    z-index:10;

}

.gallery-arrow:hover{

    background:#fff;

}

.gallery-arrow.prev{

    left:20px;

}

.gallery-arrow.next{

    right:20px;

}

.gallery-progress{

    position:absolute;

    left:50%;

    bottom:30px;

    transform:translateX(-50%);

    width:170px;

    height:1px;

    background:rgba(255,255,255,.25);

}

.gallery-progress span{

    display:block;

    width:50%;

    height:100%;

    background:#E0E3C4;

}

@media(max-width:900px){

.gallery-hand{

    left:30px;

    top:120px;

}

.gallery-progress{

    width:120px;

}

.gallery-arrow{

    width:40px;

    height:40px;

}

}