:root {
    --background: #0c0d0e;
    --foreground: #f2eee5;
    --card: #151617;
    --card-foreground: #f2eee5;
    --popover: #151617;
    --popover-foreground: #f2eee5;
    --primary: #d5b676;
    --primary-foreground: #171410;
    --secondary: #202020;
    --secondary-foreground: #f2eee5;
    --muted: #222;
    --muted-foreground: #b5b1aa;
    --accent: #242119;
    --accent-foreground: #edddbb;
    --destructive: #ff9292;
    --border: #ffffff20;
    --input: #ffffff30;
    --ring: #d5b676;
    --radius: .4rem
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: Arial,Helvetica,sans-serif;
    font-size: 16px;
    line-height: 1.6
}

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

button,input {
    font: inherit
}

button,a {
    -webkit-tap-highlight-color: transparent
}

button {
    cursor: pointer
}

a:focus-visible,button:focus-visible,input:focus-visible {
    outline: 2px solid #e0c58e;
    outline-offset: 5px
}

header {
    height: 100px;
    max-width: 1440px;
    margin: auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    gap: 22px
}

.brand img {
    width: 155px;
    height: 84px;
    object-fit: contain
}

nav {
    display: flex;
    gap: 36px;
    font-size: 14px;
    color: #d3cec4
}

nav a:hover {
    color: var(--primary)
}

.gold-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: #dbc18c;
    color: #211b11;
    padding: 16px 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #dbc18c;
    transition: background .2s
}

.gold-button:hover {
    background: #eed6a5
}

.gold-button.small {
    padding: 12px 18px;
    gap: 18px
}

.hero {
    max-width: 1440px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 610px;
    padding: 34px 5% 42px;
    gap: 50px
}

.hero-copy {
    align-self: center;
    padding: 35px 0
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2.8px;
    color: #c5a96f;
    font-weight: 600;
    margin: 0 0 25px
}

.hero h1 {
    font: normal clamp(58px,5.8vw,86px)/1.07 Georgia,serif;
    letter-spacing: -3px;
    margin: 0 0 26px
}

em {
    color: #d5b676;
    font-weight: normal
}

.lead {
    color: #b8b6b1;
    line-height: 1.9;
    margin: 0 0 32px
}

.hero-note {
    font-size: 12px;
    color: #a6a29a;
    margin-top: 38px;
    letter-spacing: .3px
}

.hero-note span {
    color: #cfad69;
    margin-right: 10px
}

.hero-photo {
    position: relative;
    min-height: 540px;
    overflow: hidden
}

.hero-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 25%
}

.hero-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,#000a,transparent 60%)
}

.photo-index {
    position: absolute;
    top: 22px;
    left: 24px;
    z-index: 1;
    font-size: 11px;
    letter-spacing: 2px;
    background: #1116;
    padding: 7px 10px
}

.photo-caption {
    position: absolute;
    bottom: 34px;
    left: 30px;
    z-index: 1;
    font: 32px/1.2 Georgia,serif
}

.ribbon {
    border-block:1px solid #cbb47b30;display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 22px;
    padding: 21px 5%;
    font-size: 12px;
    letter-spacing: 3px;
    color: #c7b48b;
    background: #151512
}

.ribbon i {
    color: #a2864b;
    font-style: normal
}

.experiences {
    max-width: 1440px;
    margin: auto;
    padding: 85px 5%
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 25px
}

.section-title h2,.manifesto h2,.booking-placeholder h2 {
    font: normal 48px/1.15 Georgia,serif;
    letter-spacing: -1px;
    margin: 0
}

.section-title>p {
    color: #a8a69f;
    font-size: 14px;
    margin: 0 0 6px
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px
}

.category {
    border: 1px solid #b59a6330;
    display: block;
    background: #141515;
    overflow: hidden
}

.category>img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: transform .4s
}

.category:hover>img {
    transform: scale(1.035)
}

.category>div {
    padding: 24px 20px;
    position: relative
}

.category-num {
    font-size: 11px;
    color: #9b855b;
    letter-spacing: 2px
}

.category h3 {
    font: 28px Georgia,serif;
    margin: 14px 0 10px
}

.category p {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #aba394
}

.category svg {
    position: absolute;
    right: 18px;
    top: 28px;
    color: #d5b676
}

.booking-placeholder {
    border: 1px solid var(--border);
    padding: 40px;
    margin-top: 40px
}

.text-link {
    display: inline-flex;
    gap: 15px;
    color: #d5b676;
    border-bottom: 1px solid #ad92594d;
    padding-bottom: 6px;
    margin-top: 25px
}

.manifesto {
    text-align: center;
    background: #191915;
    border-block:1px solid #cbb47b25;padding: 75px 24px
}

.manifesto h2 {
    font-size: 60px
}

.manifesto>p:last-child {
    max-width: 610px;
    margin: 28px auto 0;
    color: #b3b0a7;
    line-height: 1.9
}

footer {
    max-width: 1440px;
    margin: auto;
    padding: 65px 5%;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 40px;
    font-size: 14px;
    color: #b2aea5
}

footer img {
    width: 175px;
    height: 90px;
    object-fit: contain
}

footer .eyebrow {
    margin: 18px 0 22px
}

footer a {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 9px 0;
    color: #dac69b
}

footer p svg {
    display: inline;
    vertical-align: middle;
    margin-right: 5px
}

.copyright {
    margin: 0 5%;
    border-top: 1px solid var(--border);
    padding: 22px 0;
    font-size: 12px;
    color: #8c8b84;
    display: flex;
    justify-content: space-between
}

