:root {
    --cream: #f7f4ec;
    --paper: #fcfbf7;
    --olive: #536239;
    --olive-dark: #344122;
    --ink: #2d2d28;
    --muted: #737465;
    --line: #dfdccf;
    --max: 1180px;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.7
}

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

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

.site-header {
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(28px, calc((100vw - var(--max))/2));
    background: rgba(252, 251, 247, .97);
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(0, 0, 0, .03)
}

.brand {
    display: flex;
    gap: 13px;
    align-items: center
}

.brand-mark {
    font-size: 33px;
    filter: grayscale(1) sepia(.5) hue-rotate(35deg) saturate(2)
}

.brand strong {
    font: 20px/1.05 var(--serif);
    display: block;
    letter-spacing: .01em
}

.brand small {
    display: block;
    color: var(--olive);
    font-size: 12px;
    margin-top: 5px
}

.desktop-nav {
    display: flex;
    gap: 34px;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase
}

.desktop-nav>a,
.nav-dropdown>button {
    border: 0;
    background: none;
    padding: 10px 0;
    font: inherit;
    text-transform: inherit;
    cursor: pointer;
    color: var(--ink);
    position: relative
}

.desktop-nav .active:after,
.nav-dropdown>button.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background: var(--olive)
}

.nav-dropdown {
    position: relative
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 42px;
    left: -20px;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .09);
    padding: 8px;
    border-radius: 10px
}

.dropdown-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 7px;
    text-transform: none;
    font-size: 14px
}

.dropdown-menu a:hover {
    background: var(--cream)
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    display: block
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: none;
    padding: 8px
}

.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--olive-dark);
    margin: 6px 0
}

.mobile-menu[hidden] {
    display: none
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(28, 29, 24, .28);
    z-index: 50
}

.mobile-menu-panel {
    margin-left: auto;
    width: min(92vw, 420px);
    height: 100%;
    background: var(--paper);
    padding: 80px 22px 24px;
    position: relative;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .13)
}

.mobile-close {
    position: absolute;
    right: 22px;
    top: 23px;
    border: 0;
    background: none;
    font-size: 38px;
    color: var(--olive-dark);
    font-weight: 200
}

.mobile-menu-panel>a,
.mobile-menu summary {
    display: block;
    padding: 18px 5px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 22px
}

.mobile-menu details div {
    padding: 6px 10px 15px
}

.mobile-menu details div a {
    display: block;
    padding: 10px 0;
    color: #525448
}

.hero {
    min-height: 575px;
    background-image: linear-gradient(90deg, rgba(38, 48, 25, .58), rgba(38, 48, 25, .15) 48%, rgba(38, 48, 25, 0) 70%), url('assets/images/hero-tortoise.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center
}

.hero-content {
    width: min(var(--max), calc(100% - 56px));
    margin: 0 auto;
    color: white
}

.hero h1 {
    font: clamp(54px, 6vw, 88px)/.98 var(--serif);
    font-weight: 400;
    margin: 0 0 20px;
    letter-spacing: -.025em
}

.hero p {
    max-width: 470px;
    font-size: 18px;
    line-height: 1.7;
    margin: 18px 0 25px
}

.ornament {
    width: 230px;
    text-align: center;
    color: #e8e5c9;
    display: flex;
    align-items: center;
    gap: 14px
}

.ornament:before,
.ornament:after {
    content: "";
    height: 1px;
    flex: 1;
    background: currentColor;
    opacity: .7
}

.button {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .5);
    background: rgba(62, 76, 41, .55);
    padding: 12px 29px;
    border-radius: 24px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em
}

.home-links {
    max-width: 1050px;
    margin: 0 auto;
    padding: 45px 28px
}

.home-link {
    display: grid;
    grid-template-columns: 105px 1fr 50px;
    align-items: center;
    gap: 28px;
    padding: 30px 0;
    border-bottom: 1px solid var(--line)
}

.round-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #f0ecdf;
    display: grid;
    place-items: center;
    font-size: 28px;
    color: var(--olive)
}

.home-link strong {
    font: 34px/1.2 var(--serif);
    font-weight: 400;
    display: block
}

.home-link small {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    max-width: 560px
}

.arrow {
    font: 36px var(--serif);
    color: var(--olive)
}

