:root {
    --lh-ink: #263129;
    --lh-ink-soft: #59615a;
    --lh-cream: #fffdf8;
    --lh-sand: #f2ede3;
    --lh-sand-deep: #e5ddd0;
    --lh-sage: #809082;
    --lh-sage-dark: #53675a;
    --lh-moss: #31483a;
    --lh-clay: #ad7661;
    --lh-stone: #9a958a;
    --lh-gold: #aa8b57;
    --lh-line: rgba(38, 49, 41, 0.18);
    --lh-shell: min(1320px, calc(100vw - 96px));
    --lh-radius: 3px;
    --lh-ease: 700ms cubic-bezier(.16, 1, .3, 1);
}

html {
    scroll-behavior: smooth;
}

body.lh-site {
    background: var(--lh-cream);
    color: var(--lh-ink);
    font-family: var(--font1);
    font-size: 17px;
    line-height: 1.75;
    overflow-x: hidden;
}

.lh-site p {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.lh-site h1,
.lh-site h2,
.lh-site h3,
.lh-site h4 {
    color: inherit;
    font-family: var(--font3);
    font-weight: 500;
    letter-spacing: -.04em;
}

.lh-site button,
.lh-site input {
    font: inherit;
}

.lh-site img {
    display: block;
}

.lh-shell {
    width: var(--lh-shell);
    margin-inline: auto;
}

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

.lh-skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: #fff;
    background: var(--lh-moss);
    transform: translateY(-160%);
}

.lh-skip-link:focus {
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity var(--lh-ease), transform var(--lh-ease);
}

[data-reveal].is-visible,
.no-js [data-reveal] {
    opacity: 1;
    transform: none;
}

.lh-kicker,
.lh-card-meta {
    color: var(--lh-sage-dark);
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: .17em;
    line-height: 1.5 !important;
    text-transform: uppercase;
}

.lh-button {
    display: inline-flex;
    min-height: 51px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 22px;
    border: 1px solid var(--lh-moss);
    border-radius: 100px;
    color: #fff;
    background: var(--lh-moss);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: color .3s ease, background .3s ease, transform .3s ease;
}

.lh-button:hover {
    color: var(--lh-moss);
    background: transparent;
    transform: translateY(-2px);
}

.lh-button-small {
    min-height: 39px;
    padding: 9px 16px;
    font-size: 12px;
}

.lh-button-outline {
    color: var(--lh-moss);
    background: transparent;
}

.lh-button-outline:hover {
    color: #fff;
    background: var(--lh-moss);
}

.lh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    color: var(--lh-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    transition: gap .3s ease, color .3s ease;
}

.lh-text-link:hover {
    gap: 20px;
    color: var(--lh-sage-dark);
}

/* Header */
.lh-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}

.lh-header.is-scrolled,
.lh-header:has(.lh-mobile-menu:not([hidden])) {
    border-color: var(--lh-line);
    background: rgba(255, 253, 248, .92);
    backdrop-filter: blur(14px);
}

.lh-nav {
    display: grid;
    height: 86px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.lh-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    white-space: nowrap;
}

.lh-brand img {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.lh-brand-name {
    font-family: var(--font3);
    font-size: 25px;
    letter-spacing: .06em;
}

.lh-brand-roman {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.lh-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
}

.lh-desktop-nav a,
.lh-account-link {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.lh-desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--lh-ink);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}

.lh-desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lh-nav-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.lh-icon-button,
.lh-menu-button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 0;
    color: var(--lh-ink);
    background: transparent;
}

.lh-icon-button svg {
    width: 19px;
    height: 19px;
}

.lh-menu-button {
    display: none;
    align-content: center;
    gap: 6px;
}

.lh-menu-button > span:not(.visually-hidden) {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease;
}

.lh-menu-button[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.lh-menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
}

