/* Global Resets & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b4513;
    --primary-dark: #5a2d0c;
    --text-color: #253045;
    --muted-text-color: #5f6b80;
    --heading-color: #111c2d;
    --bg-color: #ffffff;
    --surface-color: #ffffff;
    --navbar-bg-color: #e6e9ef;
    --border-color: #d9e0ec;
    --light-gray: #eef2f7;
    --brand-navy-950: #060f1f;
    --brand-navy-900: #0a1d3f;
    --brand-navy-800: #112a53;
    --brand-gold-500: #c9a24b;
    --brand-gold-400: #d8b96d;
    --brand-gold-100: #f6edd6;
}

html {
    min-height: 100%;
}

body {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    font-family: 'Schibsted Grotesk', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.site-shell {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Literata', Georgia, serif;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: var(--heading-color);
    line-height: 1.28;
}

h1 {
    font-size: clamp(2.15rem, 4vw, 3rem);
    margin-top: 0;
    margin-bottom: 1.3rem;
}

h2 {
    font-size: clamp(1.65rem, 2.5vw, 2.2rem);
    margin-top: 2rem;
}

h2.subtitle {
    font-family: 'Schibsted Grotesk', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--muted-text-color);
    margin-top: -0.75rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

p {
    margin-bottom: 1.15rem;
}

ul, ol {
    padding-left: 1.35rem;
    margin-bottom: 1.1rem;
}

li {
    margin-bottom: 0.45rem;
}

strong {
    font-weight: 700;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    flex: 0 0 auto;
    background-color: var(--navbar-bg-color);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: none;
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    min-height: 72px;
}

.branding-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: inherit;
    min-width: 0;
}

.branding-link:hover {
    color: inherit;
}

.site-header .logo {
    max-height: 80px;
    margin: 10px 6px;
}

.site-title {
    font-family: 'Literata', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: 0.02em;
    line-height: 1.18;
}

.site-title-subline {
    display: block;
    font-size: 0.94em;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--border-color);
    background: var(--surface-color);
    border-radius: 8px;
    padding: 9px 10px;
    cursor: pointer;
    line-height: 1;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--heading-color);
}

.menu-toggle span + span {
    margin-top: 4px;
}

.nav-overlay {
    display: none;
}

.sidebar-logo-link {
    display: none;
}

.site-navigation a[aria-disabled='true'] {
    pointer-events: none;
    cursor: default;
}

/* Navigation */
.site-navigation ul {
    list-style: none;
    display: flex;
    position: relative;
    gap: 0.45rem;
    padding-left: 0;
    margin-bottom: 0;
}

.site-navigation ul li {
    margin: 0;
    position: relative;
}

.site-navigation ul li a {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    padding: 0.9rem 0.8rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-root > a,
.site-navigation ul ul li.current-page > a {
    color: var(--heading-color);
    background-color: var(--light-gray);
}

/* Submenu */
.site-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 0.35rem;
    left: 0;
    background-color: var(--surface-color);
    padding: 0.4rem;
    min-width: 250px;
    z-index: 10;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 35px rgba(23, 36, 57, 0.12);
    gap: 0;
}

.site-navigation ul li > ul::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.site-navigation ul li:hover > ul,
.site-navigation ul li:focus-within > ul {
    display: flex;
}

.site-navigation ul ul li a {
    padding: 0.7rem 0.75rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.93rem;
    width: 100%;
    border-radius: 6px;
}

.site-navigation ul ul li a:hover {
    background-color: var(--light-gray);
    color: var(--heading-color);
}

/* Main Content Area */
.site-main {
    width: 100%;
    flex: 1 0 auto;
    padding: 2.5rem 0 3rem;
}

.site-main > .site-shell {
    padding: 0.75rem 0 0;
}

.site-main > .site-shell > * + * {
    margin-top: 1.75rem;
}

main {
    opacity: 0;
    animation: fadeIn 0.45s ease-out 0.1s forwards;
}

.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

article img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0 auto;
}

.content-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
    margin-top: 2rem;
}

/* Homepage */
.homepage {
    display: grid;
    gap: 3rem;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.8rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--brand-gold-400);
}

/* ── Hero – full-width immersive carousel ── */
.home-hero {
    position: relative;
    min-height: clamp(520px, 80vh, 760px);
    overflow: hidden;
    background-color: var(--brand-navy-900);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    margin-top: calc(-0.75rem - 2.5rem);
}

.home-hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero-carousel .carousel-inner {
    height: 100%;
}

.home-hero-carousel .carousel-item {
    height: 100%;
}

.home-hero-carousel .carousel-item-next.carousel-item-start,
.home-hero-carousel .carousel-item-prev.carousel-item-end {
    transition: opacity 1.8s ease;
}

.home-hero-carousel .active.carousel-item-start,
.home-hero-carousel .active.carousel-item-end {
    transition: opacity 1.8s ease;
}

.home-hero-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    display: block;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, rgba(6, 15, 31, 0.62) 0%, rgba(6, 15, 31, 0.32) 50%, rgba(6, 15, 31, 0.12) 100%);
    pointer-events: none;
}

.home-hero-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    min-height: clamp(520px, 80vh, 760px);
    max-width: min(1000px, 100%);
    padding-top: clamp(2.5rem, 6vw, 5rem);
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
    padding-left: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
    padding-right: 1.5rem;
    color: #f2f6ff;
}

.home-hero-copy h1 {
    margin: 0 0 1rem;
    color: #ffffff;
    line-height: 1.18;
    max-width: 18ch;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    text-shadow: 0 2px 20px rgba(6, 15, 31, 0.5);
}

.home-hero-copy > p {
    color: #d0daf0;
    max-width: 48ch;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    text-shadow: 0 1px 8px rgba(6, 15, 31, 0.35);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.homepage .home-hero-actions a.btn {
    padding: 0.78rem 1.5rem;
    border-radius: 999px;
}

.homepage .home-hero-actions .site-btn-primary {
    box-shadow: 0 9px 22px rgba(6, 15, 31, 0.22);
}

/* ── Inner page heroes ── */
.page-hero {
    position: relative;
    min-height: clamp(260px, 38vh, 420px);
    overflow: hidden;
    background-color: var(--brand-navy-900);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    margin-bottom: 2rem;
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(100deg, rgba(6, 15, 31, 0.72) 0%, rgba(6, 15, 31, 0.42) 55%, rgba(6, 15, 31, 0.2) 100%);
    pointer-events: none;
}

.page-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    min-height: clamp(260px, 38vh, 420px);
    max-width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
    padding: 2rem 0 2.25rem;
}

.page-hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 4.5vw, 3rem);
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(6, 15, 31, 0.5);
}

.meetings-content h2 {
    margin-top: 0;
}

/* ── Values Section ── */
.home-values {
    text-align: center;
}

.home-values-header {
    max-width: 640px;
    margin: 0 auto 2rem;
}

.home-values-header h2 {
    margin-top: 0;
}

.home-values-intro {
    color: var(--muted-text-color);
    font-size: 1.02rem;
}

.home-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.home-value-card {
    padding: 1.6rem 1.2rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--surface-color);
    box-shadow: 0 8px 20px rgba(10, 29, 63, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(10, 29, 63, 0.12);
}

.home-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-gold-100), rgba(216, 185, 109, 0.25));
    color: var(--brand-gold-500);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.home-value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--brand-navy-900);
}

