:root {
    --ivory: #f6f2ed;
    --soft-white: #fcfaf7;
    --charcoal: #2f2a27;
    --sage: #7f917e;
    --sage-deep: #6f806e;
    --sand: #d7c2a7;
    --gold: #b98d52;
    --warm-border: rgba(47, 42, 39, 0.08);
    --warm-border-strong: rgba(47, 42, 39, 0.12);
    --card-shadow: 0 24px 70px rgba(47, 42, 39, 0.08);
    --card-shadow-soft: 0 18px 50px rgba(47, 42, 39, 0.06);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --max-width: 1240px;
    --max-width-wide: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--charcoal);
    font-family: "Inter", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 0% 55%, rgba(215, 194, 167, 0.24), transparent 22%),
        radial-gradient(circle at 100% 0%, rgba(127, 145, 126, 0.20), transparent 24%),
        linear-gradient(180deg, #faf8f4 0%, #fdfbf9 100%);
}

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

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

p {
    margin: 0 0 1rem;
}

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin: 0 auto;
}

/* =========================
   Header
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    background: rgba(252, 250, 247, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 1 auto;
    min-width: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-logo .custom-logo-link {
    display: flex;
    align-items: center;
    line-height: 0;
}

.brand-logo img,
.brand-logo .custom-logo {
    display: block;
    max-height: 54px;
    width: auto;
    height: auto;
}

.brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sage), #95a794);
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 12px 24px rgba(127, 145, 126, 0.22);
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.brand-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: 0.05em;
    margin: 0;
}

.brand-tag {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(47, 42, 39, 0.6);
    margin-top: 4px;
}

.site-nav {
    margin-left: auto;
    flex: 0 0 auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
}

.nav-menu li {
    flex: 0 0 auto;
}

.nav-menu a {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-menu a:hover {
    opacity: 0.72;
}

.nav-menu a[href*="/register"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sage-deep), var(--sage));
    color: #fff;
    box-shadow: 0 10px 24px rgba(127, 145, 126, 0.18);
}

.nav-menu a[href*="/register"]:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--warm-border);
    background: rgba(255, 255, 255, 0.84);
    cursor: pointer;
    padding: 0;
    flex: 0 0 auto;
}

.mobile-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--charcoal);
    margin: 4px auto;
}

.mobile-drawer {
    display: none;
    padding: 0 20px 16px;
}

.mobile-drawer[hidden] {
    display: none !important;
}

.mobile-drawer.is-open {
    display: block;
}

.mobile-drawer .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--warm-border);
    box-shadow: var(--card-shadow);
    border-radius: 20px;
    padding: 20px;
    gap: 14px;
}

.mobile-drawer .nav-menu a[href*="/register"] {
    min-height: 50px;
    width: 100%;
    justify-content: center;
}

/* =========================
   Home Hero
========================= */

.hero-section {
    padding: 52px 0 20px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(127, 145, 126, 0.14);
    color: #5f705e;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.hero-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 0.92;
    font-weight: 500;
}

.hero-title span {
    display: block;
}

.accent-sand {
    color: var(--gold);
}

.hero-text {
    max-width: 34rem;
    margin-top: 26px;
    font-size: 1.14rem;
    line-height: 1.8;
    color: rgba(47, 42, 39, 0.78);
}

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.button-primary,
.button-secondary,
.lc-button {
    min-height: 58px;
    padding: 0 26px;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
}

.button-primary,
.lc-button {
    background: linear-gradient(135deg, var(--sage-deep), var(--sage));
    color: #fff;
    box-shadow: 0 14px 30px rgba(127, 145, 126, 0.22);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--warm-border);
}