.lh-mobile-menu {
    min-height: calc(100vh - 86px);
    padding: 30px max(24px, calc((100vw - var(--lh-shell)) / 2)) 45px;
    border-top: 1px solid var(--lh-line);
    background: var(--lh-cream);
}

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

.lh-mobile-menu nav {
    display: grid;
}

.lh-mobile-menu nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--lh-line);
    font-family: var(--font3);
    font-size: clamp(24px, 7vw, 36px);
    line-height: 1.2;
}

.lh-mobile-menu nav span {
    font-family: var(--font1);
    font-size: 10px;
    letter-spacing: .14em;
}

.lh-mobile-menu-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
}

.lh-mobile-menu-foot p {
    font-size: 12px;
    letter-spacing: .08em;
}

/* Home hero */
.lh-hero {
    position: relative;
    min-height: 100svh;
    padding: 128px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 34%, rgba(128, 144, 130, .18), transparent 29%),
        linear-gradient(125deg, #fffdf8 0%, #f5f0e7 100%);
}

.lh-hero::before {
    position: absolute;
    width: 50vw;
    height: 50vw;
    top: -27vw;
    left: -14vw;
    border: 1px solid rgba(128, 144, 130, .22);
    border-radius: 50%;
    content: "";
}

.lh-hero-grid {
    display: grid;
    min-height: calc(100svh - 208px);
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    align-items: center;
    gap: clamp(55px, 8vw, 130px);
}

.lh-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.lh-hero-copy .lh-kicker {
    margin-bottom: 25px;
}

.lh-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 5.15vw, 80px);
    line-height: 1.15;
}

.lh-hero-intro {
    max-width: 670px;
    margin-top: 30px;
    color: var(--lh-ink-soft) !important;
    font-size: clamp(16px, 1.35vw, 20px) !important;
    line-height: 1.85 !important;
}

.lh-hero-actions {
    display: flex;
    align-items: center;
    gap: 27px;
    margin-top: 39px;
}

.lh-location-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 43px;
    color: var(--lh-ink-soft) !important;
    font-size: 12px !important;
    letter-spacing: .1em;
}

.lh-location-line span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lh-clay);
}

.lh-hero-visual {
    position: relative;
    width: min(38vw, 525px);
    aspect-ratio: .82;
    justify-self: end;
}

.lh-hero-portrait,
.lh-hero-symbol {
    position: absolute;
    z-index: 2;
    inset: 8% 11% 10%;
    overflow: hidden;
    border-radius: 50% 50% 45% 45% / 42% 42% 58% 58%;
    background: var(--lh-sage);
}

.lh-hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.78) contrast(.94);
}

.lh-hero-symbol {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--lh-sage), var(--lh-moss));
}

.lh-hero-symbol::before,
.lh-hero-symbol::after {
    position: absolute;
    width: 58%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    content: "";
}

.lh-hero-symbol::after {
    width: 78%;
}

.lh-hero-symbol span {
    color: #fff;
    font-family: var(--font3);
    font-size: 82px;
    opacity: .88;
}

.lh-orbit {
    position: absolute;
    border: 1px solid rgba(49, 72, 58, .22);
    border-radius: 50%;
}

.lh-orbit-one {
    inset: 0;
    transform: rotate(13deg);
}

.lh-orbit-two {
    inset: 15% -9% 2% 8%;
    transform: rotate(-15deg);
}

.lh-orbit-two::after {
    position: absolute;
    top: 18%;
    right: 2%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--lh-clay);
    box-shadow: 0 0 0 9px rgba(173, 118, 97, .12);
    content: "";
}

.lh-hero-note {
    position: absolute;
    z-index: 3;
    right: -4%;
    bottom: 3%;
    color: var(--lh-sage-dark) !important;
    font-family: var(--font3) !important;
    font-size: 13px !important;
    font-style: italic;
    letter-spacing: .04em;
    line-height: 1.45 !important;
    transform: rotate(-4deg);
}

.lh-scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .17em;
    transform: translateX(-50%);
}