.home-value-card p {
    color: var(--muted-text-color);
    font-size: 0.93rem;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ── Welcome / Story ── */
.home-story {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
}

.home-story-content,
.home-story-callout {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background-color: var(--surface-color);
    box-shadow: 0 14px 28px rgba(10, 29, 63, 0.08);
    padding: 1.5rem;
    align-content: center;
}

.home-story-content h2,
.home-story-callout h2 {
    margin: 0 0 0.85rem;
    color: var(--brand-navy-900);
}

.home-story-content p:last-child,
.home-story-callout p:last-child {
    margin-bottom: 0;
}

.home-story-callout {
    background:
        radial-gradient(circle at 105% -12%, rgba(216, 185, 109, 0.42), transparent 44%),
        linear-gradient(165deg, #fdf9ef, #ffffff 42%);
}

.home-story-callout .btn {
    margin-top: 1rem;
}

/* ── Why Join Section ── */
.home-why-join {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    background:
        radial-gradient(circle at 20% 80%, rgba(216, 185, 109, 0.12), transparent 50%),
        linear-gradient(160deg, var(--brand-navy-900), var(--brand-navy-800));
    color: #dbe5f7;
}

.home-why-join-header {
    max-width: 560px;
    margin: 0 auto 2rem;
}

.home-why-join-header h2 {
    color: #ffffff;
    margin-top: 0;
}

.home-why-join-header .home-kicker {
    color: var(--brand-gold-400);
}

.home-why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.home-why-card {
    padding: 1.4rem 1.1rem;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(216, 185, 109, 0.18);
    transition: background-color 0.2s ease;
}

.home-why-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.home-why-card > i {
    font-size: 1.4rem;
    color: var(--brand-gold-400);
    margin-bottom: 0.85rem;
    display: block;
}

.home-why-card h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.45rem;
}

.home-why-card p {
    font-size: 0.9rem;
    color: #b0c4e0;
    line-height: 1.55;
    margin-bottom: 0;
}

.home-quick-links {
    margin-top: 0;
}

.home-links-heading {
    margin-bottom: 1.2rem;
}

.home-links-heading h2 {
    margin: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.home-links-heading .home-kicker {
    color: var(--brand-gold-500);
    margin-bottom: 0.45rem;
}

.home-quick-links ul {
    margin-top: 0;
    gap: 1.2rem;
}

.home-quick-link-card {
    border: 1px solid var(--border-color);
    border-radius: 13px;
    background-color: var(--surface-color);
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(10, 29, 63, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    height: 100%;
}

.home-quick-link-card:hover {
    transform: translateY(-4px);
    border-color: rgba(17, 42, 83, 0.36);
    box-shadow: 0 18px 30px rgba(10, 29, 63, 0.16);
}

.home-quick-link-card img {
    margin-bottom: 0;
    border-radius: 0;
    aspect-ratio: 16 / 10;
}

.home-quick-link-title {
    margin: 0.95rem 1rem 0.25rem;
    color: var(--brand-navy-900);
}

.home-quick-link-meta {
    margin: 0 1rem 1rem;
    color: var(--muted-text-color);
    font-size: 0.9rem;
    line-height: 1.45;
}

aside.home-quick-links .home-quick-link-card .home-quick-link-meta {
    font-weight: 400;
}

@media (max-width: 1100px) {
    .home-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Aside / Quick Links */
aside.quick-links {
    border-left: none;
    padding-left: 0;
}

aside.quick-links h2 {
    font-size: 1.45rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

aside.quick-links ul {
    list-style: none;
    margin-top: 1.5rem;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
}

aside.quick-links li {
    margin-bottom: 0;
}

aside.quick-links a {
    display: block;
    color: var(--text-color);
    font-weight: 400;
    padding: 0;
}

aside.quick-links a span {
    font-weight: 700;
    display: block;
    line-height: 1.35;
}

aside.quick-links a:hover {
    color: var(--primary-color);
}

aside.quick-links img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 0.8rem;
    border: none !important;
    border-radius: 8px;
}

/* Footer */
.site-footer {
    width: 100%;
    flex: 0 0 auto;
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.93rem;
    color: var(--muted-text-color);
}

.site-footer p {
    margin-bottom: 0.4rem;
}

.site-footer a {
    color: inherit;
    text-decoration: underline;
}

.site-footer a:hover {
    color: var(--primary-color);
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Basic Responsive Adjustments */
@media (max-width: 1024px) {
    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1110;
    }

    .site-navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: min(330px, 86vw);
        height: 100vh;
        padding: 72px 20px 24px;
        background-color: var(--navbar-bg-color);
        border-right: 1px solid var(--border-color);
        box-shadow: 12px 0 28px rgba(17, 28, 45, 0.18);
        overflow-y: auto;
        transform: translateX(-102%);
        transition: transform 0.25s ease;
        z-index: 1100;
    }

    .sidebar-logo-link {
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 0.75rem 0.9rem;
        margin-bottom: 0.55rem;
    }

    .sidebar-logo {
        width: auto;
        max-height: 72px;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(16, 24, 40, 0.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 990;
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .site-navigation {
        transform: translateX(0);
    }

    body.nav-open .nav-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .site-navigation ul {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding-left: 0;
        gap: 0;
    }

    .site-navigation ul li {
        width: 100%;
        text-align: left;
    }

    .site-navigation ul li a {
        display: block;
        width: 100%;
        border-radius: 0;
        padding: 1rem 0.75rem;
        color: var(--text-color);
    }

    .site-navigation ul li a:hover {
        background-color: #ffffff;
        color: var(--heading-color);
    }

    .site-navigation ul li.current-root > a {
        background-color: transparent;
        color: var(--text-color);
    }

    .site-navigation ul ul {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        margin: 0;
        background-color: transparent;
        min-width: auto;
    }

    .site-navigation ul li > ul::before {
        content: none;
    }

    .site-navigation ul li:hover > ul {
        display: block;
    }

    .site-navigation ul ul li {
        border-bottom: none;
    }

    .site-navigation ul ul li a {
        padding: 0.65rem 0.7rem;
        font-size: 0.92rem;
        color: var(--text-color);
    }

    .site-navigation > ul > li.current-root:not(:has(> ul)) > a,
    .site-navigation ul ul li.current-page > a {
        color: var(--heading-color);
        background-color: #ffffff;
    }
}

@media (max-width: 992px) {
    .main-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    aside.quick-links {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 2.25rem;
        margin-top: 2.5rem;
    }

    aside.quick-links ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-story {
        grid-template-columns: 1fr;
    }

    aside.home-quick-links {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .home-why-join {
        padding: 2rem 1.2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .site-shell {
        width: min(1200px, calc(100% - 2.5rem));
    }

    .site-header-inner {
        min-height: 64px;
    }

    .branding-link {
        gap: 0.75rem;
    }

    .site-header .logo {
        max-height: 52px;
        margin: 6px 0;
    }

    .site-title {
        font-size: 20px;
    }

    .site-main {
        padding: 1.25rem 0 2.5rem;
    }

    .site-main > .site-shell {
        padding: 0.35rem 0 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h2.subtitle {
        margin-bottom: 1.25rem;
    }

    .content-two-column {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        margin-top: 1rem;
    }

    aside.quick-links {
        padding-top: 1.5rem;
        margin-top: 1.7rem;
    }

    aside.home-quick-links {
        padding-top: 0;
        margin-top: 0;
    }

    aside.quick-links ul {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-hero,
    .home-hero-copy {
        min-height: clamp(420px, 70vh, 560px);
    }

    .home-hero-copy {
        padding: 2rem 1.25rem;
    }

    .home-hero {
        margin-top: calc(-0.35rem - 1.25rem);
    }

    .page-hero {
        min-height: clamp(220px, 32vh, 320px);
        margin-bottom: 1.5rem;
    }

    .page-hero-copy {
        min-height: clamp(220px, 32vh, 320px);
        max-width: min(1200px, calc(100% - 2.5rem));
        padding: 1.5rem 0 1.75rem;
    }

    .page-hero-copy h1 {
        font-size: 2rem;
    }

    .home-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-hero-actions .btn,
    .home-story-callout .btn {
        width: 100%;
        text-align: center;
    }

    .home-story-content,
    .home-story-callout {
        padding: 1.2rem;
    }

    .home-values-grid,
    .home-why-join-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .home-why-join {
        padding: 1.6rem 1rem;
        border-radius: 14px;
    }
}

/* Shared content wrappers */
.breadcrumb-nav {
    margin-bottom: 1.75rem;
}

.breadcrumb-nav .breadcrumb {
    margin-bottom: 0;
    padding-left: 0;
    font-size: 0.92rem;
}

/* News pages */
.news-feed-list {
    display: grid;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.news-feed-item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 1.4rem;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--surface-color);
}

.news-feed-item__media {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.news-feed-item__media a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.news-feed-item__media img,
.news-feed-item__placeholder {
    width: 100%;
    height: 108px;
    object-fit: cover;
}

.news-feed-item__placeholder {
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: var(--muted-text-color);
    background-color: var(--light-gray);
}

.news-feed-item__date {
    font-size: 0.86rem;
    color: var(--muted-text-color);
}

.news-feed-item__content h2 {
    margin: 0 0 0.5rem;
    font-size: 1.55rem;
}

.news-feed-item__content p {
    color: #445067;
    margin-bottom: 1rem;
}

.news-feed-pagination {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.news-detail-article {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--surface-color);
    padding: 1.5rem;
}

.news-detail-header {
    margin-bottom: 1rem;
}

.news-detail-header h1 {
    margin-bottom: 0.5rem;
}

.news-detail-date {
    color: var(--muted-text-color);
}

.news-detail-image {
    margin-bottom: 1.5rem;
}

.news-detail-image img {
    border-radius: 10px;
    max-height: 430px;
}

.news-detail-back {
    margin-top: 1.3rem;
}

/* Calendar pages */
.calendar-page h1,
.calendar-page h2 {
    margin-bottom: 1rem;
}

.calendar-upcoming,
.calendar-past {
    margin-top: 1.8rem;
}

.calendar-event-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1.4rem;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--surface-color);
}

.calendar-event-item + .calendar-event-item {
    margin-top: 1rem;
}

.calendar-event-item__date {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background-color: #f8fafc;
    text-align: center;
    padding: 0.65rem 0.4rem;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: var(--muted-text-color);
    max-height: 110px;
    align-self: center;
}

.calendar-event-item__date strong {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin: 0.2rem 0;
}

.calendar-event-item__content h3 {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
}

.calendar-event-item__time,
.calendar-event-item__location {
    color: var(--muted-text-color);
    margin-bottom: 0.4rem;
}

.calendar-event-item__actions {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-top: 0.7rem;
}

.calendar-pagination {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.calendar-past-list {
    display: grid;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.calendar-past-item {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.95rem 1rem;
    background-color: var(--surface-color);
}

.calendar-past-item__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline;
    margin-bottom: 0.35rem;
}

.calendar-past-item__header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.calendar-past-item__header time {
    color: var(--muted-text-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.event-detail-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--surface-color);
    overflow: hidden;
}

.event-detail-card__header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.35rem 1.5rem 1rem;
}

.event-detail-card__header h1 {
    margin: 0;
}

.event-detail-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.event-detail-card__meta h2 {
    margin: 0 0 0.25rem;
    font-family: 'Schibsted Grotesk', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.8rem;
    color: var(--muted-text-color);
}

.event-detail-card__meta p {
    margin: 0;
}

.event-detail-card__description {
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
}

.event-detail-card__actions {
    border-top: 1px solid var(--border-color);
    padding: 1rem 1.5rem 1.25rem;
}

.event-detail-back {
    margin-top: 1.3rem;
}

@media (max-width: 768px) {
    .news-feed-item,
    .calendar-event-item {
        grid-template-columns: 1fr;
    }

    .news-feed-item__media img,
    .news-feed-item__placeholder {
        height: 180px;
    }

    .calendar-event-item__date {
        max-width: 120px;
    }

    .calendar-past-item__header {
        flex-direction: column;
        gap: 0.2rem;
    }

    .event-detail-card__meta {
        grid-template-columns: 1fr;
    }
}

/* --- Page Specific Styles Below --- */

/* --- Login / Forms --- */
/* Reusing for Enquiry Form */
.enquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--heading-color);
}
.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form select,
.enquiry-form .form-select,
.enquiry-form textarea {
    width: 100%;
    padding: 0.9rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box; /* Include padding in width */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form .form-select:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1);
    outline: none;
}

.enquiry-form textarea {
    min-height: 150px;
    resize: vertical;
}
.enquiry-form .required {
    color: var(--primary-color);
    font-weight: bold;
}
.enquiry-form .form-actions {
    margin-top: 1rem;
}
.enquiry-form .form-note {
    font-size: 0.9em;
    color: #555;
    margin-top: 1rem;
}

/* --- Content Layouts --- */
.content-two-column > h1,
.content-two-column > h2.subtitle {
    grid-column: 1 / -1; /* Span across columns */
}

/* Location Page Specific */
.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for details/map */
    gap: 2rem;
    margin-top: 2rem;
}

.location-image img {
    border: 1px solid var(--border-color);
    padding: 8px;
    background-color: var(--surface-color);
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    border-radius: 4px;
}

.location-map iframe {
    width: 100%;
    min-height: 450px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Responsive Location */
@media (max-width: 768px) {
    .content-two-column,
    .location-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .location-image {
        text-align: center; /* Center image when stacked */
    }
}

/* Photo Gallery Grid */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjust min size */
    gap: 1rem; /* Adjust gap */
    margin-top: 2rem;
}

.gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--border-color);
    padding: 6px;
    background-color: var(--surface-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

.gallery-item img:hover {
    transform: scale(1.04);
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

/* Donation/Award Table Styling */
.site-main article table:not(.donation-table):not(.award-table) {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
}

.site-main article table:not(.donation-table):not(.award-table) th,
.site-main article table:not(.donation-table):not(.award-table) td {
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--border-color);
    vertical-align: top;
}

.site-main article table:not(.donation-table):not(.award-table) th {
    background-color: var(--light-gray);
    color: var(--heading-color);
}

.donation-table, .award-table {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 1.75rem;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.donation-table th,
.award-table th,
.donation-table td,
.award-table td {
    text-align: left;
    padding: 12px 10px; /* Increased padding */
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}
.donation-table th,
.award-table th {
    background-color: var(--light-gray);
    font-weight: 700;
    color: var(--heading-color);
    border-top: 1px solid var(--border-color);
}
.donation-table tr:hover,
.award-table tr:hover {
    background-color: #fcfcfc;
}
.donation-amount {
    text-align: right;
    white-space: nowrap;
    font-weight: 700;
}

/* News Archive List */
.news-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.8rem 0;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 1.8rem;
    align-items: flex-start;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item-image {
    flex: 0 0 130px; /* Slightly larger image */
    height: 100px;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 4px;
}
.news-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item-content {
    flex: 1;
    min-width: 200px;
}
.news-item h2 {
    margin: 0 0 0.3rem 0;
    font-size: 1.5em;
    line-height: 1.3;
}
.news-item h2 a {
    text-decoration: none;
    color: var(--heading-color);
    transition: color 0.3s ease;
}
 .news-item h2 a:hover {
    color: var(--primary-color);
}
.news-item .date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 0.5rem;
    display: block;
}
.news-list-item {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.news-list-item:first-child {
    padding-top: 0.5rem;
}

.news-list-item:last-child {
    border-bottom: none;
}
.archive-note {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9em;
}
@media (max-width: 500px) {
     .news-item-image {
         flex-basis: 100%;
         height: 150px;
    }
}

/* Links Page */
.links-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.links-list li {
    margin-bottom: 1rem; /* Increased spacing */
    padding-bottom: 1rem;
    border-bottom: 1px dotted #eee;
}
.links-list li:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
}
.links-list a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700; /* Bolder links */
    font-size: 1.1em;
    transition: color 0.3s ease;
}
.links-list a:hover {
    color: var(--primary-dark);
}
.links-list span {
    display: block;
    font-size: 0.95em;
    color: #555;
    margin-top: 0.25rem;
    line-height: 1.5;
}

/* Ensure block elements like article/aside handle spacing correctly */
.site-main > .site-shell > article,
.site-main > .site-shell > aside,
.site-main > .site-shell > .main-grid,
.site-main > .site-shell > .content-full-width,
.site-main > .site-shell > .content-two-column {
    margin-top: 0;
}

.site-main > .site-shell > h1 + h2.subtitle + article,
.site-main > .site-shell > h1 + h2.subtitle + .main-grid,
.site-main > .site-shell > h1 + h2.subtitle + .content-full-width,
.site-main > .site-shell > h1 + h2.subtitle + .content-two-column {
    margin-top: 0.75rem;
}

.site-main > .site-shell > h1 + article,
.site-main > .site-shell > h1 + .main-grid,
.site-main > .site-shell > h1 + .content-full-width,
.site-main > .site-shell > h1 + .content-two-column {
    margin-top: 0.75rem;
}

/* ==============================================================
   Aldworth public identity — The Open Table
   ============================================================== */
:root {
    --brand-field: #171e22;
    --brand-field-deep: #0d1215;
    --brand-heritage: #171e22;
    --brand-action: #765e31;
    --brand-linen: #f4f3ee;
    --brand-porcelain: #ffffff;
    --brand-ink: #18231f;
    --brand-muted: #606863;
    --brand-rule: #d2d2ca;
    --brand-display: 'Literata', 'Iowan Old Style', Georgia, serif;
    --brand-body: 'Schibsted Grotesk', Arial, sans-serif;
    --brand-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --primary-color: var(--brand-heritage);
    --primary-dark: var(--brand-field);
    --text-color: var(--brand-ink);
    --muted-text-color: var(--brand-muted);
    --heading-color: var(--brand-ink);
    --bg-color: var(--brand-linen);
    --surface-color: var(--brand-porcelain);
    --navbar-bg-color: var(--brand-field);
    --border-color: var(--brand-rule);
    --light-gray: var(--brand-linen);
    --brand-navy-950: var(--brand-field-deep);
    --brand-navy-900: var(--brand-field);
    --brand-navy-800: var(--brand-field);
    --brand-gold-500: var(--brand-action);
    --brand-gold-400: var(--brand-action);
    --brand-gold-100: var(--brand-linen);
}

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

body {
    font-family: var(--brand-body);
    color: var(--brand-ink);
    background: var(--brand-linen);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--brand-display);
    color: var(--brand-ink);
    letter-spacing: -0.025em;
}

a { color: var(--brand-heritage); }
a:hover { color: var(--brand-field); }

:focus-visible {
    outline: 3px solid var(--brand-heritage);
    outline-offset: 4px;
}

.site-shell {
    width: min(1400px, calc(100% - 3rem));
}

.site-header {
    background: var(--brand-field);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.site-header-inner {
    min-height: 86px;
    gap: clamp(1rem, 2vw, 2rem);
}

.branding-link {
    gap: 0.75rem;
    flex: 0 0 auto;
}

.site-header .logo {
    width: 42px;
    height: 58px;
    margin: 7px 0;
    object-fit: contain;
}

.site-title {
    color: #fff;
    font-family: var(--brand-body);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-title-subline {
    margin-top: 0.32rem;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    opacity: 0.72;
}

.site-navigation {
    margin-left: auto;
}

.site-navigation > ul {
    gap: clamp(0.1rem, 0.8vw, 0.55rem);
}

.site-navigation ul li a {
    position: relative;
    padding: 0.75rem 0.6rem;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.site-navigation > ul > li > a::after {
    position: absolute;
    right: 0.6rem;
    bottom: 0.38rem;
    left: 0.6rem;
    height: 1px;
    background: #fff;
    content: '';
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--brand-ease);
}

.site-navigation > ul > li > a:hover::after,
.site-navigation > ul > li.current-root > a::after {
    transform: scaleX(1);
}

.site-navigation ul li a:hover,
.site-navigation ul li.current-root > a {
    color: #fff;
    background: transparent;
}

.site-navigation ul ul {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border: 0;
    border-top: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: inset 0 4px 0 var(--brand-action), 10px 18px 42px rgba(12, 37, 32, 0.22);
}

.site-navigation ul ul li a,
.site-navigation ul ul li a:hover,
.site-navigation ul ul li.current-page > a {
    color: var(--brand-ink);
    background: transparent;
}

.site-navigation ul ul li a:hover,
.site-navigation ul ul li.current-page > a {
    background: var(--brand-linen);
}

.header-enquiry {
    flex: 0 0 auto;
    padding: 0.72rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.66);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-enquiry:hover,
.header-enquiry:focus {
    border-color: var(--brand-action);
    color: #fff;
    background: var(--brand-action);
}

.menu-toggle {
    border-color: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    background: transparent;
}

.menu-toggle span { background: #fff; }
.site-main { background: var(--brand-linen); }
.is-home .site-main { padding: 0; }

.is-home .site-main > .site-shell {
    width: 100%;
    max-width: none;
    padding: 0;
}

.is-home main {
    opacity: 1;
    animation: none;
}

.open-table-home { overflow: hidden; }

.ot-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    min-height: min(720px, calc(100vh - 86px));
    background: var(--brand-field);
}

.ot-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 7vw, 6.5rem) clamp(2.5rem, 5vw, 5.5rem) clamp(4rem, 7vw, 6.5rem) max(3rem, calc((100vw - 1400px) / 2 + 1.5rem));
    color: #fff;
}

.ot-place-label {
    margin: 0 0 clamp(1.75rem, 4vw, 3.5rem);
    color: inherit;
    font-family: var(--brand-body);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ot-hero h1 {
    max-width: 12ch;
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    font-size: clamp(3.4rem, 5.25vw, 5.25rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.ot-hero h1 > span,
.ot-hero h1 em {
    display: block;
}

.ot-hero h1 em {
    color: #fff;
    font-style: normal;
}

.ot-hero-intro {
    max-width: 38rem;
    margin: 0 0 2.25rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.65;
}

.ot-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn.site-btn-primary,
.btn-submit {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.25rem;
    border: 1px solid var(--brand-action);
    border-radius: 2px;
    background: var(--brand-action);
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-family: var(--brand-body);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn.site-btn-primary:visited,
.btn-submit:visited { color: #fff; }

.btn.site-btn-primary:hover,
.btn.site-btn-primary:focus,
.btn-submit:hover,
.btn-submit:focus {
    border-color: var(--brand-field);
    background: var(--brand-field);
    box-shadow: none;
    color: #fff;
    transform: none;
}

.btn.site-btn-primary:active,
.btn-submit:active {
    border-color: var(--brand-field-deep);
    background: var(--brand-field-deep);
    color: #fff;
    transform: none;
}

.btn.site-btn-primary:disabled,
.btn-submit:disabled,
.btn.site-btn-primary.is-disabled {
    cursor: not-allowed;
    opacity: 0.52;
}

.btn.site-btn-primary:focus-visible,
.btn-submit:focus-visible,
.btn.site-btn-secondary:focus-visible {
    outline: 3px solid var(--brand-action);
    outline-offset: 3px;
}

.btn.site-btn-secondary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border: 1px solid var(--brand-ink);
    border-radius: 2px;
    background: transparent;
    box-shadow: none;
    color: var(--brand-ink);
    cursor: pointer;
    font-family: var(--brand-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn.site-btn-secondary:visited { color: var(--brand-ink); }

.btn.site-btn-secondary:hover,
.btn.site-btn-secondary:focus {
    border-color: var(--brand-ink);
    background: var(--brand-ink);
    box-shadow: none;
    color: #fff;
    transform: none;
}

.btn.site-btn-primary.btn-sm,
.btn.site-btn-secondary.btn-sm {
    min-height: 42px;
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
}

.btn.site-btn-primary.btn-lg,
.btn.site-btn-secondary.btn-lg,
.btn-submit.btn-lg {
    min-height: 54px;
    padding: 1rem 1.4rem;
}

:where(.ot-hero, .ot-enquire, .page-masthead, .site-footer) .btn.site-btn-primary:hover,
:where(.ot-hero, .ot-enquire, .page-masthead, .site-footer) .btn.site-btn-primary:focus {
    border-color: #fff;
    background: transparent;
    color: #fff;
}

:where(.ot-hero, .ot-enquire, .page-masthead, .site-footer) .btn.site-btn-secondary {
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

:where(.ot-hero, .ot-enquire, .page-masthead, .site-footer) .btn.site-btn-secondary:hover,
:where(.ot-hero, .ot-enquire, .page-masthead, .site-footer) .btn.site-btn-secondary:focus {
    border-color: #fff;
    background: #fff;
    color: var(--brand-field-deep);
}

.ot-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid currentColor;
    color: inherit;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.ot-text-link:hover { color: inherit; }
.ot-text-link .ot-link-arrow {
    width: 0.9rem;
    height: 0.9rem;
    flex: 0 0 auto;
    overflow: visible;
    transition: transform 180ms var(--brand-ease);
}
.ot-text-link:hover .ot-link-arrow { transform: translate(3px, -3px); }

.ot-hero-photo {
    position: relative;
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--brand-field-deep);
}

.ot-hero-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 30, 34, 0.12), transparent 28%);
    content: '';
    pointer-events: none;
}

.ot-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    filter: saturate(0.82) contrast(1.04);
    transform-origin: 58% 50%;
}

.ot-runner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 max(1.5rem, calc((100vw - 1400px) / 2));
    border-top: 1px solid var(--brand-rule);
    border-bottom: 1px solid var(--brand-rule);
    background: var(--brand-linen);
}

.ot-runner a {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    min-height: 68px;
    padding: 1rem clamp(0.8rem, 2vw, 1.75rem);
    border-left: 1px solid var(--brand-rule);
    color: var(--brand-ink);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 180ms ease;
}

.ot-runner a:last-child { border-right: 1px solid var(--brand-rule); }

.ot-runner a:hover,
.ot-runner a:focus {
    color: var(--brand-ink);
    background: #fff;
}

.ot-runner span {
    color: var(--brand-action);
    font-weight: 500;
}

.ot-welcome,
.ot-explore {
    width: min(1400px, calc(100% - 3rem));
    margin: 0 auto;
}

.ot-welcome {
    display: grid;
    grid-template-columns: 0.6fr 1.25fr 1fr;
    gap: clamp(2rem, 5vw, 6rem);
    padding: clamp(6rem, 11vw, 10rem) 0;
}

.ot-section-label {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-self: start;
    padding-top: 0.8rem;
    color: var(--brand-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ot-section-label::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--brand-ink);
    content: '';
    transform-origin: left;
}

.ot-section-label span:last-child { font-weight: 400; }

.ot-welcome h2,
.ot-explore > h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.ot-welcome-copy {
    max-width: 40rem;
    font-size: 1.02rem;
}

.ot-welcome-copy .ot-text-link {
    margin-top: 1rem;
    color: var(--brand-ink);
}

.ot-values {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    background: var(--brand-field);
    color: #fff;
}

.ot-values-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 7vw, 8rem) clamp(5rem, 9vw, 9rem) max(3rem, calc((100vw - 1400px) / 2 + 1.5rem));
}

