:root {
    --bg: #ffffff;
    --bg-deep: #128d95;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-soft: rgba(28, 179, 186, 0.08);
    --line: rgba(18, 141, 149, 0.14);
    --line-strong: rgba(18, 141, 149, 0.24);
    --ink: #12323a;
    --ink-soft: #5b7379;
    --teal: #128d95;
    --teal-bright: #19b3bb;
    --peach: #ff945d;
    --orange: #ff5c1c;
    --red-orange: #f53908;
    --shadow: 0 24px 60px rgba(18, 141, 149, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: min(1180px, calc(100vw - 2.2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(25, 179, 187, 0.1), transparent 25%),
        radial-gradient(circle at top right, rgba(255, 92, 28, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfeff 42%, #ffffff 100%);
    color: var(--ink);
    font-family: "Segoe UI Variable", "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

p,
ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin: 0 0 0.75rem;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
    font-size: 1.35rem;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(135deg, rgba(18, 141, 149, 0.96), rgba(25, 179, 187, 0.96));
    color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 0.92rem;
}

.topbar-inner p {
    margin-bottom: 0;
}

.topbar-inner a {
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 0;
}

.brand-mark {
    display: inline-flex;
    flex-direction: column;
    gap: 0.12rem;
    color: var(--ink);
}

.brand-mark strong {
    font-size: 1.4rem;
    font-family: Georgia, "Times New Roman", serif;
}

.brand-kicker,
.brand-mark small {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.site-nav a {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--ink-soft);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(25, 179, 187, 0.12);
    color: var(--ink);
}

.site-nav .nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--red-orange));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(245, 57, 8, 0.22);
}

.site-nav .nav-cta:hover {
    background: linear-gradient(135deg, var(--red-orange), var(--orange));
    color: #fff;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 50%;
    background: rgba(25, 179, 187, 0.14);
    padding: 0.85rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
}

.nav-toggle span + span {
    margin-top: 0.45rem;
}

.hero-section {
    position: relative;
    padding: 6.5rem 0 4rem;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 4rem -12rem auto auto;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 148, 93, 0.22), transparent 70%);
    pointer-events: none;
}

.hero-grid,
.page-banner-grid,
.cta-band-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.section-eyebrow {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--teal);
}

.lead-copy {
    max-width: 48rem;
    font-size: 1.12rem;
    color: var(--ink-soft);
}

.hero-visual {
    display: grid;
    gap: 1rem;
}

.hero-image-card,
.photo-card,
.gallery-card,
.thumb-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
}

.hero-image-card {
    position: relative;
    min-height: 450px;
}

.hero-image-card img,
.photo-card img,
.gallery-card img,
.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-card img {
    position: absolute;
    inset: 0;
}

.hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 50, 58, 0.12), rgba(18, 50, 58, 0.78));
}

.hero-image-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 450px;
    padding: 1.6rem;
    color: #fff;
}

.hero-image-overlay p,
.hero-image-overlay .card-kicker {
    color: rgba(255, 255, 255, 0.9);
}

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

.thumb-card img {
    height: 180px;
}

.thumb-card-copy {
    padding: 0.9rem 1rem 1rem;
}

.thumb-card-copy p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 1.45rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--orange), var(--red-orange));
    color: #fff;
    box-shadow: 0 20px 32px rgba(245, 57, 8, 0.18);
}

.button-ghost {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
}

.hero-meta,
.meta-stack,
.mini-list,
.banner-chip-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-meta {
    margin-top: 1.5rem;
}

.hero-meta span,
.meta-stack span,
.mini-list span,
.banner-chip-stack span {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink-soft);
    font-size: 0.93rem;
}

.glass-card,
.feature-card,
.agenda-card,
.info-panel,
.message-card,
.stat-card,
.bullet-card,
.faculty-card {
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.glass-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.card-kicker {
    margin-bottom: 1rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 0.78rem;
}

.stats-section {
    padding: 0 0 2rem;
}

.stats-grid,
.card-grid,
.bullet-grid,
.faculty-grid {
    display: grid;
    gap: 1.2rem;
}

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

.stat-card {
    padding: 1.35rem;
    border-radius: var(--radius-lg);
}

.stat-card strong {
    display: block;
    font-size: 1.7rem;
    color: var(--teal);
}

.stat-card span {
    color: var(--ink-soft);
}

.content-section {
    padding: 2.25rem 0;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.section-heading > p:last-child {
    color: var(--ink-soft);
    max-width: 48rem;
}

.split-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
}

.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.agenda-card,
.info-panel,
.message-card,
.bullet-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
}

.feature-card p,
.agenda-card p,
.info-panel p,
.message-card p {
    color: var(--ink-soft);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.05rem;
    color: var(--ink-soft);
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-bright), var(--orange));
}

.accent-surface {
    position: relative;
}