.lh-scroll-cue span {
    font-size: 17px;
}

/* Shared sections */
.lh-section {
    padding: clamp(90px, 9vw, 145px) 0;
}

.lh-section-heading {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    align-items: end;
    gap: 60px;
    margin-bottom: clamp(45px, 5vw, 72px);
}

.lh-section-heading .lh-kicker {
    margin-bottom: 17px;
}

.lh-section-heading h2,
.lh-recognition h2,
.lh-about h2,
.lh-collection h2,
.lh-final-cta h2 {
    font-size: clamp(39px, 4vw, 62px);
    line-height: 1.19;
}

.lh-section-heading > p {
    max-width: 460px;
    color: var(--lh-ink-soft) !important;
    font-size: 15px !important;
}

.lh-section-heading > .lh-text-link {
    justify-self: end;
}

/* Recognition */
.lh-recognition {
    padding: clamp(90px, 9vw, 140px) 0;
    color: #f7f3eb;
    background: var(--lh-moss);
}

.lh-recognition-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(60px, 9vw, 145px);
}

.lh-recognition .lh-kicker {
    margin-bottom: 22px;
    color: #c9bfae;
}

.lh-recognition-list {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.lh-recognition-list p {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .82) !important;
    font-size: 15px !important;
}

.lh-recognition-list span {
    color: #c9bfae;
    font-size: 10px;
    letter-spacing: .12em;
}

/* Path cards */
.lh-paths {
    background: var(--lh-cream);
}

.lh-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--lh-line);
}

.lh-path-card {
    position: relative;
    display: flex;
    min-height: 570px;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(30px, 3.2vw, 50px);
    border-right: 1px solid var(--lh-line);
    overflow: hidden;
    transition: color .4s ease, background .4s ease;
}

.lh-path-card:last-child {
    border-right: 0;
}

.lh-path-number {
    position: absolute;
    top: 27px;
    right: 30px;
    font-size: 10px;
    letter-spacing: .15em;
}

.lh-path-mark {
    position: relative;
    width: 150px;
    height: 150px;
    align-self: center;
    margin: 20px 0 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    opacity: .75;
    transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.lh-path-mark::before,
.lh-path-mark::after,
.lh-path-mark i {
    position: absolute;
    content: "";
}

.lh-path-mark::before {
    inset: 21%;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.lh-path-mark::after {
    top: 50%;
    right: -14%;
    left: -14%;
    border-top: 1px solid currentColor;
}

.lh-path-mark i {
    top: -9%;
    bottom: -9%;
    left: 50%;
    border-left: 1px solid currentColor;
}

.lh-path-mark-sun::before {
    inset: 31%;
    background: currentColor;
    opacity: .16;
}

.lh-path-mark-sun::after {
    top: 0;
    right: 50%;
    bottom: 0;
    left: auto;
    border-top: 0;
    border-left: 1px solid currentColor;
    transform: rotate(45deg);
}

.lh-path-mark-sun i {
    top: 0;
    bottom: 0;
    transform: rotate(-45deg);
}

.lh-path-mark-moon::before {
    inset: 19% 19% 19% 38%;
    border: 0;
    border-left: 1px solid currentColor;
    border-radius: 50%;
}

.lh-path-card h3 {
    margin: 10px 0 16px;
    font-size: clamp(30px, 2.4vw, 39px);
}

.lh-path-card p:not(.lh-card-meta) {
    color: var(--lh-ink-soft) !important;
    font-size: 14px !important;
}

.lh-path-link {
    display: inline-block;
    margin-top: 25px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 600;
}

.lh-path-card:hover {
    color: #fff;
}

.lh-path-card-sage:hover { background: var(--lh-sage-dark); }
.lh-path-card-clay:hover { background: var(--lh-clay); }
.lh-path-card-stone:hover { background: #77776f; }

.lh-path-card:hover .lh-path-mark {
    transform: rotate(22deg) scale(1.06);
}

.lh-path-card:hover .lh-card-meta,
.lh-path-card:hover p:not(.lh-card-meta) {
    color: rgba(255, 255, 255, .78) !important;
}

/* Current invitation */
.lh-invitation {
    background: var(--lh-sand);
}

.lh-invitation-card {
    display: grid;
    min-height: 590px;
    grid-template-columns: 1.07fr .93fr;
    background: var(--lh-cream);
}

.lh-invitation-image {
    min-height: 520px;
    overflow: hidden;
}

.lh-invitation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.16, 1, .3, 1);
}

.lh-invitation-card:hover .lh-invitation-image img {
    transform: scale(1.025);
}

.lh-invitation-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(46px, 6vw, 88px);
}