.ot-values-header h2 {
    margin: 0 0 2.25rem;
    color: #fff;
    font-size: clamp(2.8rem, 5.2vw, 4.6rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.ot-values-header > p:last-child {
    max-width: 34rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.ot-values-list {
    display: grid;
    margin: 0;
    background: var(--brand-linen);
    color: var(--brand-ink);
}

.ot-values-list > div {
    display: grid;
    grid-template-columns: minmax(12rem, 0.8fr) 1.2fr;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.8rem) clamp(2rem, 5vw, 5rem);
    border-bottom: 1px solid var(--brand-rule);
}

.ot-values-list > div:last-child { border-bottom: 0; }

.ot-values-list dt {
    display: flex;
    gap: 1.25rem;
    align-items: baseline;
    font-family: var(--brand-display);
    font-size: clamp(1.6rem, 2.5vw, 2.6rem);
    font-weight: 500;
}

.ot-values-list dt span {
    color: var(--brand-action);
    font-family: var(--brand-body);
    font-size: 0.72rem;
    font-weight: 700;
}

.ot-values-list dd {
    max-width: 34rem;
    margin: 0;
    color: var(--brand-muted);
    line-height: 1.55;
}

.ot-life {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
    min-height: 720px;
    background: var(--brand-porcelain);
}

.ot-life-photo {
    min-height: 620px;
    overflow: hidden;
}

.ot-life-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.ot-life-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) max(3rem, calc((100vw - 1400px) / 2 + 1.5rem)) clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
}