.accent-surface::before {
    content: "";
    position: absolute;
    inset: 1rem 0;
    background: linear-gradient(180deg, rgba(25, 179, 187, 0.05), rgba(255, 92, 28, 0.03));
    z-index: -1;
}

.text-link {
    color: var(--teal);
    font-weight: 700;
}

.agenda-card ul,
.detail-list,
.stacked-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.agenda-card li,
.detail-list li,
.stacked-list div {
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
}

.agenda-card li:first-child,
.detail-list li:first-child,
.stacked-list div:first-child {
    border-top: 0;
    padding-top: 0.2rem;
}

.table-wrap {
    overflow-x: auto;
    margin: 1.25rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 420px;
}

th,
td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--teal);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scenic-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 253, 0.96)),
        radial-gradient(circle at top right, rgba(255, 148, 93, 0.16), transparent 40%);
}

.cta-band {
    padding-bottom: 4rem;
}

.cta-band-inner {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(18, 141, 149, 0.96), rgba(15, 104, 111, 0.94)),
        radial-gradient(circle at top right, rgba(255, 92, 28, 0.22), transparent 35%);
    color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 28px 60px rgba(18, 141, 149, 0.22);
}

.cta-band .section-eyebrow,
.cta-band p,
.cta-band h2 {
    color: inherit;
}

.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.page-banner {
    padding: 4rem 0 2rem;
}

.page-banner .lead-copy {
    max-width: 40rem;
}

.page-banner-default .banner-chip-stack span {
    background: rgba(255, 255, 255, 0.96);
}

.page-banner-warm {
    background: linear-gradient(180deg, rgba(255, 148, 93, 0.12), transparent);
}

.page-banner-cool {
    background: linear-gradient(180deg, rgba(25, 179, 187, 0.12), transparent);
}

.page-banner-forest {
    background: linear-gradient(180deg, rgba(18, 141, 149, 0.08), transparent);
}

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

.bullet-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bullet-card span {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal-bright), var(--orange));
}

.tall-card {
    min-height: 100%;
}

.message-card {
    min-height: 100%;
}

.photo-card img {
    min-height: 100%;
}

.wide-panel {
    text-align: center;
}

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

.faculty-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
}

.faculty-avatar {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 16px 24px rgba(18, 141, 149, 0.18);
}

.detail-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.detail-list strong {
    color: var(--ink);
    flex: 0 0 9rem;
}

.detail-list span,
.detail-list a {
    color: var(--ink-soft);
}

.full-width {
    width: 100%;
}

.scenic-card {
    min-height: 220px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 253, 0.96)),
        radial-gradient(circle at top right, rgba(255, 92, 28, 0.12), transparent 45%);
}

.gallery-card img {
    height: 270px;
}

.gallery-card-body {
    padding: 1rem 1.1rem 1.15rem;
}

.gallery-card-body p {
    margin-bottom: 0;
    color: var(--ink-soft);
}

.map-frame {
    overflow: hidden;
    margin-top: 1.3rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    min-height: 260px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

.site-form {
    display: grid;
    gap: 1rem;
}

.site-form label {
    display: grid;
    gap: 0.55rem;
}

.site-form span {
    font-weight: 700;
}

.site-form input,
.site-form textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.98);
    color: var(--ink);
    font: inherit;
}

.status-message {
    margin-bottom: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    font-weight: 600;
}

.status-message.success {
    background: rgba(25, 179, 187, 0.12);
    color: var(--teal);
}

.status-message.error {
    background: rgba(245, 57, 8, 0.1);
    color: var(--red-orange);
}

.site-footer {
    padding: 2.2rem 0 3rem;
    background:
        linear-gradient(180deg, rgba(18, 141, 149, 0.98), rgba(16, 113, 120, 0.98)),
        radial-gradient(circle at top right, rgba(255, 92, 28, 0.18), transparent 35%);
    color: rgba(255, 255, 255, 0.95);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 1.5rem;
}

.footer-label {
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
}

.footer-links {
    display: grid;
    gap: 0.7rem;
}

.footer-links a,
.footer-meta a {
    color: rgba(255, 255, 255, 0.94);
}

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

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.8rem);
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        text-align: center;
    }

    .hero-grid,
    .page-banner-grid,
    .cta-band-inner,
    .two-up,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .three-up,
    .faculty-grid,
    .bullet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-thumb-grid {
        grid-template-columns: 1fr 1fr;
    }

    .split-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section,
    .page-banner,
    .content-section {
        padding-top: 2.2rem;
    }

    .stats-grid,
    .three-up,
    .faculty-grid,
    .bullet-grid {
        grid-template-columns: 1fr;
    }

    .hero-thumb-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-wrap {
        padding: 0.9rem 0;
    }

    .glass-card,
    .feature-card,
    .agenda-card,
    .info-panel,
    .message-card,
    .bullet-card,
    .faculty-card,
    .cta-band-inner {
        padding: 1.35rem;
    }

    .detail-list li {
        flex-direction: column;
    }
}