.lh-invitation-copy h2 {
    margin: 21px 0 25px;
    font-size: clamp(39px, 3.6vw, 58px);
    line-height: 1.18;
}

.lh-invitation-copy > p:not(.lh-kicker) {
    color: var(--lh-ink-soft) !important;
    font-size: 15px !important;
}

.lh-invitation-meta {
    display: flex;
    gap: 22px;
    margin: 27px 0;
    color: var(--lh-sage-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

/* Cards */
.lh-post-grid,
.lh-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(25px, 3vw, 46px);
}

.lh-post-card-image {
    position: relative;
    display: block;
    aspect-ratio: 1.13;
    overflow: hidden;
    background: var(--lh-sand-deep);
}

.lh-post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.83);
    transition: transform .8s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}

.lh-post-card:hover .lh-post-card-image img {
    filter: saturate(1);
    transform: scale(1.035);
}

.lh-card-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(38, 49, 41, .82);
    font-size: 18px;
    transition: transform .3s ease;
}

.lh-post-card:hover .lh-card-arrow {
    transform: rotate(12deg);
}

.lh-image-placeholder {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(140deg, #d8d0c2, #94a093);
}

.lh-image-placeholder::before,
.lh-image-placeholder::after,
.lh-image-placeholder i {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 50%;
    content: "";
}

.lh-image-placeholder::before { width: 55%; aspect-ratio: 1; }
.lh-image-placeholder::after { width: 34%; aspect-ratio: 1; }
.lh-image-placeholder i { width: 75%; aspect-ratio: 1; transform: rotate(26deg); }

.lh-post-card-body {
    padding-top: 25px;
}

.lh-post-card-body h3 {
    margin: 8px 0 13px;
    font-size: clamp(27px, 2.15vw, 35px);
    line-height: 1.24;
}

.lh-post-card-body > p:not(.lh-card-meta) {
    display: -webkit-box;
    overflow: hidden;
    color: var(--lh-ink-soft) !important;
    font-size: 14px !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.lh-post-card-body .lh-text-link {
    margin-top: 19px;
    font-size: 12px;
}

/* About */
.lh-about {
    color: #f4f0e8;
    background: var(--lh-moss);
}

.lh-about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(65px, 10vw, 160px);
}

.lh-about-visual {
    position: relative;
    min-height: 640px;
}

.lh-about-visual > img,
.lh-about-visual > .lh-image-placeholder {
    width: 85%;
    height: 610px;
    object-fit: cover;
    filter: saturate(.68) contrast(.95);
}

.lh-about-visual::before {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    width: 48%;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    content: "";
}

.lh-about-caption {
    position: absolute;
    z-index: 2;
    right: -5px;
    bottom: 20%;
    font-size: 10px;
    letter-spacing: .16em;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
}

.lh-about-copy {
    max-width: 630px;
}

.lh-about-copy .lh-kicker {
    margin-bottom: 24px;
    color: #c9bfae;
}

.lh-about-lead {
    margin: 31px 0 20px;
    color: rgba(255, 255, 255, .88) !important;
    font-family: var(--font3) !important;
    font-size: clamp(20px, 1.7vw, 26px) !important;
    line-height: 1.65 !important;
}

.lh-about-copy > p:not(.lh-kicker):not(.lh-about-lead) {
    color: rgba(255, 255, 255, .68) !important;
    font-size: 15px !important;
}

.lh-about .lh-text-link {
    margin-top: 31px;
    color: #fff;
}

/* Collection */
.lh-collection {
    color: var(--lh-ink);
    background: #d8d0c2;
}

.lh-collection-grid {
    display: grid;
    min-height: 590px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.lh-collection-copy {
    max-width: 600px;
}

.lh-collection-copy h2 {
    margin: 21px 0 26px;
}

.lh-collection-copy > p:not(.lh-kicker) {
    color: #51564f !important;
    font-size: 15px !important;
}

.lh-collection-copy .lh-button {
    margin-top: 32px;
}

.lh-collection-object {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
}

.lh-collection-object::before {
    position: absolute;
    width: min(36vw, 470px);
    aspect-ratio: 1;
    border: 1px solid rgba(38, 49, 41, .25);
    border-radius: 50%;
    content: "";
}

.lh-vessel {
    position: relative;
    z-index: 2;
    width: 210px;
    height: 300px;
    border-radius: 46% 46% 39% 39% / 29% 29% 71% 71%;
    background: linear-gradient(105deg, #766852, #c9b89c 45%, #70624e);
    box-shadow: 25px 27px 50px rgba(38, 49, 41, .2);
    transform: rotate(3deg);
}

.lh-vessel::before {
    position: absolute;
    top: -13px;
    left: 50%;
    width: 64px;
    height: 38px;
    border-radius: 50%;
    background: #6d604e;
    box-shadow: inset 0 8px 9px rgba(0, 0, 0, .25);
    content: "";
    transform: translateX(-50%);
}

.lh-vessel i,
.lh-vessel b {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
}

.lh-vessel i { inset: 30% 19%; }
.lh-vessel b { inset: 39% 28%; }

.lh-collection-object > span {
    position: absolute;
    right: -23px;
    bottom: 30px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
}

/* Journal & final CTA */
.lh-journal {
    background: var(--lh-cream);
}

.lh-final-cta {
    padding: clamp(95px, 11vw, 165px) 0;
    color: #f7f3eb;
    text-align: center;
    background:
        radial-gradient(circle at 50% 130%, rgba(173, 118, 97, .35), transparent 45%),
        var(--lh-moss);
}

.lh-final-cta .lh-shell {
    display: flex;
    max-width: 850px;
    flex-direction: column;
    align-items: center;
}

.lh-final-cta .lh-kicker {
    margin-bottom: 22px;
    color: #c9bfae;
}

.lh-final-cta > .lh-shell > p:not(.lh-kicker) {
    max-width: 600px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .7) !important;
    font-size: 15px !important;
}

.lh-final-cta .lh-button {
    margin-top: 34px;
    border-color: #f7f3eb;
    color: var(--lh-moss);
    background: #f7f3eb;
}

.lh-final-cta .lh-button:hover {
    color: #fff;
    background: transparent;
}

.lh-final-cta-light {
    color: var(--lh-ink);
    background: var(--lh-sand);
}

.lh-final-cta-light .lh-kicker { color: var(--lh-sage-dark); }
.lh-final-cta-light > .lh-shell > p:not(.lh-kicker) { color: var(--lh-ink-soft) !important; }
.lh-final-cta-light .lh-button { border-color: var(--lh-moss); color: #fff; background: var(--lh-moss); }
.lh-final-cta-light .lh-button:hover { color: var(--lh-moss); background: transparent; }

/* Footer */
.lh-footer {
    padding: 90px 0 30px;
    color: var(--lh-ink);
    background: #e7e0d5;
}

.lh-footer-invitation {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 75px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--lh-line);
}

.lh-footer-invitation .lh-kicker {
    margin-bottom: 15px;
}

.lh-footer-invitation h2 {
    font-size: clamp(36px, 3.5vw, 55px);
    line-height: 1.2;
}

.lh-subscribe label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

.lh-subscribe-row {
    display: flex;
    border-bottom: 1px solid var(--lh-ink);
}

.lh-subscribe input {
    width: 100%;
    padding: 13px 0;
    border: 0;
    outline: 0;
    color: var(--lh-ink);
    background: transparent;
}

.lh-subscribe button {
    padding: 10px 0 10px 18px;
    border: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 700;
}

.lh-form-message {
    display: none;
    margin-top: 9px;
    font-size: 12px !important;
}

.lh-subscribe.success .lh-form-message.success,
.lh-subscribe.error .lh-form-message.error {
    display: block;
}

.lh-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 55px;
    padding: 67px 0;
}

.lh-brand-footer {
    margin-bottom: 20px;
}

.lh-footer-brand > p {
    max-width: 390px;
    color: var(--lh-ink-soft) !important;
    font-size: 13px !important;
}

.lh-footer-brand .lh-location {
    margin-top: 19px;
    font-size: 11px !important;
    font-weight: 700;
    letter-spacing: .1em;
}

.lh-footer-grid nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.lh-footer-grid nav h3 {
    margin-bottom: 7px;
    font-family: var(--font1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}

.lh-footer-grid nav a {
    color: var(--lh-ink-soft);
    font-size: 13px;
}

.lh-footer-grid nav a:hover {
    color: var(--lh-ink);
}

.lh-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--lh-line);
    color: var(--lh-ink-soft);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
}