.hero-media-wrap {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media {
    position: relative;
    z-index: 2;
    width: min(100%, 640px);
    min-height: 560px;
    overflow: hidden;
    border-radius: 180px 34px 34px 34px;
    box-shadow: var(--card-shadow);
    background: linear-gradient(180deg, #ebe1d4 0%, #faf7f2 100%);
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.hero-placeholder {
    position: relative;
    height: 100%;
    min-height: 560px;
    background: linear-gradient(160deg, #fbf8f3 0%, #eadcc6 100%);
}

.placeholder-badge {
    position: absolute;
    top: 34px;
    left: 34px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(8px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.placeholder-cup {
    position: absolute;
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, #f7ecdb 0 15%, #c48d54 19%, #82552f 34%, #f7f3ee 36%, #f7f3ee 54%, #e0d6ca 55%, #b4aa9d 100%);
    box-shadow: 0 18px 38px rgba(47, 42, 39, 0.16);
}

.placeholder-table {
    position: absolute;
    left: 50%;
    bottom: -90px;
    transform: translateX(-50%);
    width: 120%;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(180deg, #c99763 0%, #b67d49 100%);
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-one {
    width: 320px;
    height: 320px;
    right: -10px;
    top: -12px;
    background: rgba(127, 145, 126, 0.24);
}

.shape-two {
    width: 280px;
    height: 280px;
    left: -20px;
    bottom: 24px;
    background: rgba(215, 194, 167, 0.38);
}

/* =========================
   Internal Page Hero
========================= */

.internal-page-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 38px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(47, 42, 39, 0.05);
    background:
        radial-gradient(circle at 92% 12%, rgba(127, 145, 126, 0.12), transparent 20%),
        radial-gradient(circle at 8% 88%, rgba(215, 194, 167, 0.18), transparent 22%),
        linear-gradient(180deg, rgba(252, 250, 247, 0.96) 0%, rgba(249, 246, 241, 0.98) 100%);
    min-height: 320px;
}

.internal-page-hero.has-hero-image {
    min-height: 380px;
}

.internal-page-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.60;
}

.internal-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
}

.internal-page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(252, 250, 247, 0.94) 0%,
            rgba(252, 250, 247, 0.86) 36%,
            rgba(252, 250, 247, 0.78) 62%,
            rgba(252, 250, 247, 0.88) 100%
        );
}

.internal-page-hero.no-hero-image .internal-page-hero-overlay {
    background:
        linear-gradient(180deg, rgba(252, 250, 247, 0.90) 0%, rgba(252, 250, 247, 0.96) 100%);
}

.internal-page-hero-inner {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 40px), var(--max-width-wide));
    margin: 0 auto;
    display: grid;
    gap: 10px;
    align-content: center;
    min-height: inherit;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(47, 42, 39, 0.50);
    font-weight: 600;
}

.breadcrumbs a {
    transition: opacity 0.2s ease;
}

.breadcrumbs a:hover {
    opacity: 0.68;
}

.internal-page-hero .section-kicker {
    margin-bottom: 6px;
}

.internal-page-hero h1 {
    max-width: 9ch;
    margin: 0 0 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.2rem, 5vw, 5.2rem);
    line-height: 0.92;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.internal-page-hero-text {
    max-width: 54rem;
    font-size: 1.04rem;
    line-height: 1.84;
    color: rgba(47, 42, 39, 0.78);
}

.internal-page-hero-text p:last-child {
    margin-bottom: 0;
}

/* =========================
   Sections
========================= */

.announcement-section,
.features-section,
.next-step-section,
.contact-section,
.contact-page-section,
.register-page-section,
.content-page {
    padding: 20px 0;
}

.announcement-card,
.panel,
.contact-card,
.content-panel,
.contact-page-intro,
.contact-page-card,
.register-page-intro,
.register-page-card,
.contact-info-card {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(14px);
}

.announcement-card {
    padding: 24px 28px;
    border-radius: 24px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(47, 42, 39, 0.78);
}

.announcement-card p:last-child {
    margin-bottom: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--card-shadow);
}

.feature-card {
    min-height: 140px;
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.feature-card h2 {
    margin: 0;
    font-size: 1.15rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.4;
}

.feature-icon {
    font-size: 2rem;
    opacity: 0.9;
}

.feature-light {
    background: #efe8df;
    color: var(--charcoal);
}

.feature-sage {
    background: #92a18e;
}

.feature-sand {
    background: #c9b49a;
}

.feature-gold {
    background: #b98d52;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
}

.panel {
    border-radius: var(--radius-xl);
    padding: 38px;
}

.copy-panel h2,
.contact-card h2,
.content-panel h1,
.contact-page-intro h1,
.register-page-intro h1,
.next-step-actions h2,
.contact-info-card h2 {
    margin: 0 0 16px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.98;
    font-weight: 500;
}

.contact-info-card h2 {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-body,
.contact-card,
.content-panel {
    color: rgba(47, 42, 39, 0.78);
    line-height: 1.8;
}

.section-body p:last-child {
    margin-bottom: 0;
}

/* =========================
   Homepage Next Steps
========================= */

.next-step-actions .hero-actions {
    margin-top: 24px;
    margin-bottom: 24px;
}

.next-step-actions .contact-details {
    margin-top: 10px;
}

/* =========================
   Contact Block
========================= */

.contact-card {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 30px 34px;
    border-radius: 26px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
}

.contact-details a,
.contact-details span {
    font-size: 1rem;
    font-weight: 600;
}

/* =========================
   Dedicated Pages
========================= */

.contact-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: start;
    width: min(calc(100% - 40px), var(--max-width-wide));
    margin: 0 auto;
}

.register-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
    gap: 28px;
    align-items: start;
    width: min(calc(100% - 40px), var(--max-width-wide));
    margin: 0 auto;
}

