:root {
    --ink: #171916;
    --ink-soft: #50544d;
    --paper: #fbfaf7;
    --white: #ffffff;
    --sand: #f0ede5;
    --sand-deep: #ded8ca;
    --olive: #5c6650;
    --olive-dark: #30382d;
    --line: rgba(23, 25, 22, 0.17);
    --line-light: rgba(255, 255, 255, 0.28);
    --success: #2f643c;
    --error: #9c3028;
    --warning: #7c5d10;
    --font-sans: Inter, "Helvetica Neue", Arial, sans-serif;
    --font-display: Iowan Old Style, Baskerville, "Times New Roman", serif;
    --shell: 1280px;
    --header-height: 86px;
    --radius: 2px;
    --space-section: clamp(5rem, 9vw, 9rem);
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

a {
    color: inherit;
    text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 400;
    line-height: 1.08;
}

h1,
h2 {
    font-family: var(--font-display);
    letter-spacing: -0.035em;
}

h1 {
    font-size: clamp(3.1rem, 7vw, 7.25rem);
}

h2 {
    font-size: clamp(2.25rem, 4.7vw, 4.7rem);
}

h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
}

::selection {
    background: var(--olive-dark);
    color: var(--white);
}

:focus-visible {
    outline: 3px solid #b35c21;
    outline-offset: 4px;
}