/* Interior pages */
.lh-page-hero {
    padding: 175px 0 100px;
    background:
        radial-gradient(circle at 85% 0, rgba(128, 144, 130, .18), transparent 31%),
        var(--lh-sand);
}

.lh-page-hero-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: end;
    gap: clamp(65px, 10vw, 160px);
}

.lh-page-hero .lh-kicker {
    margin-bottom: 24px;
}

.lh-page-hero h1 {
    font-size: clamp(47px, 5vw, 76px);
    line-height: 1.15;
}

.lh-page-hero-intro > p:first-child {
    color: var(--lh-ink-soft) !important;
    font-size: clamp(16px, 1.4vw, 20px) !important;
}

.lh-page-note {
    margin-top: 21px;
    padding-top: 16px;
    border-top: 1px solid var(--lh-line);
    color: var(--lh-ink-soft) !important;
    font-size: 11px !important;
}

.lh-service-section {
    background: var(--lh-cream);
}

.lh-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.lh-service-card {
    padding: clamp(38px, 5vw, 74px);
    border: 1px solid var(--lh-line);
    background: var(--lh-sand);
}

.lh-service-card-featured {
    color: #f6f2e9;
    background: var(--lh-moss);
}

.lh-service-card h2 {
    margin: 19px 0 25px;
    font-size: clamp(38px, 3.6vw, 56px);
}