.ot-life-copy .ot-place-label { color: var(--brand-action); }

.ot-life-copy h2 {
    margin: 0 0 2rem;
    font-size: clamp(2.6rem, 5vw, 5.2rem);
    font-weight: 500;
    line-height: 1;
}

.ot-life-copy p,
.ot-life-copy ul { max-width: 38rem; }

.ot-life-copy ul {
    margin: 1rem 0 2rem;
    padding: 0;
    border-top: 1px solid var(--brand-rule);
    list-style: none;
}

.ot-life-copy li {
    margin: 0;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--brand-rule);
}

.ot-life-copy .ot-text-link {
    align-self: flex-start;
    color: var(--brand-ink);
}

.ot-explore {
    display: grid;
    grid-template-columns: 0.6fr 1fr 1.4fr;
    gap: clamp(2rem, 5vw, 6rem);
    padding: clamp(6rem, 10vw, 9rem) 0;
}

.ot-link-list { border-top: 1px solid var(--brand-ink); }

.ot-link-list a {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.45rem 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--brand-rule);
    color: var(--brand-ink);
}

.ot-link-list a > span {
    font-family: var(--brand-display);
    font-size: 1.4rem;
    font-weight: 500;
}

.ot-link-list small {
    grid-column: 1;
    color: var(--brand-muted);
}