.contact-page-card,
.register-page-card {
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--card-shadow-soft);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.88);
}

.contact-page-sidebar,
.register-page-sidebar {
    display: grid;
    gap: 18px;
    align-self: start;
    position: sticky;
    top: 112px;
}

.contact-info-card {
    border-radius: 28px;
    padding: 30px 28px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--card-shadow-soft);
}

.subtle-card {
    background: rgba(255, 255, 255, 0.60);
    box-shadow: 0 14px 36px rgba(47, 42, 39, 0.05);
}

.contact-info-card p {
    color: rgba(47, 42, 39, 0.78);
    line-height: 1.72;
}

.contact-info-card p:last-child {
    margin-bottom: 0;
}

.contact-info-list {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.contact-info-item {
    display: grid;
    gap: 4px;
}

.contact-info-label {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(47, 42, 39, 0.50);
    font-weight: 600;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(47, 42, 39, 0.86);
}

.register-note {
    margin-top: 18px;
    font-size: 0.94rem;
    color: rgba(47, 42, 39, 0.62);
    line-height: 1.75;
}

/* =========================
   Custom Plugin Forms
========================= */

.lc-form-shell {
    width: 100%;
}

.lc-form {
    display: grid;
    gap: 24px;
}

.lc-fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

.lc-fieldset legend {
    width: 100%;
    display: block;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--warm-border);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    line-height: 1.05;
    color: var(--charcoal);
}

.lc-form-grid {
    display: grid;
    gap: 16px;
}

.lc-form-grid.two-col {
    grid-template-columns: 1fr 1fr;
}

.lc-form-grid.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

.lc-field {
    display: block;
}

.lc-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(47, 42, 39, 0.82);
}

.lc-field input,
.lc-field textarea,
.lc-field select {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid var(--warm-border);
    background: rgba(255, 255, 255, 0.94);
    font-size: 1rem;
    font-family: inherit;
    color: var(--charcoal);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lc-field input:focus,
.lc-field textarea:focus,
.lc-field select:focus {
    outline: none;
    border-color: rgba(127, 145, 126, 0.42);
    box-shadow: 0 0 0 4px rgba(127, 145, 126, 0.10);
    background: #fff;
}

.lc-field textarea {
    min-height: 140px;
    padding: 16px 18px;
    resize: vertical;
}

.lc-choice-grid {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.lc-choice-grid label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(47, 42, 39, 0.82);
}

.lc-choice-grid input[type="checkbox"],
.lc-choice-grid input[type="radio"] {
    width: auto;
    min-height: 0;
    margin-top: 4px;
    accent-color: var(--sage-deep);
}

.lc-submit-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 8px;
}

.lc-form-notice {
    margin-bottom: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 0.96rem;
    line-height: 1.6;
}

.lc-form-notice.success {
    background: rgba(127, 145, 126, 0.12);
    border: 1px solid rgba(127, 145, 126, 0.22);
    color: #4f634f;
}

.lc-form-notice.error {
    background: rgba(185, 80, 80, 0.08);
    border: 1px solid rgba(185, 80, 80, 0.18);
    color: #8d3f3f;
}

/* =========================
   Countdown
========================= */

.countdown-card {
    margin-top: 22px;
    display: inline-grid;
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: 12px;
}

.countdown-card > div {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--warm-border);
    border-radius: 20px;
    text-align: center;
}

.countdown-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.countdown-card span {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(47, 42, 39, 0.62);
}

.content-panel {
    border-radius: 28px;
    padding: 40px;
}

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

/* =========================
   Footer
========================= */

.site-footer {
    padding: 28px 0 42px;
}

.footer-shell {
    display: grid;
    gap: 26px;
    padding-top: 24px;
    border-top: 1px solid rgba(47, 42, 39, 0.09);
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.55fr) minmax(240px, 0.75fr);
    gap: 34px;
    align-items: start;
}

.footer-brand-block,
.footer-links-block,
.footer-contact-block {
    min-width: 0;
}