.lh-service-card > p:not(.lh-card-meta) {
    color: var(--lh-ink-soft) !important;
    font-size: 15px !important;
}

.lh-service-card-featured > p:not(.lh-card-meta) {
    color: rgba(255, 255, 255, .7) !important;
}

.lh-service-card-featured .lh-card-meta {
    color: #c9bfae;
}

.lh-service-card ul {
    margin: 28px 0 34px;
    list-style: none;
}

.lh-service-card li {
    padding: 11px 0;
    border-bottom: 1px solid var(--lh-line);
    font-size: 13px;
}

.lh-service-card-featured li {
    border-color: rgba(255, 255, 255, .18);
}

.lh-service-card-featured .lh-button {
    border-color: #f6f2e9;
    color: var(--lh-moss);
    background: #f6f2e9;
}

.lh-process {
    background: var(--lh-sand);
}

.lh-process-list {
    border-top: 1px solid var(--lh-line);
    list-style: none;
}

.lh-process-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 25px;
    padding: 32px 0;
    border-bottom: 1px solid var(--lh-line);
}

.lh-process-list > li > span {
    padding-top: 7px;
    color: var(--lh-sage-dark);
    font-size: 10px;
    letter-spacing: .15em;
}

.lh-process-list h3 {
    margin-bottom: 8px;
    font-size: 29px;
}