.ot-link-list .ot-link-arrow {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
    width: 1.25rem;
    height: 1.25rem;
    overflow: visible;
    color: var(--brand-action);
    transition: transform 180ms var(--brand-ease);
}

.ot-link-list a:hover .ot-link-arrow { transform: translate(3px, -3px); }

.ot-enquire {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr) auto;
    gap: clamp(2rem, 5vw, 6rem);
    align-items: end;
    min-height: 450px;
    padding: clamp(4rem, 8vw, 7rem) max(3rem, calc((100vw - 1400px) / 2 + 1.5rem));
    overflow: hidden;
    background: var(--brand-heritage);
    color: #fff;
}

.ot-enquire .ot-place-label { margin-bottom: 2rem; }

.ot-enquire h2 {
    max-width: 10ch;
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 500;
    line-height: 0.98;
}

.ot-enquire > p {
    max-width: 32rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.ot-enquire > .btn {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.ot-enquire > img {
    position: absolute;
    top: 50%;
    right: 4vw;
    width: min(270px, 22vw);
    height: min(270px, 22vw);
    opacity: 0.08;
    transform: translateY(-50%);
}

.site-footer {
    padding: 4.5rem 0 2rem;
    border: 0;
    background: var(--brand-field-deep);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-mark {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-mark img {
    width: 44px;
    height: 58px;
}

.footer-mark p,
.footer-contact,
.site-footer address {
    margin: 0;
    font-size: 0.86rem;
    font-style: normal;
    line-height: 1.65;
    text-align: left;
}

.footer-mark strong,
.footer-mark span,
.footer-contact a { display: block; }
.footer-mark strong { color: #fff; }

.footer-mark span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer a,
.site-footer a:hover { color: #fff; }

.footer-legal {
    grid-column: 1 / -1;
    margin: 2rem 0 0 !important;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.72rem !important;
}

.is-inner-page .site-main {
    padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.is-inner-page .site-main.site-main--flush-top {
    padding-top: 0;
}

.is-inner-page .site-main > .site-shell { padding: 0; }

.is-inner-page .site-main > .site-shell > h1 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 1;
}

.page-masthead {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    background: var(--brand-field);
    color: #fff;
}

.page-masthead__inner {
    display: grid;
    grid-template-columns: minmax(0, 42%) minmax(0, 58%);
    min-height: clamp(18rem, 24vw, 25rem);
}

.page-masthead__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:
        clamp(3.25rem, 7vw, 6.25rem)
        clamp(2rem, 4vw, 4.5rem)
        clamp(3rem, 6vw, 5.5rem)
        max(1.5rem, calc((100vw - 1400px) / 2));
    background: var(--brand-field);
}

.page-masthead__eyebrow {
    margin: 0 0 1.15rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.is-inner-page .site-main .page-masthead__title {
    max-width: 12ch;
    margin: 0;
    color: #fff;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.page-masthead__intro {
    max-width: 42rem;
    margin: clamp(1.4rem, 3vw, 2rem) 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.65;
}

.page-masthead__media {
    position: relative;
    min-height: inherit;
    margin: 0;
    overflow: hidden;
    background: var(--brand-field-deep);
}

.page-masthead__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: transform 900ms var(--brand-ease);
}

.page-masthead__media img.is-position-top { object-position: center top; }
.page-masthead__media img.is-position-center { object-position: center; }
.page-masthead__media img.is-position-bottom { object-position: center bottom; }

.page-masthead--editorial .page-masthead__inner {
    display: block;
    min-height: clamp(15rem, 19vw, 20rem);
}

.page-masthead--editorial .page-masthead__copy {
    min-height: inherit;
    padding-right: max(1.5rem, calc((100vw - 1400px) / 2));
}

.page-masthead--editorial .page-masthead__title {
    max-width: 15ch;
}

.page-masthead--compact .page-masthead__inner {
    display: block;
    min-height: clamp(12rem, 15vw, 15rem);
}

.page-masthead--compact .page-masthead__copy {
    min-height: inherit;
    padding-top: clamp(2.75rem, 5vw, 4.5rem);
    padding-right: max(1.5rem, calc((100vw - 1400px) / 2));
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.page-masthead--compact .page-masthead__title {
    max-width: 18ch;
    font-size: clamp(2.1rem, 5vw, 4.8rem);
}

.is-inner-page article,
.is-inner-page .content-full-width { max-width: none; }

.page-content,
.task-content,
.calendar-page,
.news-detail-article,
.gallery-page,
.result-page {
    margin-top: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.site-main > .site-shell > .page-masthead + .page-content,
.site-main > .site-shell > .page-masthead + .task-content {
    margin-top: clamp(3.5rem, 6vw, 5rem);
}

.page-content--standard > :where(p, ul, ol, blockquote, h2, h3, h4),
.news-detail-content > :where(p, ul, ol, blockquote, h2, h3, h4) {
    max-width: 72ch;
}

.page-content :where(h2, h3),
.news-detail-content :where(h2, h3) {
    text-wrap: balance;
}

.page-content h2,
.news-detail-content h2 {
    margin-top: clamp(3.5rem, 6vw, 5.5rem);
    padding-top: 1.25rem;
    border-top: 1px solid var(--brand-rule);
}

.page-content h3,
.news-detail-content h3 {
    margin-top: clamp(2rem, 4vw, 3rem);
}

.page-content--history {
    column-count: 2;
    column-gap: clamp(3rem, 6vw, 6rem);
    column-fill: balance;
}

.page-content--history > :where(p, h2, h3, ul, ol, blockquote) {
    break-inside: avoid;
}

.page-content--history > p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.page-content--history > p:has(> img) {
    margin-bottom: 2rem;
}

.page-content--history img {
    width: 100%;
    border-radius: 0;
    object-fit: contain;
}

.page-content img,
.page-content-media {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.page-content iframe,
.location-map-frame {
    border: 0;
    border-radius: 0 !important;
}

.enquiry-form input[type='text'],
.enquiry-form input[type='email'],
.enquiry-form input[type='tel'],
.enquiry-form select,
.enquiry-form .form-select,
.enquiry-form textarea {
    border-color: var(--brand-muted);
    border-radius: 2px;
    background: #fff;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form .form-select:focus,
.enquiry-form textarea:focus {
    border-color: var(--brand-field);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-heritage) 30%, transparent);
}

.location-details {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: clamp(3rem, 6vw, 5rem);
    padding-top: clamp(2rem, 4vw, 3.5rem);
    border-top: 1px solid var(--brand-rule);
}

.location-image img {
    aspect-ratio: 1;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

.location-map iframe,
.location-map-frame {
    width: 100%;
    min-height: 32rem;
    border: 0;
}

.location-map-link {
    margin-top: 1rem;
}

.meeting-schedule {
    max-width: 72ch;
    margin: 2.5rem 0;
    padding: 0;
    border-top: 1px solid var(--brand-rule);
    list-style: none;
}

.meeting-schedule li {
    display: grid;
    grid-template-columns: minmax(8rem, 0.35fr) 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--brand-rule);
}

.meeting-schedule li::before {
    color: var(--brand-action);
    content: 'Meeting';
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.task-content {
    width: min(100%, 58rem);
}

.task-content > .enquiry-form,
.enquiry-form > form {
    margin-top: clamp(2.5rem, 5vw, 4rem);
}

.task-content > form.enquiry-form > div {
    margin-bottom: 1.25rem;
}

.page-content p > .btn.site-btn-primary,
.page-content p > .btn.site-btn-secondary {
    margin-top: 1.25rem;
}

.enquiry-form label,
.enquiry-form .form-label {
    margin-bottom: 0.55rem;
    color: var(--brand-ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.enquiry-form input[type='text'],
.enquiry-form input[type='email'],
.enquiry-form input[type='tel'],
.enquiry-form select,
.enquiry-form .form-select,
.enquiry-form textarea,
.enquiry-form .form-control {
    min-height: 3.2rem;
    margin-bottom: 0;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--brand-muted);
    border-radius: 2px;
    background: #fff;
    box-shadow: none;
    color: var(--brand-ink);
}

.enquiry-form textarea,
.enquiry-form textarea.form-control {
    min-height: 8rem;
}

#attendee-rows {
    counter-reset: attendee;
}

.attendee-row {
    counter-increment: attendee;
    margin-bottom: 2rem;
    border-top: 1px solid var(--brand-ink);
    border-bottom: 1px solid var(--brand-rule);
    background: color-mix(in srgb, #fff 58%, var(--brand-paper));
}

.attendee-row__body {
    padding: clamp(1.25rem, 3vw, 2rem) 0;
}

.attendee-row__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.attendee-row__header h3 {
    margin: 0;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.attendee-row__header h3::before {
    margin-right: 0.8rem;
    color: var(--brand-action);
    content: counter(attendee, decimal-leading-zero);
    font-family: var(--brand-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    vertical-align: middle;
}

.addon-options-container {
    min-height: 3.2rem;
    padding: 0.8rem 0;
    border-top: 1px solid var(--brand-rule);
    border-bottom: 1px solid var(--brand-rule);
}

.payment-choice {
    margin: 0;
    padding: 1.25rem 1.25rem 1.25rem 2.75rem;
    border-top: 1px solid var(--brand-rule);
}

.payment-choice:last-of-type {
    border-bottom: 1px solid var(--brand-rule);
}

.payment-choice .form-check-label {
    margin: 0;
    font-size: 1rem;
    letter-spacing: 0;
}

.result-summary {
    max-width: 54ch;
    font-size: 1rem;
}

.result-panel {
    margin: 2rem 0;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-top: 1px solid var(--brand-ink);
    border-bottom: 1px solid var(--brand-rule);
    background: color-mix(in srgb, #fff 55%, var(--brand-paper));
}

.result-details {
    display: grid;
    grid-template-columns: minmax(10rem, 0.35fr) 1fr;
    margin: 1.5rem 0 0;
}

.result-details > div {
    display: contents;
}

.result-details dt,
.result-details dd {
    margin: 0;
    padding: 0.75rem 0;
    border-top: 1px solid var(--brand-rule);
}

.result-details dt {
    color: var(--brand-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.back-link,
.event-external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid currentColor;
    color: var(--brand-ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.back-link:hover,
.back-link:focus,
.event-external-link:hover,
.event-external-link:focus {
    color: var(--brand-action);
}

.breadcrumb-nav {
    margin: 0 0 2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--brand-rule);
}

.breadcrumb-nav .breadcrumb {
    color: var(--brand-muted);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.news-feed-page,
.event-detail-page {
    margin-top: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.news-feed-list {
    display: block;
    margin-top: 0;
    border-top: 1px solid var(--brand-ink);
}

.news-feed-item {
    grid-template-columns: minmax(12rem, 17rem) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    border: 0;
    border-bottom: 1px solid var(--brand-rule);
    border-radius: 0;
    background: transparent;
}

.news-feed-item__media {
    gap: 0.8rem;
}

.news-feed-item__media a {
    border-radius: 0;
}

.news-feed-item__media img,
.news-feed-item__placeholder {
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
    object-fit: cover;
}

.news-feed-item__placeholder {
    background: var(--brand-field);
    color: rgba(255, 255, 255, 0.75);
}

.news-feed-item__date,
.news-detail-date {
    color: var(--brand-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.news-feed-item__content h2 {
    max-width: 22ch;
    margin: 0 0 0.8rem;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.08;
    text-wrap: balance;
}

.news-feed-item__content p {
    max-width: 62ch;
    margin-bottom: 1.2rem;
    color: var(--brand-muted);
}

.news-detail-article {
    max-width: 75ch !important;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.news-detail-back,
.event-detail-back {
    margin-top: 2.5rem;
}

.calendar-upcoming,
.calendar-past {
    margin: 0;
}

.calendar-upcoming {
    border-top: 1px solid var(--brand-ink);
}

.calendar-event-item {
    grid-template-columns: minmax(7rem, 9rem) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: clamp(1.5rem, 3vw, 2.25rem) 0;
    border: 0;
    border-bottom: 1px solid var(--brand-rule);
    border-radius: 0;
    background: transparent;
}

.calendar-event-item + .calendar-event-item {
    margin-top: 0;
}

.calendar-event-item__date {
    max-height: none;
    align-self: start;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-muted);
    text-align: left;
}

.calendar-event-item__date strong {
    margin: 0.15rem 0;
    color: var(--brand-ink);
    font-family: var(--brand-display);
    font-size: clamp(2.1rem, 5vw, 4.8rem);
    font-weight: 500;
    line-height: 0.9;
}

.calendar-event-item__content h3 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.08;
}

.calendar-event-item__time,
.calendar-event-item__location {
    color: var(--brand-muted);
}

.calendar-event-item__actions {
    align-items: center;
    gap: 0.75rem 1rem;
    margin-top: 1.25rem;
}

.calendar-past {
    margin-top: clamp(4rem, 7vw, 6rem);
}

.calendar-past-list {
    display: block;
    max-width: none;
    margin: 1rem 0 0;
    border-top: 1px solid var(--brand-rule);
}

.calendar-past-item {
    padding: 1rem 0;
    border: 0;
    border-bottom: 1px solid var(--brand-rule);
    border-radius: 0;
    background: transparent;
}

.calendar-past-item__header {
    margin-bottom: 0.25rem;
}

.event-detail-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
}

.event-detail-card__meta {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 0;
    padding: 0;
    border-top: 1px solid var(--brand-ink);
    border-bottom: 1px solid var(--brand-rule);
}

.event-detail-card__meta > div {
    min-height: 8.5rem;
    padding: 1.35rem;
    border-right: 1px solid var(--brand-rule);
}

.event-detail-card__meta > div:last-child {
    border-right: 0;
}

.event-detail-card__meta h2 {
    color: var(--brand-muted);
    font-family: var(--brand-body);
    font-size: 0.75rem;
}

.event-detail-card__description {
    max-width: 75ch;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    border-top: 0;
    border-bottom: 1px solid var(--brand-rule);
}

.event-detail-card__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.5rem 0 0;
    border-top: 0;
}

.public-notice {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--brand-rule);
    border-radius: 2px;
    background: var(--brand-porcelain);
    box-shadow: none;
    color: var(--brand-ink);
    line-height: 1.55;
}

.public-notice a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.public-notice--info {
    border-color: #c9bea8;
    background: #faf8f2;
    background: color-mix(in srgb, var(--brand-action) 7%, var(--brand-porcelain));
}

.public-notice--success {
    border-color: #aeb6b2;
    background: #f3f5f3;
    background: color-mix(in srgb, var(--brand-field) 6%, var(--brand-porcelain));
}

.public-notice--warning {
    border-color: #a99368;
    background: #f7f3ea;
    background: color-mix(in srgb, var(--brand-action) 11%, var(--brand-porcelain));
}

.public-notice--danger {
    border-color: #9a5a52;
    background: #f6edeb;
    color: #612b26;
}

.pagination .page-link {
    border-radius: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
    .ot-motion .ot-hero .ot-place-label {
        opacity: 0;
        transform: translateY(10px);
    }

    .ot-motion .ot-hero h1 > span,
    .ot-motion .ot-hero h1 > em {
        opacity: 0;
        transform: translateY(24px);
    }

    .ot-motion .ot-hero-intro {
        opacity: 0;
        transform: translateY(14px);
    }

    .ot-motion .ot-actions {
        opacity: 0;
        transform: translateY(12px);
    }

    .ot-motion .ot-hero-photo { opacity: 0.78; }
    .ot-motion .ot-hero-photo img { transform: scale(1.035); }

    .ot-motion .ot-runner a {
        opacity: 0;
        transform: translateY(10px);
    }

    .ot-motion .ot-section-label::before {
        transform: scaleX(0);
    }

    .ot-motion [data-motion-section].is-in-view .ot-section-label::before {
        transform: scaleX(1);
        transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ot-motion [data-motion-section='welcome']:not(.is-in-view) .ot-section-label span {
        opacity: 0;
        transform: translateX(-10px);
    }

    .ot-motion [data-motion-section='welcome']:not(.is-in-view) h2 {
        opacity: 0;
        transform: translateY(18px);
    }

    .ot-motion [data-motion-section='welcome']:not(.is-in-view) .ot-welcome-copy > * {
        opacity: 0;
        transform: translateY(12px);
    }

    .ot-motion [data-motion-section='values']:not(.is-in-view) .ot-values-header > * {
        opacity: 0;
        transform: translateY(16px);
    }

    .ot-motion [data-motion-section='values']:not(.is-in-view) .ot-values-list > div {
        opacity: 0;
        transform: translateX(22px);
    }

    .ot-motion [data-motion-section='life']:not(.is-in-view) .ot-life-photo img {
        transform: scale(1.035);
    }

    .ot-motion [data-motion-section='life']:not(.is-in-view) .ot-life-copy > * {
        opacity: 0;
        transform: translateY(14px);
    }

    .ot-motion [data-motion-section='explore']:not(.is-in-view) .ot-section-label span {
        opacity: 0;
        transform: translateX(-10px);
    }

    .ot-motion [data-motion-section='explore']:not(.is-in-view) h2 {
        opacity: 0;
        transform: translateY(16px);
    }

    .ot-motion [data-motion-section='explore']:not(.is-in-view) .ot-link-list a {
        opacity: 0;
        transform: translateX(18px);
    }

    .ot-motion [data-motion-section='enquire']:not(.is-in-view) > div > *,
    .ot-motion [data-motion-section='enquire']:not(.is-in-view) > p,
    .ot-motion [data-motion-section='enquire']:not(.is-in-view) > .btn {
        opacity: 0;
        transform: translateY(14px);
    }

    .ot-motion [data-motion-section='enquire']:not(.is-in-view) > img {
        opacity: 0.025;
        transform: translateY(-50%) scale(0.96);
    }
}

@media (max-width: 1160px) {
    .ot-hero {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    }

    .ot-welcome,
    .ot-explore {
        grid-template-columns: 0.45fr 1fr 1fr;
        gap: 2.5rem;
    }

    .ot-values-list > div {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
}

@media (max-width: 1024px) {
    .site-header-inner { justify-content: space-between; }

    .site-navigation {
        margin: 0;
        padding: 5rem 1.5rem 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        background: var(--brand-field-deep);
        box-shadow: 16px 0 50px rgba(12, 37, 32, 0.32);
        visibility: hidden;
    }

    body.nav-open .site-navigation { visibility: visible; }

    .site-navigation ul li a,
    .site-navigation ul ul li a,
    .site-navigation ul ul li a:hover,
    .site-navigation ul ul li.current-page > a {
        color: #fff;
    }

    .site-navigation ul li a {
        padding: 0.9rem 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .site-navigation ul li a:hover,
    .site-navigation ul li.current-root > a,
    .site-navigation ul ul li.current-page > a {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

    .site-navigation ul ul {
        margin: 0;
        padding: 0 0 0 0.75rem;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-navigation ul ul li a {
        border-radius: 0;
        box-shadow: none;
    }

    .site-navigation > ul > li > a::after { content: none; }
    .sidebar-logo-link { padding-bottom: 1.5rem; }
    .sidebar-logo {
        width: 54px;
        height: 70px;
        max-height: none;
        object-fit: contain;
    }
    .ot-hero-copy { padding-left: 2rem; }
    .ot-hero h1 { font-size: clamp(3.1rem, 5.8vw, 4.8rem); }
    .ot-life-copy { padding-right: 2rem; }
}

@media (max-width: 900px) {
    .site-header-inner { min-height: 74px; }

    .page-content--history {
        column-count: 1;
    }

    .page-masthead__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .page-masthead__copy {
        min-height: clamp(15rem, 40vw, 18rem);
        padding:
            clamp(3rem, 7vw, 4rem)
            1.5rem
            clamp(2.75rem, 6vw, 3.5rem);
    }

    .page-masthead__media {
        height: clamp(13rem, 38vw, 17rem);
        min-height: 0;
    }

    .page-masthead__media img {
        min-height: 0;
    }

    .page-masthead--editorial .page-masthead__copy,
    .page-masthead--compact .page-masthead__copy {
        padding-inline: 1.5rem;
    }

    .location-details,
    .news-feed-item,
    .calendar-event-item {
        grid-template-columns: 1fr;
    }

    .location-map iframe,
    .location-map-frame {
        min-height: 26rem;
    }

    .news-feed-item__media {
        max-width: 28rem;
    }

    .calendar-event-item__date {
        max-width: none;
        flex-direction: row;
        align-items: baseline;
        gap: 0.55rem;
    }

    .calendar-event-item__date strong {
        order: -1;
    }

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

    .event-detail-card__meta > div:nth-child(2n) {
        border-right: 0;
    }

    .event-detail-card__meta > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--brand-rule);
    }

    .ot-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .ot-hero-copy {
        min-height: 620px;
        padding: 5rem 2rem 6rem;
    }

    .ot-hero-photo { min-height: 560px; }

    .ot-runner {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    .ot-runner a:nth-child(2) { border-right: 1px solid var(--brand-rule); }

    .ot-runner a {
        min-height: 64px;
        border-bottom: 1px solid var(--brand-rule);
    }

    .ot-welcome,
    .ot-explore {
        grid-template-columns: 1fr;
        width: min(100% - 2.5rem, 44rem);
    }

    .ot-section-label {
        flex-direction: row;
        justify-content: space-between;
    }

    .ot-values { grid-template-columns: 1fr; }
    .ot-values-header { padding: 6rem 2rem; }

    .ot-values-list > div {
        grid-template-columns: minmax(12rem, 0.8fr) 1.2fr;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .ot-life { grid-template-columns: 1fr; }
    .ot-life-photo { min-height: 560px; }
    .ot-life-copy { padding: 6rem 2rem; }

    .ot-enquire {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 6rem 2rem;
    }

    .ot-enquire > .btn { justify-self: start; }

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

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

@media (max-width: 640px) {
    html { scroll-padding-top: 68px; }
    .site-shell { width: calc(100% - 2rem); }
    .site-header-inner { min-height: 68px; }

    .site-header .logo {
        width: 34px;
        height: 48px;
    }

    .site-title { font-size: 0.84rem; }
    .site-title-subline { font-size: 0.59rem; }
    .header-enquiry { display: none; }

    .is-inner-page .site-main .page-masthead__title {
        font-size: clamp(2.1rem, 5vw, 4.8rem);
    }

    .page-masthead__copy {
        min-height: 14rem;
        padding: 2.75rem 1rem 2.5rem;
    }

    .page-masthead__media {
        height: 12rem;
        min-height: 0;
    }

    .page-masthead--editorial .page-masthead__copy,
    .page-masthead--compact .page-masthead__copy {
        min-height: 13.5rem;
        padding: 2.75rem 1rem 2.5rem;
    }

    .page-content,
    .task-content,
    .calendar-page,
    .news-detail-article,
    .gallery-page,
    .result-page,
    .news-feed-page,
    .event-detail-page {
        margin-top: 2.75rem;
    }

    .site-main > .site-shell > .page-masthead + .page-content,
    .site-main > .site-shell > .page-masthead + .task-content {
        margin-top: 2.75rem;
    }

    .meeting-schedule li,
    .result-details {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .result-details dd {
        padding-top: 0;
        border-top: 0;
    }

    .attendee-row__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-detail-card__meta {
        grid-template-columns: 1fr;
    }

    .event-detail-card__meta > div,
    .event-detail-card__meta > div:nth-child(2n),
    .event-detail-card__meta > div:nth-child(-n + 2) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--brand-rule);
    }

    .event-detail-card__meta > div:last-child {
        border-bottom: 0;
    }

    .event-detail-card__actions .btn,
    .dining-form-page > form > .btn.site-btn-primary {
        width: 100%;
    }

    .ot-hero-copy {
        min-height: 570px;
        padding: 4.5rem 1.25rem 5rem;
    }

    .ot-place-label {
        margin-bottom: 1.75rem;
        font-size: 0.65rem;
    }

    .ot-hero h1 {
        font-size: clamp(2.75rem, 13vw, 4rem);
        letter-spacing: -0.03em;
    }

    .ot-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ot-actions .btn {
        width: 100%;
        text-align: center;
    }

    .ot-actions .ot-text-link { align-self: flex-start; }
    .ot-hero-photo { min-height: 430px; }

    .ot-runner a {
        min-height: 68px;
        padding: 0.8rem 1rem;
        font-size: 0.64rem;
    }

    .ot-runner a span { display: none; }

    .ot-welcome,
    .ot-explore {
        width: calc(100% - 2rem);
        padding: 5rem 0;
    }

    .ot-welcome h2,
    .ot-explore > h2 {
        font-size: clamp(2.35rem, 11vw, 3.6rem);
    }

    .ot-values-header,
    .ot-life-copy,
    .ot-enquire { padding: 5rem 1rem; }

    .ot-values-list > div {
        grid-template-columns: 1fr;
        padding: 1.75rem 1rem;
    }

    .ot-values-list dt { font-size: 1.8rem; }
    .ot-life-photo { min-height: 420px; }

    .ot-life-copy h2,
    .ot-enquire h2 {
        font-size: clamp(2.7rem, 13vw, 4.3rem);
    }

    .ot-link-list a { gap: 0.35rem 1rem; }
    .ot-link-list a > span { font-size: 1.2rem; }

    .ot-enquire > img {
        width: 190px;
        height: 190px;
    }

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

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

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

    .page-masthead *,
    .back-link,
    .event-external-link {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

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