.home-intro {
    background: linear-gradient(180deg, #f1eee5, #f7f4ec);
    display: grid;
    grid-template-columns: 140px 1fr 1.25fr;
    align-items: center;
    gap: 45px;
    padding: 55px max(28px, calc((100vw - 1080px)/2))
}

.home-intro .botanical {
    font-size: 80px;
    color: #8f9a77
}

.home-intro p {
    font: 19px/1.7 var(--serif);
    margin: 0
}

.home-intro figure {
    margin: 0
}

.home-intro img {
    border-radius: 13px;
    aspect-ratio: 2/1;
    object-fit: cover
}

.home-intro figcaption,
.article-image figcaption {
    font-size: 11px;
    color: var(--muted);
    margin-top: 7px
}

.site-footer {
    background: var(--olive-dark);
    color: #f5f1e8
}

.footer-inner {
    max-width: var(--max);
    margin: auto;
    padding: 34px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.footer-brand {
    display: flex;
    gap: 14px;
    align-items: center
}

.footer-brand>span {
    font-size: 28px
}

.footer-brand strong {
    font: 19px var(--serif);
    display: block
}

.footer-brand small {
    font-size: 11px;
    opacity: .75
}

.site-footer nav {
    display: flex;
    gap: 32px;
    font-size: 13px
}

.copyright {
    text-align: center;
    padding: 10px;
    background: #2d391d;
    font-size: 11px;
    opacity: .8
}

.article-hero {
    min-height: 460px
}

.article-hero h1 {
    font-size: clamp(58px, 6vw, 84px)
}

.breadcrumbs {
    max-width: var(--max);
    margin: 0 auto;
    padding: 26px 28px;
    display: flex;
    gap: 13px;
    align-items: center;
    font-size: 12px;
    color: var(--muted)
}

.breadcrumbs strong {
    color: var(--olive);
    font-weight: 500
}

.article {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 28px 70px
}

.article section {
    max-width: 650px;
    margin: 35px 0 54px
}

.article h2 {
    font: 42px/1.18 var(--serif);
    font-weight: 400;
    color: #3a432b;
    margin: 0 0 16px
}

.article p {
    font-size: 15px
}

.article ul {
    padding-left: 20px
}

.article li {
    margin: 6px 0
}

.article-image {
    /*width: 72%;*/
    margin: 20px 0 55px auto
}

.article-image img {
    border-radius: 14px;
    /*aspect-ratio: 2/1;*/
    object-fit: cover
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;

  color: #3f4f2f;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.3;
}

.article-link::before {
  content: "❧";

  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;

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

  border-radius: 50%;
  background: #eee9dd;
  color: #667248;

  font-size: 1.7rem;
  line-height: 1;
}

.article-link:hover {
  opacity: 0.7;
}

.split-section {
    max-width: none !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    /*align-items: center*/
}

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

.photo-placeholder {
    min-height: 240px;
    border: 1px dashed #b9b6a7;
    border-radius: 14px;
    background: linear-gradient(135deg, #eeeadf, #f8f6ef);
    display: grid;
    place-items: center;
    padding: 30px;
    text-align: center;
    color: #8b8a7d;
    font: 18px var(--serif)
}

.photo {
    min-height: 240px;
    display: grid;
    place-items: center;
}

@media(max-width:860px) {
    .site-header {
        height: 84px;
        padding: 0 20px
    }

    .brand strong {
        font-size: 16px
    }

    .brand small {
        font-size: 10px
    }

    .brand-mark {
        font-size: 27px
    }

    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .hero {
        min-height: 540px;
        background-position: 66% center;
        background-image: linear-gradient(90deg, rgba(37, 47, 25, .68), rgba(37, 47, 25, .26) 62%, rgba(37, 47, 25, .06)), url('assets/images/hero-tortoise.jpg')
    }

    .hero-content {
        width: calc(100% - 44px)
    }

    .hero h1 {
        font-size: 52px;
        max-width: 310px
    }

    .hero p {
        font-size: 16px;
        max-width: 280px
    }

    .home-links {
        padding-top: 28px
    }

    .home-link {
        grid-template-columns: 60px 1fr 25px;
        gap: 16px
    }

    .round-icon {
        width: 54px;
        height: 54px;
        font-size: 19px
    }

    .home-link strong {
        font-size: 27px
    }

    .home-link small {
        font-size: 13px
    }

    .home-intro {
        grid-template-columns: 1fr;
        padding: 38px 24px;
        gap: 22px
    }

    .home-intro .botanical {
        display: none
    }

    .home-intro p {
        font-size: 18px
    }

    .footer-inner {
        display: block
    }

    .site-footer nav {
        margin-top: 24px;
        flex-direction: column;
        gap: 10px
    }

    .article-hero {
        min-height: 470px
    }

    .article-hero .hero-content {
        padding-top: 100px
    }

    .breadcrumbs {
        padding: 20px 22px;
        flex-wrap: wrap
    }

    .article {
        padding: 0 22px 55px
    }

    .article section {
        max-width: none
    }

    .article h2 {
        font-size: 34px
    }

    .article-image {
        width: 100%;
        margin: 20px 0 48px
    }

    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .split-section.reverse .photo-placeholder, .split-section.reverse .photo {
        order: 2
    }

    .photo-placeholder {
        min-height: 200px
    }

    .photo {
        min-height: 200px;
    }
}

@media(max-width:480px) {
    .brand strong {
        font-size: 14px
    }

    .hero {
        min-height: 520px
    }

    .hero h1 {
        font-size: 45px
    }

    .home-link {
        padding: 25px 0
    }

    .home-link strong {
        font-size: 24px
    }

    .home-link small {
        line-height: 1.5
    }

    .article-hero h1 {
        font-size: 48px
    }
}

.desktop-nav .dropdown-menu a.current {
    background: var(--cream);
    color: var(--olive-dark);
    font-weight: 600
}

.mobile-menu a.current {
    color: var(--olive);
    font-weight: 700
}