.lh-process-list p {
    max-width: 670px;
    color: var(--lh-ink-soft) !important;
    font-size: 14px !important;
}

.lh-listing {
    min-height: 500px;
}

.lh-filter-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--lh-line);
}

.lh-filter-note span {
    font-family: var(--font3);
    font-size: 23px;
}

.lh-filter-note p {
    color: var(--lh-ink-soft) !important;
    font-size: 12px !important;
}

.lh-post-grid-wide {
    row-gap: 65px;
}

.lh-empty-state {
    max-width: 770px;
    margin: auto;
    padding: 85px 40px;
    border: 1px solid var(--lh-line);
    text-align: center;
    background: var(--lh-sand);
}

.lh-empty-state h2 {
    margin: 18px 0 20px;
    font-size: clamp(38px, 4vw, 58px);
}

.lh-empty-state > p:not(.lh-kicker) {
    max-width: 520px;
    margin: auto;
    color: var(--lh-ink-soft) !important;
    font-size: 15px !important;
}

.lh-empty-state .lh-button {
    margin-top: 30px;
}

.lh-shop-content {
    background: var(--lh-cream);
}

.lh-prose {
    max-width: 940px;
}

.lh-prose > * + * {
    margin-top: 1.4em;
}

.lh-prose h2 { font-size: clamp(34px, 3vw, 48px); }
.lh-prose h3 { font-size: clamp(27px, 2.4vw, 37px); }
.lh-prose img { height: auto; }
.lh-prose a { border-bottom: 1px solid currentColor; }

/* Existing Ghost posts and generic pages */
.lh-site .post-header {
    padding-top: 160px;
}

.lh-site .post-title {
    font-size: clamp(46px, 5vw, 76px);
}

.lh-site .post-content {
    font-size: 17px;
    line-height: 1.85;
}

.lh-site .post-content h2 {
    font-size: clamp(33px, 3vw, 47px);
}

.lh-site .post-content h3 {
    font-size: clamp(27px, 2.4vw, 37px);
}