.footer-note {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.9;
    color: rgba(47, 42, 39, 0.64);
    letter-spacing: 0.01em;
}

.footer-acknowledgement {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(47, 42, 39, 0.07);
}

.footer-acknowledgement p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(47, 42, 39, 0.58);
}

.footer-meta-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.72rem;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(47, 42, 39, 0.42);
    font-weight: 600;
}

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

.footer-links-list li {
    margin: 0;
}

.footer-links-list a,
.footer-contact-list a,
.footer-contact-list span {
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(47, 42, 39, 0.82);
}

.footer-links-list a {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links-list a:hover {
    opacity: 0.68;
    transform: translateX(1px);
}

.footer-contact-list {
    display: grid;
    gap: 10px;
}

.footer-contact-list span {
    color: rgba(47, 42, 39, 0.66);
}

.footer-contact-block .social-links {
    margin-top: 18px;
    margin-bottom: 0;
    justify-content: flex-start;
    gap: 14px;
}

.footer-contact-block .social-links a {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(47, 42, 39, 0.58);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid rgba(47, 42, 39, 0.07);
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-copyright {
    margin: 0;
    font-size: 0.72rem;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(47, 42, 39, 0.42);
}

.footer-signature-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 18px;
    opacity: 0.72;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.footer-signature-mark:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-signature-icon {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: 14px;
}

.footer-signature-dot.is-small {
    width: 8px;
    height: 8px;
    left: 2px;
    bottom: 1px;
    top: auto;
    right: auto;
    background: rgba(47, 42, 39, 0.22);
    box-shadow: none;
}

/* Footer responsive */

@media (max-width: 980px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        display: flex;
        align-items: center;
    }

    .footer-bottom-right {
        margin-left: auto;
        justify-content: flex-end;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 20px 0 34px;
    }

    .footer-shell {
        gap: 22px;
    }

    .footer-note {
        font-size: 0.92rem;
    }

    .footer-acknowledgement p,
    .footer-links-list a,
    .footer-contact-list a,
    .footer-contact-list span {
        font-size: 0.92rem;
    }

    .footer-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    
    .footer-bottom-right {
        margin-left: auto;
        justify-content: flex-end;
    }
}

/* =========================
   Responsive
========================= */

@media (max-width: 1180px) {
    .hero-grid,
    .panel-grid,
    .feature-grid,
    .contact-page-shell {
        grid-template-columns: 1fr;
    }

    .register-page-shell {
        grid-template-columns: minmax(0, 1fr);
    }

    .register-page-sidebar,
    .contact-page-sidebar {
        position: static;
    }

    .feature-grid {
        gap: 1px;
        background: rgba(255, 255, 255, 0.55);
    }

    .hero-media-wrap {
        min-height: 520px;
    }

    .hero-media,
    .hero-media img,
    .hero-placeholder {
        min-height: 460px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 0.82rem;
        letter-spacing: 0.12em;
    }

    .lc-form-grid.three-col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .site-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-drawer.is-open {
        display: block;
    }

    .hero-grid,
    .panel-grid,
    .feature-grid,
    .contact-page-shell,
    .register-page-shell {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }

    .footer-meta-top {
        justify-content: flex-start;
    }

    .footer-credit {
        justify-content: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .lc-form-grid.two-col,
    .lc-form-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container,
    .internal-page-hero-inner,
    .contact-page-shell,
    .register-page-shell {
        width: min(calc(100% - 24px), var(--max-width));
    }

    .site-header {
        padding: 12px 0;
    }

    .header-inner {
        gap: 14px;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo img,
    .brand-logo .custom-logo {
        max-height: 42px;
    }

    .brand-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.6rem;
    }

    .brand-tag {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .hero-section {
        padding-top: 24px;
    }

    .internal-page-hero {
        padding: 30px 0 20px;
    }

    .internal-page-hero h1 {
        font-size: clamp(2.4rem, 11vw, 3.2rem);
    }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .hero-text,
    .internal-page-hero-text {
        font-size: 1rem;
    }

    .hero-media {
        border-radius: 42px;
    }

    .hero-media,
    .hero-media img,
    .hero-placeholder {
        min-height: 330px;
    }

    .panel,
    .content-panel,
    .contact-card,
    .announcement-card,
    .feature-card,
    .contact-page-intro,
    .contact-page-card,
    .register-page-intro,
    .register-page-card,
    .contact-info-card {
        padding: 24px;
    }

    .countdown-card {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-note {
        font-size: 0.9rem;
    }

    .footer-credit {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}