.shell {
    width: min(calc(100% - 3rem), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    color: var(--ink);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

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

.eyebrow {
    margin-bottom: 1.1rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.78);
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    padding: 0.85rem 1.35rem;
    background: var(--ink);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    border-color: var(--olive-dark);
    background: var(--olive-dark);
}

.button--small {
    min-height: 2.8rem;
    padding: 0.65rem 1rem;
    font-size: 0.7rem;
}

.button--light {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.button--light:hover {
    border-color: var(--sand);
    background: var(--sand);
    color: var(--ink);
}

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

.button--outline:hover {
    color: var(--white);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.text-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.7rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.3;
    text-decoration: none;
    text-transform: uppercase;
    transition: gap 180ms ease, opacity 180ms ease;
}

.text-link:hover {
    gap: 1rem;
    opacity: 0.68;
}

.text-link--light {
    color: var(--white);
}

.mobile-link {
    display: none;
}

/* Header */
.site-header {
    position: relative;
    z-index: 100;
    height: var(--header-height);
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.96);
}

.home-page .site-header {
    position: absolute;
    inset: 0 0 auto;
    border-bottom-color: var(--line-light);
    background: rgba(255, 255, 255, 0.94);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    width: clamp(12rem, 16vw, 15.5rem);
    height: auto;
}

.site-nav,
.site-nav__links,
.site-nav__actions {
    display: flex;
    align-items: center;
}

.site-nav {
    gap: clamp(2rem, 4vw, 4rem);
}

.site-nav__links {
    gap: clamp(1.25rem, 2.2vw, 2.25rem);
}

.site-nav__actions {
    gap: 1rem;
}

.site-nav__links a {
    position: relative;
    padding-block: 0.65rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav__links a::after {
    position: absolute;
    right: 0;
    bottom: 0.3rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav__links a:hover::after,
.site-nav__links a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.language-switcher--mobile {
    display: none;
}

.language-link {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    opacity: 0.58;
    transition: background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.language-link:hover,
.language-link[aria-current="page"] {
    border-color: rgba(23, 25, 22, 0.28);
    background: rgba(23, 25, 22, 0.06);
    opacity: 1;
}

.language-flag {
    display: block;
    width: 1.65rem;
    height: 1.05rem;
    border-radius: 0.08rem;
    box-shadow: 0 0 0 1px rgba(23, 25, 22, 0.18);
}

.menu-toggle {
    display: none;
    min-width: 3rem;
    min-height: 3rem;
    border: 0;
    padding: 0;
    background: transparent;
}

.menu-toggle__label {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.menu-toggle__icon {
    display: grid;
    width: 1.6rem;
    gap: 0.42rem;
}

.menu-toggle__icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(0.22rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-0.22rem) rotate(-45deg);
}

/* Home hero */
.hero {
    position: relative;
    display: grid;
    min-height: min(900px, 100svh);
    align-items: end;
    overflow: hidden;
    background: var(--olive-dark);
    color: var(--white);
}

.hero__media,
.hero__veil {
    position: absolute;
    inset: 0;
}

.hero__media {
    background: var(--olive-dark) url("/assets/media/hero-poster.webp") center / cover no-repeat;
}

.hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__veil {
    background: linear-gradient(180deg, rgba(18, 21, 17, 0.2) 12%, rgba(18, 21, 17, 0.72) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-block: calc(var(--header-height) + 7rem) clamp(7rem, 13vh, 10rem);
}

.hero h1 {
    max-width: 11ch;
    margin-bottom: 1.5rem;
}

.hero__lead {
    max-width: 42rem;
    margin-bottom: 2.2rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.home-page h1,
.home-page h2 {
    text-wrap: balance;
}

.home-page .hero__lead,
.home-page .intro-grid .large-copy,
.home-page .property-card__body > p:not(.card-meta),
.home-page .booking-band__inner > div:last-child p,
.home-page .careers-teaser p:not(.eyebrow) {
    text-wrap: pretty;
}

html[lang="el"] .home-page h1,
html[lang="el"] .home-page h2 {
    letter-spacing: -0.025em;
    line-height: 1.12;
}

.hero__scroll {
    position: absolute;
    z-index: 3;
    right: max(1.5rem, calc((100vw - var(--shell)) / 2));
    bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.hero__scroll i {
    display: block;
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.7);
}

/* Shared sections */
.section {
    padding-block: var(--space-section);
}

.section--sand {
    background: var(--sand);
}

.section--intro {
    border-bottom: 1px solid var(--line);
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(10rem, 0.6fr) minmax(0, 1.7fr);
    gap: clamp(3rem, 8vw, 9rem);
}

.intro-grid > .eyebrow {
    padding-top: 0.8rem;
}

.intro-grid__content {
    grid-column: 2;
}

.display-heading {
    max-width: 18ch;
    margin-bottom: 2rem;
}

.large-copy {
    max-width: 48rem;
    color: var(--ink-soft);
    font-size: clamp(1.1rem, 1.7vw, 1.4rem);
    line-height: 1.65;
}

.intro-grid .text-link {
    margin-top: 1.25rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.section-heading h2 {
    max-width: 14ch;
    margin-bottom: 0;
}

.home-page #properties .section-heading h2 {
    max-width: 15ch;
}

/* Properties */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2.7vw, 2.7rem);
}

.property-card {
    min-width: 0;
}

.property-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--sand-deep);
}

.property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.property-card__image span {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(251, 250, 247, 0.94);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transform: translateY(calc(100% + 1rem));
    transition: transform 260ms ease;
}

.property-card__image:hover img,
.property-card__image:focus-visible img {
    transform: scale(1.035);
}

.property-card__image:hover span,
.property-card__image:focus-visible span {
    transform: translateY(0);
}

.property-card__body {
    padding-top: 1.5rem;
}

.property-card__body h3 {
    margin-bottom: 1rem;
}

.property-card__body > p:not(.card-meta) {
    margin-bottom: 1rem;
    color: var(--ink-soft);
}

.card-meta {
    margin-bottom: 0.65rem;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-band {
    padding-block: clamp(4rem, 7vw, 6.5rem);
    background: var(--olive-dark);
    color: var(--white);
}

.booking-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.booking-band h2 {
    max-width: 14ch;
    margin-bottom: 0;
    font-size: clamp(2.3rem, 4vw, 4.3rem);
}

.booking-band__inner > div:last-child p {
    margin-bottom: 1.6rem;
    color: rgba(255, 255, 255, 0.76);
}

.careers-teaser__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.careers-teaser h2 {
    max-width: 12ch;
}

.careers-teaser p:not(.eyebrow) {
    max-width: 34rem;
    margin-bottom: 2rem;
    color: var(--ink-soft);
}

.careers-teaser__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.careers-teaser__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page headers */
.page-hero {
    position: relative;
    min-height: clamp(30rem, 68vh, 48rem);
    border-bottom: 1px solid var(--line);
    background: var(--sand);
}

.page-hero::after {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(43vw, 45rem);
    background: linear-gradient(135deg, transparent, rgba(92, 102, 80, 0.12));
    content: "";
    pointer-events: none;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    flex-direction: column;
    justify-content: end;
    padding-block: clamp(5rem, 10vw, 9rem);
}

.page-hero h1 {
    max-width: 14ch;
    margin-bottom: 1.5rem;
    font-size: clamp(3.5rem, 7.3vw, 7rem);
}

.page-hero__inner > p:last-child:not(.eyebrow) {
    max-width: 42rem;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.page-hero--compact {
    min-height: clamp(25rem, 53vh, 38rem);
}

.page-hero--compact h1 {
    font-size: clamp(3.3rem, 6vw, 6rem);
}

.property-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
    padding-block: clamp(3rem, 7vw, 7rem);
    border-bottom: 1px solid var(--line);
}

.property-feature:first-child {
    padding-top: 0;
}

.property-feature:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.property-feature--reverse .property-feature__media {
    order: 2;
}

.property-feature__media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--sand);
}

.property-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-feature__content h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 4.3vw, 4.2rem);
}