.lh-site .post-content a {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

@media (max-width: 1180px) {
    :root { --lh-shell: min(100% - 56px, 1120px); }
    .lh-desktop-nav { display: none; }
    .lh-nav { grid-template-columns: 1fr auto; }
    .lh-menu-button { display: grid; }
    .lh-account-link { display: none; }
    .lh-hero-grid { grid-template-columns: 1.12fr .88fr; gap: 55px; }
    .lh-hero-visual { width: min(41vw, 490px); }
    .lh-path-card { min-height: 540px; padding: 34px; }
    .lh-footer-grid { grid-template-columns: 1.45fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 900px) {
    .lh-nav-cta { display: none; }
    .lh-hero { min-height: auto; padding-top: 130px; }
    .lh-hero-grid { min-height: auto; grid-template-columns: 1fr; }
    .lh-hero-copy { max-width: 760px; }
    .lh-hero-visual { width: min(75vw, 520px); justify-self: center; }
    .lh-scroll-cue { display: none; }
    .lh-recognition-grid,
    .lh-about-grid,
    .lh-page-hero-grid { grid-template-columns: 1fr; gap: 55px; }
    .lh-path-grid { grid-template-columns: 1fr; }
    .lh-path-card { min-height: 420px; border-right: 0; border-bottom: 1px solid var(--lh-line); }
    .lh-path-card:last-child { border-bottom: 0; }
    .lh-invitation-card { grid-template-columns: 1fr; }
    .lh-invitation-image { min-height: 470px; }
    .lh-invitation-copy { padding: 55px; }
    .lh-post-grid,
    .lh-journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lh-about-visual { max-width: 650px; min-height: 570px; }
    .lh-about-visual > img,
    .lh-about-visual > .lh-image-placeholder { height: 550px; }
    .lh-collection-grid { grid-template-columns: 1fr; gap: 45px; }
    .lh-collection-object { min-height: 440px; }
    .lh-footer-invitation { grid-template-columns: 1fr; align-items: start; }
    .lh-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .lh-footer-grid nav:last-child { grid-column: 2; }
    .lh-service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    :root { --lh-shell: calc(100% - 36px); }
    body.lh-site { font-size: 16px; }
    .lh-nav { height: 72px; }
    .lh-brand-name { font-size: 22px; }
    .lh-brand-roman { font-size: 8px; }
    .lh-brand img { height: 35px; }
    .lh-icon-button { display: none; }
    .lh-mobile-menu { min-height: calc(100vh - 72px); }
    .lh-mobile-menu-foot { align-items: flex-start; flex-direction: column; }
    .lh-hero { padding: 111px 0 70px; }
    .lh-hero h1 { font-size: clamp(42px, 13vw, 58px); }
    .lh-hero-intro { margin-top: 23px; font-size: 15px !important; }
    .lh-hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 31px; }
    .lh-location-line { margin-top: 31px; }
    .lh-hero-grid { gap: 48px; }
    .lh-hero-visual { width: min(88vw, 410px); }
    .lh-hero-note { right: 0; }
    .lh-section { padding: 82px 0; }
    .lh-section-heading { grid-template-columns: 1fr; gap: 24px; }
    .lh-section-heading > .lh-text-link { justify-self: start; }
    .lh-section-heading h2,
    .lh-recognition h2,
    .lh-about h2,
    .lh-collection h2,
    .lh-final-cta h2 { font-size: 40px; }
    .lh-recognition { padding: 82px 0; }
    .lh-recognition-grid { gap: 45px; }
    .lh-recognition-list p { grid-template-columns: 35px 1fr; padding: 18px 0; }
    .lh-path-card { min-height: 450px; padding: 31px 27px; }
    .lh-path-mark { width: 125px; height: 125px; }
    .lh-invitation-image { min-height: 330px; }
    .lh-invitation-copy { padding: 38px 27px 43px; }
    .lh-invitation-copy h2 { font-size: 40px; }
    .lh-post-grid,
    .lh-journal-grid { grid-template-columns: 1fr; gap: 52px; }
    .lh-post-card-image { aspect-ratio: 1.2; }
    .lh-about-grid { gap: 48px; }
    .lh-about-visual { min-height: 465px; }
    .lh-about-visual > img,
    .lh-about-visual > .lh-image-placeholder { width: 90%; height: 445px; }
    .lh-about-caption { display: none; }
    .lh-collection-grid { min-height: auto; }
    .lh-collection-object { min-height: 390px; }
    .lh-collection-object::before { width: 330px; max-width: 88vw; }
    .lh-vessel { width: 170px; height: 245px; }
    .lh-collection-object > span { right: 0; }
    .lh-final-cta { padding: 90px 0; }
    .lh-footer { padding-top: 75px; }
    .lh-footer-invitation { gap: 45px; padding-bottom: 55px; }
    .lh-footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }
    .lh-footer-brand { grid-column: 1 / -1; }
    .lh-footer-grid nav:last-child { grid-column: auto; }
    .lh-footer-bottom { align-items: flex-start; flex-direction: column; }
    .lh-page-hero { padding: 130px 0 75px; }
    .lh-page-hero-grid { gap: 36px; }
    .lh-page-hero h1 { font-size: 45px; }
    .lh-service-card { padding: 38px 27px; }
    .lh-process-list li { grid-template-columns: 42px 1fr; }
    .lh-filter-note { align-items: flex-start; flex-direction: column; }
    .lh-empty-state { padding: 65px 24px; }
    .lh-site .post-header { padding-top: 120px; }
    .lh-site .post-title { font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}
