:root{
  --ink:#202824;
  --forest:#244c3c;
  --forest2:#17372c;
  --wood:#7b4f32;
  --copper:#b96d3e;
  --copper-btn:#8a4728;
  --copper-btn-hover:#703719;
  --cream:#f7f2e9;
  --paper:#fffdf9;
  --muted:#65716b;
  --line:#d9d8cf;
  --shadow:0 18px 48px rgba(20,35,28,.14);
  color-scheme:light;
}

* {
    box-sizing: border-box
}

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.65
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

a {
    color: var(--forest)
}

a:hover {
    text-decoration-thickness: 2px
}

.container {
    width: min(1180px, calc(100% - 36px));
    margin: auto
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -80px;
    z-index: 9999;
    background: #fff;
    color: #111;
    padding: 12px 16px;
    border-radius: 6px
}

.skip-link:focus {
    top: 12px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(23, 55, 44, .97);
    color: #fff;
    box-shadow: 0 2px 14px #0003
}

.header-row {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
    letter-spacing: .03em;
    font-size: 1.08rem
}

.brand small {
    display: block;
    font-size: .69rem;
    font-weight: 550;
    color: #d6e2dc
}

.nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 650
}

.nav-list a:hover,
.nav-list a:focus-visible {
    color: #ffd6b6
}

.menu-toggle {
    display: none;
    border: 1px solid #ffffff80;
    background: transparent;
    color: #fff;
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit
}

.hero {
    min-height: 78vh;
    display: grid;
    align-items: end;
    position: relative;
    background: #1c3028
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 27, 22, .88), rgba(13, 27, 22, .32) 70%, rgba(13, 27, 22, .18))
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: clamp(80px, 15vw, 170px) 0 90px;
    max-width: 760px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    color: #ffd0ac
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(2.7rem, 8vw, 5.8rem);
    line-height: .98;
    margin: 12px 0 24px
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    max-width: 650px
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 20px;
  border:2px solid var(--copper-btn);
  border-radius:7px;
  background:var(--copper-btn);
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.btn:visited{
  color:#fff;
}

.btn:hover{
  border-color:var(--copper-btn-hover);
  background:var(--copper-btn-hover);
  color:#fff;
  text-decoration:none;
}

.btn:focus-visible{
  border-color:var(--copper-btn-hover);
  background:var(--copper-btn-hover);
  color:#fff;
  text-decoration:none;
  outline:3px solid #ffd6b6;
  outline-offset:3px;
}

.btn.secondary{
  border-color:#fff;
  background:transparent;
  color:#fff;
}

.btn.secondary:visited{
  color:#fff;
}

.btn.secondary:hover,
.btn.secondary:focus-visible{
  border-color:#fff;
  background:#fff;
  color:var(--forest2);
}

.notice {
    background: #efe6d8;
    border-left: 5px solid var(--copper);
    padding: 18px
}

.section {
    padding: clamp(62px, 9vw, 108px) 0
}

.section.alt {
    background: var(--cream)
}

.section-head {
    max-width: 760px;
    margin-bottom: 34px
}

.section h2 {
    font-family: Georgia, serif;
    color: var(--forest2);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 16px;
}

.contact-panel h2 {
    color: #fff;
}

.section h3 {
    line-height: 1.25
}

.kicker {
    color: var(--wood);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem
}

.grid {
    display: grid;
    gap: 22px
}

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

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr))
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 35, 28, .07)
}

.card-body {
    padding: 24px
}

.card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.feature {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff
}

.feature strong {
    display: block;
    color: var(--forest);
    font-size: 1.1rem;
    margin-bottom: 5px
}

.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center
}

.split img {
    border-radius: 16px;
    box-shadow: var(--shadow);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

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

.gallery button {
    border: 0;
    padding: 0;
    background: none;
    cursor: zoom-in;
    border-radius: 8px;
    overflow: hidden
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .25s
}

.gallery button:hover img,
.gallery button:focus-visible img {
    transform: scale(1.035)
}

.gallery button:focus-visible {
    outline: 4px solid var(--copper);
    outline-offset: 3px
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 18px 0
}

.faq summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--forest);
    font-size: 1.08rem
}

.contact-panel {
    background: var(--forest2);
    color: #fff;
    padding: 34px;
    border-radius: 14px
}