@media(max-width: 900px) {
    header {
        padding-inline:24px
    }

    nav {
        gap: 20px
    }

    .hero {
        gap: 25px;
        padding-inline:24px}

    .hero-photo {
        min-height: 480px
    }

    .hero h1 {
        font-size: 64px
    }

    .category-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .section-title {
        align-items: flex-start
    }

    .section-title h2 {
        font-size: 42px
    }

    footer {
        grid-template-columns: 1fr 1fr
    }

    footer>div:first-child {
        grid-column: 1/-1
    }

    .category>img {
        height: 300px
    }
}

@media(max-width: 600px) {
    header {
        height:84px;
        padding: 0 18px
    }

    .brand img {
        width: 120px;
        height: 75px
    }

    nav {
        display: none
    }

    .gold-button.small {
        font-size: 12px;
        padding: 11px;
        gap: 8px
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 15px 20px 24px;
        gap: 0
    }

    .hero-copy {
        padding: 30px 0
    }

    .hero h1 {
        font-size: 62px;
        letter-spacing: -2px
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 20px
    }

    .lead {
        font-size: 14px
    }

    .hero-note {
        margin-top: 23px
    }

    .hero-photo {
        min-height: 370px
    }

    .hero-photo img {
        object-position: center 30%
    }

    .ribbon {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 10px;
        letter-spacing: 1px
    }

    .ribbon i:nth-of-type(n+3) {
        display: none
    }

    .experiences {
        padding: 52px 20px
    }

    .section-title {
        display: block
    }

    .section-title>p {
        margin-top: 20px
    }

    .section-title h2 {
        font-size: 38px
    }

    .category-grid {
        gap: 12px
    }

    .category>img {
        height: 195px
    }

    .category>div {
        padding: 18px 13px
    }

    .category h3 {
        font-size: 23px
    }

    .category p {
        font-size: 9px;
        letter-spacing: .5px
    }

    .category svg {
        width: 17px;
        right: 12px;
        top: 21px
    }

    .manifesto {
        padding: 50px 22px
    }

    .manifesto h2 {
        font-size: 44px
    }

    footer {
        grid-template-columns: 1fr;
        padding: 38px 22px;
        gap: 10px
    }

    .copyright {
        display: block;
        line-height: 2
    }

    .copyright span {
        display: block
    }

    .booking-placeholder {
        padding: 25px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    * {
        transition: none!important
    }
}

@font-face {
    font-family: Inter;
    src: url('/fonts/inter.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap
}

@font-face {
    font-family: Fraunces;
    src: url('/fonts/fraunces.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap
}

body {
    font-family: Inter,Arial,sans-serif
}

.hero h1,.section-title h2,.manifesto h2,.booking-banner h2,.category h3,.photo-caption {
    font-family: Fraunces,Georgia,serif
}

.category-arrow {
    position: absolute;
    right: 20px;
    top: 27px;
    color: #d5b676;
    font-size: 25px
}

.card-cta {
    display: block;
    margin-top: 22px;
    font-size: 12px;
    color: #dac69b
}

.category p {
    font-size: 11px
}

.booking-banner {
    border: 1px solid #9f87584d;
    padding: 45px;
    margin-top: 45px;
    background: linear-gradient(110deg,#232017,#151616);
    position: relative
}

.booking-banner h2 {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0
}

.booking-copy {
    max-width: 440px;
    color: #b8b4ab;
    font-size: 14px
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #dec58f;
    color: #201a11;
    padding: 16px 20px;
    border-radius: 30px;
    box-shadow: 0 6px 25px #0005;
    font-size: 13px;
    font-weight: 600
}

.floating-whatsapp img {
    width: 23px;
    height: 23px
}

.floating-whatsapp:hover {
    background: #f0d9ab
}

.copyright {
    padding-bottom: 90px
}

.category {
    display: flex;
    flex-direction: column
}

.category>div {
    flex: 1
}

.category>img {
    flex: none
}

.hero .gold-button {
    font-size: 15px
}

.hero h1 {
    font-weight: 400
}

.hero-photo img {
    display: block
}

.hero-photo {
    border: 1px solid #a78d4930
}

h1,h2,h3 {
    overflow-wrap: normal
}

footer .eyebrow {
    font-size: 12px
}

@media(max-width: 600px) {
    .booking-banner {
        padding:26px
    }

    .booking-banner h2 {
        font-size: 36px
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 14px
    }

    .floating-whatsapp span {
        display: none
    }

    .category>img {
        height: 200px
    }

    .card-cta {
        font-size: 11px
    }

    .category p {
        font-size: 10px
    }

    .hero h1 {
        font-size: clamp(43px,12vw,62px)
    }

    .hero .eyebrow {
        line-height: 1.8
    }

    .section-title h2 {
        font-size: 36px
    }

    .hero .gold-button {
        width: 100%
    }

    .category h3 {
        font-size: 24px
    }

    .hero-photo {
        min-height: 360px
    }
}

@media(max-width: 360px) {
    .category-grid {
        grid-template-columns:1fr
    }

    .category>img {
        height: 290px
    }

    .gold-button.small {
        font-size: 11px
    }

    .brand img {
        width: 96px
    }
}

@media(min-width: 1100px) {
    .booking-banner .text-link {
        position:absolute;
        right: 45px;
        top: 44%;
        font-size: 15px
    }

    .booking-banner .booking-copy {
        max-width: 400px
    }

    .hero-copy {
        padding-right: 15px
    }
}