.property-feature__content > p:not(.eyebrow, .card-meta) {
    max-width: 34rem;
    margin: 1.5rem 0 2rem;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

/* About */
.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    align-items: center;
    gap: clamp(3rem, 9vw, 9rem);
}

.story-image {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-copy h2 {
    margin-bottom: 2rem;
}

.story-copy > p:last-child {
    color: var(--ink-soft);
}

.founder-profile {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.72fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.founder-profile__copy h2 {
    margin-bottom: 1.75rem;
}

.founder-profile__copy > p:not(.eyebrow) {
    max-width: 48rem;
}

.founder-profile__copy > p:last-of-type {
    color: var(--ink-soft);
}

.founder-profile__portrait {
    overflow: hidden;
    width: min(100%, 28rem);
    aspect-ratio: 1;
    justify-self: end;
    margin: 0;
    border-radius: 50%;
    background: var(--paper-deep);
}

.founder-profile__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.founder-highlights li {
    padding: 1rem 1.25rem 1rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.leadership-heading {
    align-items: end;
}

.leadership-heading > p {
    max-width: 31rem;
    margin: 0;
    color: var(--ink-soft);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
    gap: clamp(1rem, 2vw, 1.75rem);
}

.leader-card {
    min-width: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
}

.leader-card__media {
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 1.4rem;
    background: var(--paper-deep);
}

.leader-card__media img,
.leader-card__placeholder {
    width: 100%;
    height: 100%;
}

.leader-card__media img {
    object-fit: cover;
}

.leader-card__placeholder {
    display: grid;
    place-items: center;
    background: var(--olive);
    color: var(--white);
}

.leader-card__placeholder span {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.04em;
}

.leader-card h3 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.leader-card__role {
    margin-bottom: 0.9rem;
    color: var(--olive);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.leader-card__body > p:last-child {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

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

.values-grid article {
    padding: 2rem clamp(1.25rem, 3vw, 3rem) 0;
    border-right: 1px solid var(--line);
}

.values-grid article:first-child {
    padding-left: 0;
}

.values-grid article:last-child {
    border-right: 0;
}

.values-grid span {
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.values-grid h3 {
    margin: 3.5rem 0 1rem;
}

.values-grid p {
    color: var(--ink-soft);
}

.image-quote {
    position: relative;
    display: grid;
    min-height: min(48rem, 80vh);
    align-items: end;
    overflow: hidden;
    background: var(--olive-dark);
    color: var(--white);
}

.image-quote > img,
.image-quote__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.image-quote > img {
    object-fit: cover;
}

.image-quote__veil {
    background: linear-gradient(90deg, rgba(19, 24, 18, 0.82), rgba(19, 24, 18, 0.2));
}

.image-quote__content {
    position: relative;
    z-index: 1;
    padding-block: clamp(5rem, 10vw, 9rem);
}

.image-quote h2 {
    max-width: 13ch;
    margin-bottom: 2rem;
}

/* Contact and forms */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 52rem);
    justify-content: center;
}

.form-panel,
.application-panel {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

.form-heading {
    margin-bottom: 2.5rem;
}

.form-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.form-heading > p:last-child {
    color: var(--ink-soft);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1.25rem;
}

.field {
    min-width: 0;
}

.field--full {
    grid-column: 1 / -1;
}

.field > label,
.file-field + .field-help {
    display: block;
}

.field > label {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 3.4rem;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 0.85rem 0.9rem;
    background: var(--white);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 8rem;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--olive-dark);
    box-shadow: 0 0 0 2px rgba(48, 56, 45, 0.14);
    outline: 0;
}

.check-field {
    display: grid;
    grid-template-columns: 1.25rem minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    margin-block: 0.2rem;
}

.check-field input {
    width: 1.15rem;
    height: 1.15rem;
    margin: 0.2rem 0 0;
    accent-color: var(--olive-dark);
}

.check-field label {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 0.4rem;
}

.form-submit p {
    max-width: 23rem;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.form-submit .button {
    flex: 0 0 auto;
}

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

.notice {
    margin-bottom: 1.75rem;
    border-left: 4px solid var(--olive-dark);
    padding: 1rem 1.2rem;
    background: var(--sand);
}

.notice--success {
    border-color: var(--success);
    background: #edf5ef;
}

.notice--error {
    border-color: var(--error);
    background: #fbefed;
}

.notice--warning {
    border-color: var(--warning);
    background: #faf4df;
}

.small-copy,
.field-help {
    color: var(--ink-soft);
    font-size: 0.8rem;
}

/* Careers */
.careers-hero {
    border-bottom: 1px solid var(--line);
    padding-block: clamp(4.5rem, 7vw, 6rem);
    background: var(--sand);
}

.careers-hero__inner {
    max-width: 62rem;
    margin-inline: auto;
}

.careers-hero h1 {
    max-width: 14ch;
    margin-bottom: 1.5rem;
}

.careers-hero .large-copy {
    max-width: 48rem;
    margin-bottom: 0;
}

.jobs-section {
    padding-top: clamp(4rem, 6vw, 6rem);
}

.role-count {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.job-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.job-card {
    display: flex;
    min-height: 13rem;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid var(--line);
    border-radius: 0.25rem;
    padding: clamp(1.35rem, 3vw, 2rem);
    color: inherit;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.job-card:hover {
    border-color: var(--ink);
    background: var(--sand);
    transform: translateY(-0.2rem);
}

.job-card:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid var(--olive-dark);
    outline-offset: 3px;
}

.job-card h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    overflow-wrap: anywhere;
}

.job-card__main {
    flex: 1;
}

.job-card__main > p:last-child {
    max-width: 42rem;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.job-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-top: auto;
    color: var(--ink-soft);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.job-card__arrow {
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.job-card:hover .job-card__arrow {
    background: var(--ink);
    color: var(--white);
    transform: translateX(0.25rem);
}

@media (min-width: 900px) {
    .job-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .job-card {
        min-height: 14rem;
    }
}

.empty-state {
    max-width: 48rem;
    border-block: 1px solid var(--line);
    padding-block: 3rem;
}

.empty-state h3 {
    margin-bottom: 1rem;
}

.empty-state p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.recruitment-note h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.recruitment-note__heading {
    margin-bottom: 3rem;
}

.recruitment-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recruitment-steps li {
    border-top: 1px solid var(--line);
    padding: 1.35rem 1rem 0;
}

.recruitment-steps li span {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.recruitment-steps li strong {
    display: block;
    margin-bottom: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
}

.recruitment-steps li p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.recruitment-note__privacy {
    max-width: 48rem;
    margin: 2.5rem 0 0;
}

/* Job detail */
.job-banner {
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
    max-height: min(75vh, 48rem);
    max-height: min(75svh, 48rem);
    background: var(--sand);
}

.job-banner img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: min(75vh, 48rem);
    max-height: min(75svh, 48rem);
    object-fit: contain;
}

.job-hero {
    border-bottom: 1px solid var(--line);
    padding-block: clamp(2.5rem, 5vw, 4.5rem);
    background: var(--sand);
}

.job-hero__inner {
    display: grid;
    justify-items: start;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: clamp(1.75rem, 4vw, 3rem);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.job-hero h1 {
    max-width: 20ch;
    margin-bottom: 0;
    font-size: clamp(2.8rem, 5vw, 5rem);
    overflow-wrap: anywhere;
}

.job-meta-band {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.job-meta-band__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 2rem;
    padding-block: 1.25rem;
}

.job-published-date {
    margin: 0 auto 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.job-meta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

[data-job-share][hidden] {
    display: none;
}

.job-share-fallback {
    flex: 1 0 100%;
    max-width: 48rem;
    padding-top: 0.5rem;
}

.job-share-fallback label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.job-share-fallback input {
    width: 100%;
    min-height: 3rem;
    border: 1px solid var(--line);
    padding: 0.7rem 0.8rem;
    background: var(--sand);
    color: var(--ink);
}

.job-description__inner {
    max-width: 50rem;
    margin-inline: auto;
}

.job-description h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.job-rich-text p {
    margin: 0 0 1.25em;
}

.job-rich-text {
    overflow-wrap: anywhere;
}

.job-rich-text p:last-child {
    margin-bottom: 0;
}

.job-rich-text ul,
.job-rich-text ol {
    margin: 0 0 1.25em;
    padding-left: 1.5rem;
}

.job-rich-text li + li {
    margin-top: 0.45em;
}

.job-rich-text .ql-size-small {
    font-size: 0.875em;
}

.job-rich-text .ql-size-large {
    font-size: 1.25em;
}

.detail-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    position: relative;
    border-top: 1px solid var(--line);
    padding: 1rem 0 1rem 1.7rem;
}

.detail-list li::before {
    position: absolute;
    top: 1.65rem;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--olive);
    content: "";
}

.application-panel {
    max-width: 58rem;
    margin-inline: auto;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    background: var(--white);
}

.job-application-section {
    scroll-margin-top: calc(var(--header-height) + 1rem);
    background: var(--sand);
}

.application-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.application-submit {
    grid-column: 1 / -1;
    justify-self: start;
}

.file-field input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.file-field > label {
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px dashed var(--ink-soft);
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.file-field input:focus-visible + label {
    outline: 3px solid #b35c21;
    outline-offset: 3px;
}

.file-name {
    display: block;
    overflow: hidden;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.field-help {
    margin: 0.4rem 0 0;
}

.field-error {
    margin: 0.45rem 0 0;
    color: var(--error);
    font-size: 0.78rem;
    font-weight: 650;
}

[aria-invalid="true"] {
    border-color: var(--error) !important;
}

.status-page {
    display: grid;
    min-height: 70vh;
    place-items: center;
}

.status-page__inner {
    padding-block: 6rem;
}

.status-page h1 {
    max-width: 12ch;
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.status-page p:not(.eyebrow) {
    max-width: 38rem;
    margin-bottom: 2rem;
    color: var(--ink-soft);
}

/* Privacy */
.legal-layout {
    display: grid;
    grid-template-columns: minmax(11rem, 0.35fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(3rem, 9vw, 9rem);
}

.legal-nav {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    display: grid;
    border-top: 1px solid var(--line);
}

.legal-nav a {
    border-bottom: 1px solid var(--line);
    padding-block: 0.75rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.legal-copy {
    max-width: 52rem;
}

.legal-lead {
    margin-bottom: 5rem;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.35;
}

.legal-copy section {
    scroll-margin-top: calc(var(--header-height) + 2rem);
    margin-bottom: 4rem;
}

.legal-copy h2 {
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    font-family: var(--font-sans);
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.legal-copy h3 {
    margin: 2rem 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.legal-copy p,
.legal-copy li {
    color: var(--ink-soft);
}

.legal-copy li + li {
    margin-top: 0.65rem;
}

/* Footer */
.site-footer {
    padding-top: clamp(4rem, 7vw, 7rem);
    background: #171916;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    gap: clamp(3rem, 8vw, 8rem);
    padding-bottom: clamp(4rem, 7vw, 6rem);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.footer-brand img {
    display: block;
    width: clamp(16rem, 24vw, 20rem);
    max-width: 100%;
    height: auto;
}

.footer-intro p {
    max-width: 25rem;
    color: rgba(255, 255, 255, 0.62);
}

.footer-heading {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.54);
    font-family: var(--font-sans);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact a {
    text-decoration-color: transparent;
    transition: text-decoration-color 180ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    text-decoration-color: currentColor;
}

.footer-contact {
    display: grid;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.76);
    font-style: normal;
}

.footer-contact__email {
    display: grid;
    gap: 0.1rem;
}

.footer-contact__label {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-contact__email a {
    overflow-wrap: anywhere;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.15rem;
}

.footer-social-link {
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.82);
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-social-link:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-social-link svg {
    width: 1.2rem;
    height: 1.2rem;
}

.footer-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-block: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
}

.footer-base p {
    margin-bottom: 0;
}

@media (max-width: 1020px) {
    :root {
        --header-height: 76px;
    }

    .shell {
        width: min(calc(100% - 2rem), var(--shell));
    }

    .js .menu-toggle {
        display: grid;
        place-items: center;
    }

    .js .language-switcher--mobile {
        display: flex;
    }

    .js body.menu-open .language-switcher--mobile {
        visibility: hidden;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .site-nav {
        width: 100%;
        padding-bottom: 1rem;
    }

    .js .site-nav {
        position: fixed;
        inset: var(--header-height) 0 0;
        display: none;
        overflow-y: auto;
        align-items: stretch;
        flex-direction: column;
        gap: 2.5rem;
        padding: 2rem 1rem 3rem;
        background: var(--paper);
    }

    .js .site-nav[data-open] {
        display: flex;
    }

    .site-nav__links {
        align-items: stretch;
        flex: 1;
        flex-direction: column;
        gap: 0;
    }

    .site-nav__links a {
        border-bottom: 1px solid var(--line);
        padding-block: 1rem;
        font-family: var(--font-display);
        font-size: clamp(1.8rem, 6vw, 3rem);
        font-weight: 400;
        letter-spacing: -0.02em;
        text-transform: none;
    }

    .site-nav__links a::after {
        display: none;
    }

    .site-nav__actions {
        justify-content: space-between;
    }

    .site-nav__actions .button {
        flex: 1;
    }

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

    .property-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 0.7rem);
    }

    .property-card__image span {
        transform: none;
    }

    .contact-layout,
    .job-detail__layout {
        gap: 4rem;
    }

    .job-detail__layout {
        grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    }

    .founder-profile {
        gap: 4rem;
    }

    .leadership-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 3rem;
    }
}

@media (max-width: 760px) {
    :root {
        --space-section: 4.5rem;
    }

    h1 {
        font-size: clamp(2.8rem, 14vw, 4.3rem);
    }

    h2 {
        font-size: clamp(2.15rem, 11vw, 3.4rem);
    }

    .hero {
        min-height: 46rem;
    }

    .hero__media video {
        display: none;
    }

    .hero__content {
        padding-bottom: 7.5rem;
    }

    .hero__scroll {
        right: 1rem;
        bottom: 1rem;
    }

    .intro-grid,
    .booking-band__inner,
    .careers-teaser__inner,
    .story-grid,
    .contact-layout,
    .job-detail__layout,
    .recruitment-note__inner,
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro-grid > .eyebrow {
        padding-top: 0;
    }

    .intro-grid__content {
        grid-column: 1;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .desktop-link {
        display: none;
    }

    .mobile-link {
        display: inline-flex;
        margin-top: 2rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 3.25rem;
    }

    .property-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .property-card__image {
        aspect-ratio: 4 / 4.5;
    }

    .booking-band__inner {
        align-items: start;
    }

    .careers-teaser__image {
        order: -1;
    }

    .page-hero {
        min-height: 34rem;
    }

    .page-hero--compact {
        min-height: 29rem;
    }

    .page-hero h1,
    .page-hero--compact h1,
    .job-hero h1 {
        font-size: clamp(2.9rem, 13vw, 4.5rem);
    }

    .property-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .property-feature--reverse .property-feature__media {
        order: 0;
    }

    .property-feature__media {
        aspect-ratio: 4 / 3;
    }

    .story-image {
        aspect-ratio: 4 / 4.5;
    }

    .founder-profile {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .founder-profile__portrait {
        order: -1;
        width: min(78vw, 23rem);
        justify-self: start;
    }

    .founder-highlights {
        grid-template-columns: 1fr;
    }

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

    .leadership-heading > p {
        max-width: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-grid article,
    .values-grid article:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 1.5rem 0;
    }

    .values-grid article:last-child {
        border-bottom: 0;
    }

    .values-grid h3 {
        margin: 1.5rem 0 0.75rem;
    }

    .image-quote {
        min-height: 40rem;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .application-form,
    .recruitment-steps {
        grid-template-columns: 1fr;
    }

    .application-submit {
        grid-column: auto;
        width: 100%;
    }

    .field--full {
        grid-column: auto;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit .button {
        width: 100%;
    }

    .application-panel,
    .legal-nav {
        position: static;
    }

    .job-meta-band__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .job-meta-band__actions .button {
        padding-inline: 0.75rem;
    }

    .recruitment-steps li {
        padding-inline: 0;
    }

    .recruitment-note .small-copy {
        grid-column: auto;
    }

    .legal-nav {
        display: none;
    }

    .legal-lead {
        margin-bottom: 3.5rem;
    }

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

    .footer-intro {
        grid-column: 1 / -1;
    }

    .footer-base {
        align-items: start;
        flex-direction: column;
        gap: 0.65rem;
    }
}

@media (max-width: 440px) {
    .shell {
        width: min(calc(100% - 1.5rem), var(--shell));
    }

    .header-inner {
        gap: 0.25rem;
    }

    .brand img {
        width: 9rem;
    }

    .hero .button-row,
    .property-feature .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .hero .button,
    .property-feature .button {
        width: 100%;
    }

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

    .footer-intro {
        grid-column: auto;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .hero__media video {
        display: none;
    }
}

@media (prefers-contrast: more) {
    :root {
        --line: rgba(23, 25, 22, 0.5);
    }

    .eyebrow,
    .card-meta,
    .small-copy,
    .field-help {
        color: var(--ink);
    }
}