.contact-panel a {
    color: #fff
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.contact-list li {
    margin: 8px 0
}

.site-footer {
    background: #10261e;
    color: #cbd8d2;
    padding: 46px 0
}

.site-footer a {
    color: #fff
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px
}

.site-footer ul {
    list-style: none;
    padding: 0
}

.site-footer li {
    margin: 7px 0
}

.disclosure {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #ffffff2c
}

.lightbox[hidden] {
    display: none
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #07100dec;
    display: grid;
    place-items: center;
    padding: 60px 20px 25px
}

.lightbox img {
    max-height: 82vh;
    max-width: min(1100px, 96vw)
}

.lightbox-close {
    position: absolute;
    right: 20px;
    top: 16px;
    border: 1px solid #fff8;
    background: #12251f;
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0
}

@media(max-width:900px) {

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

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

    .split {
        grid-template-columns: 1fr
    }

    .menu-toggle {
        display: block
    }

    .nav-list {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 76px;
        background: var(--forest2);
        padding: 18px;
        flex-direction: column;
        align-items: stretch
    }

    .nav-list.open {
        display: flex
    }

    .nav-list a {
        display: block;
        padding: 8px
    }

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

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

@media(max-width:560px) {
    .container {
        width: min(100% - 24px, 1180px)
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .gallery,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid>:first-child {
        grid-column: auto
    }

    .gallery img {
        height: auto;
        aspect-ratio: 4/3
    }

    .hero {
        min-height: 690px
    }

    .hero-content {
        padding-bottom: 60px
    }

    .actions .btn {
        width: 100%
    }
}

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

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important
    }
}

.brand img {
    display: block;
    width: 138px;
    height: auto;
    object-fit: contain
}

.brand small {
    margin-top: 2px;
    text-align: center
}

@media(max-width:560px) {
    .brand img {
        width: 112px
    }
}

.language-switcher {
    position: relative;
    flex: 0 0 auto
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 11px;
    border: 1px solid #ffffff80;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer
}

.language-toggle img,
.language-dropdown img {
    display: block;
    width: 22px;
    height: 16px;
    object-fit: cover;
    flex: 0 0 auto
}

.language-toggle:focus-visible,
.language-dropdown a:focus-visible {
    outline: 3px solid #ffd6b6;
    outline-offset: 2px
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    z-index: 250;
    width: 230px;
    max-width: calc(100vw - 24px);
    max-height: min(70vh, 620px);
    overflow-y: auto;
    overscroll-behavior: contain;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow)
}

.language-dropdown[hidden] {
    display: none
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--ink);
    text-decoration: none
}

.language-dropdown a:hover,
.language-dropdown a[aria-current=page] {
    background: var(--cream);
    color: var(--forest2)
}

@media(max-width:900px) {
    .header-row {
        gap: 10px
    }

    .language-switcher {
        margin-left: auto
    }

    .language-dropdown {
        position: fixed;
        right: 12px;
        top: 76px
    }
}

@media(max-width:560px) {
    .language-toggle {
        padding: 8px
    }

    .language-dropdown {
        left: 12px;
        right: 12px;
        width: auto;
        top: 70px
    }
}

.footer-cookie-btn {
    font: inherit;
    color: #fff;
    background: transparent;
    border: 1px solid #ffffff80;
    border-radius: 7px;
    min-height: 44px;
    padding: 8px 12px;
    cursor: pointer
}

.footer-cookie-btn:focus-visible {
    outline: 3px solid #ffd6b6;
    outline-offset: 2px
}

.cookie-consent {
    position: fixed;
    z-index: 2000;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: min(760px, calc(100% - 32px));
    margin: auto;
    padding: 24px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 24px 80px #0006
}

.cookie-consent[hidden] {
    display: none
}

.cookie-consent h2 {
    margin: 0 0 10px;
    color: var(--forest2);
    font-family: Georgia, serif
}

.cookie-consent p {
    margin: 8px 0
}

.cookie-consent__details {
    margin-top: 12px;
    padding: 12px;
    background: var(--cream);
    border-radius: 8px
}

.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.cookie-consent__button {
    flex: 1 1 180px;
    min-height: 48px;
    padding: 10px 14px;
    border: 2px solid var(--forest);
    border-radius: 7px;
    background: #fff;
    color: var(--forest2);
    font: inherit;
    font-weight: 800;
    cursor: pointer
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    background: var(--forest);
    color: #fff;
    outline: 3px solid var(--copper);
    outline-offset: 2px
}

@media(max-width:560px) {
    .cookie-consent {
        left: 8px;
        right: 8px;
        bottom: 8px;
        width: calc(100% - 16px);
        max-height: calc(100vh - 16px);
        overflow-y: auto;
        padding: 18px
    }

    .cookie-consent__button {
        flex-basis: 100%
    }
}