:root {
    --bg: #f7f1e9;
    --surface: #fffdf9;
    --surface-soft: #f9f3ec;
    --teal-900: #122645;
    --teal-800: #1c355b;
    --teal-700: #5e2130;
    --teal-500: #8a4a57;
    --teal-300: #dfc6b5;
    --gold-500: #b78b5d;
    --text: #1d2b3f;
    --text-soft: #4b5060;
    --line: rgba(133, 97, 80, 0.2);
    --line-strong: rgba(133, 97, 80, 0.34);
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow-lg: 0 20px 60px rgba(53, 38, 27, 0.14);
    --shadow-md: 0 12px 28px rgba(53, 38, 27, 0.08);
}

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

html,
body {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(110% 90% at 0 -15%, rgba(175, 120, 95, 0.1) 0%, transparent 44%),
        radial-gradient(110% 90% at 100% -15%, rgba(190, 150, 118, 0.12) 0%, transparent 46%),
        var(--bg);
    color: var(--text);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.65;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    letter-spacing: -0.018em;
    line-height: 1.12;
    color: var(--teal-900);
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
}

p {
    margin: 0 0 1rem;
    color: var(--text-soft);
}

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

a:hover {
    text-decoration: none;
}

.container {
    width: min(1320px, calc(100% - 3rem));
    margin-inline: auto;
}

.narrow {
    width: min(840px, calc(100% - 3rem));
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 500;
    background: #fff;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
}

.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--gold-500);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(12px) saturate(120%);
    background: rgba(250, 246, 240, 0.9);
    border-bottom: 1px solid var(--line);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.brand-logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.mobile-brand-title {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.12rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex: 1 1 auto;
    min-width: 0;
}

.site-nav > a {
    padding: 0.52rem 0.7rem;
    border-radius: 999px;
    font-size: 0.88rem;
    color: rgba(34, 40, 53, 0.92);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.site-nav > a:hover {
    background: rgba(156, 102, 79, 0.08);
    color: #7c2f3f;
}

.site-nav > a.active {
    background: linear-gradient(180deg, rgba(247, 236, 224, 0.95), rgba(243, 229, 214, 0.9));
    color: #7a3040;
    box-shadow: inset 0 0 0 1px rgba(174, 129, 105, 0.42);
}

.language-switcher {
    margin-inline-start: auto;
    padding-inline-start: 0.7rem;
    border-inline-start: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    gap: 0.18rem;
    flex: 0 0 auto;
}

.language-switcher a {
    min-width: 30px;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(17, 39, 51, 0.78);
    border-radius: 999px;
    padding: 0.27rem 0.42rem;
    transition: all 0.2s ease;
}

.language-switcher a:hover {
    background: rgba(156, 102, 79, 0.09);
    color: #7a3040;
}

.language-switcher a.current {
    background: rgba(247, 235, 223, 0.92);
    box-shadow: inset 0 0 0 1px rgba(170, 123, 96, 0.34);
    color: #7a3040;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: #fff;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--teal-800);
}

.hero {
    position: relative;
    overflow: clip;
    min-height: min(900px, calc(100vh - 84px));
    border-bottom: 1px solid rgba(121, 93, 73, 0.2);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    box-shadow: none;
    pointer-events: none;
}

.hero-bg,
.hero-overlay,
.hero-motif {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: none;
    filter: none;
}

.hero-overlay {
    background: none;
}

.hero-motif {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1080px, calc(100% - 3rem));
    margin-inline: auto;
    text-align: center;
    padding-top: clamp(3.6rem, 6vw, 5.2rem);
    padding-bottom: clamp(4.8rem, 8.4vw, 6.8rem);
    animation: riseIn 680ms cubic-bezier(0.21, 1, 0.34, 1) both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.46rem 1.12rem;
    border-radius: 14px;
    background: rgba(251, 247, 241, 0.8);
    box-shadow: inset 0 0 0 1px rgba(177, 135, 108, 0.42);
    font-size: 0.92rem;
    color: #8c3b4b;
    margin-bottom: 1.4rem;
    position: relative;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: "✧";
    color: #b88761;
    font-size: 0.88rem;
    margin-inline: 0.45rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 5.3rem);
    margin-bottom: 0.8rem;
    color: #112a4c;
    line-height: 1.06;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    color: #7a3040;
    margin-bottom: 1.15rem;
    display: inline-block;
    position: relative;
    padding-top: 1.15rem;
}

.hero-subtitle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 110px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(185, 132, 101, 0.9) 30%, rgba(185, 132, 101, 0.9) 70%, transparent 100%);
}

.hero-subtitle::after {
    content: "✧";
    position: absolute;
    left: 50%;
    top: -0.35rem;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #b88761;
    background: rgba(249, 243, 235, 0.9);
    padding: 0 0.24rem;
}

.hero-paragraphs {
    width: min(920px, 100%);
    margin: 0 auto;
}

.hero-paragraphs p {
    margin-bottom: 0.7rem;
    color: #3f4450;
    font-size: clamp(1.06rem, 1.56vw, 1.32rem);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.72rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.76rem 1.3rem;
    border-radius: 999px;
    font-size: 0.95rem;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    background: linear-gradient(160deg, #8a233a, #6f2433);
    color: #fff;
    box-shadow: 0 12px 24px rgba(111, 36, 51, 0.32);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #7a3040;
    box-shadow: inset 0 0 0 1px rgba(150, 94, 80, 0.34);
}

.teaser-section {
    position: relative;
    margin-top: 0;
    z-index: 3;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.teaser-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(21, 72, 89, 0.15);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    box-shadow: var(--shadow-md);
}

.teaser-card h3 {
    font-size: clamp(1.12rem, 1.6vw, 1.35rem);
    margin-bottom: 0.55rem;
}

.teaser-card p {
    margin-bottom: 0;
}

.content-section {
    padding: clamp(3.4rem, 6vw, 5rem) 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(222, 240, 238, 0.43) 0%, rgba(245, 248, 248, 0.68) 100%),
        radial-gradient(120% 100% at 100% -15%, rgba(176, 135, 74, 0.12), transparent 45%);
    border-top: 1px solid rgba(24, 82, 97, 0.08);
    border-bottom: 1px solid rgba(24, 82, 97, 0.08);
}

.content-section h2 {
    font-size: clamp(2rem, 4.3vw, 3.2rem);
    margin-bottom: 1.05rem;
}

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

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.4rem;
    box-shadow: 0 8px 24px rgba(18, 58, 72, 0.06);
}

.panel-gold {
    background: linear-gradient(150deg, #fffefb 4%, #f9f3e9 96%);
    border-color: rgba(176, 135, 74, 0.28);
}

.theme-list {
    margin: 0.8rem 0 0;
    padding-inline-start: 1.05rem;
}

.theme-list li {
    margin: 0.35rem 0;
    color: #375968;
}

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

.preview-grid article {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.1rem;
}

.preview-grid h3 {
    font-size: 1.48rem;
    margin-bottom: 0.4rem;
}

.page-hero {
    padding-top: clamp(4.2rem, 8vw, 5.8rem);
    padding-bottom: 0.7rem;
    background:
        radial-gradient(95% 95% at 5% 10%, rgba(179, 140, 104, 0.16) 0%, transparent 58%),
        radial-gradient(92% 120% at 100% 0, rgba(138, 85, 69, 0.15) 0%, transparent 60%);
}

.page-hero + .content-section {
    padding-top: clamp(1.1rem, 2.2vw, 1.8rem);
}

.page-eyebrow {
    color: #356176;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.page-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4.3rem);
    margin-bottom: 0.7rem;
}

.page-intro {
    font-size: 1.08rem;
    color: #4b4e5d;
}

.speaker-grid,
.program-grid,
.committee-groups,
.announcement-list,
.venue-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 2rem;
}

.speaker-card,
.program-day,
.committee-group,
.announcement-item,
.venue-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1rem 1.1rem;
}

.committee-group--honorary-board {
    padding: clamp(1.55rem, 3.2vw, 2.35rem);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(27, 43, 67, 0.08);
}

.committee-group--honorary-board h3 {
    margin-bottom: 1.15rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3.1vw, 2.25rem);
    color: #142845;
}

.committee-group--honorary-board > p {
    margin: 0 0 1.5rem;
    color: #535868;
    font-size: clamp(1.05rem, 2vw, 1.38rem);
    line-height: 1.5;
}

.committee-group--honorary-board ul {
    display: grid;
    gap: 0.28rem;
    margin: 0.4rem 0 0;
    padding-inline-start: clamp(1.3rem, 4vw, 2.6rem);
}

.committee-group--honorary-board li {
    color: #1b2a40;
    font-size: clamp(1.02rem, 2.1vw, 1.32rem);
    line-height: 1.42;
}

.committee-group--honorary-board li::marker {
    color: #1b2a40;
    font-size: 0.8em;
}

.about-takdim {
    display: grid;
    gap: 1.2rem;
}

.about-kicker {
    margin: 0;
    color: #8f6a4e;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

.about-dek {
    margin: 0;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    line-height: 1.2;
    color: #162744;
}

.about-lead {
    margin: 0;
    color: #324154;
    font-size: 1.08rem;
    line-height: 1.82;
}

.about-spot {
    margin: 0;
    padding: 1rem 1.1rem;
    background: linear-gradient(145deg, rgba(255, 250, 243, 0.95), rgba(247, 235, 223, 0.72));
    border: 1px solid rgba(170, 123, 96, 0.28);
    border-radius: 16px;
    color: #6d2e3d;
    font-size: 1.03rem;
    line-height: 1.78;
    box-shadow: 0 10px 24px rgba(82, 53, 35, 0.08);
}

.about-block {
    background: #fff;
    border: 1px solid rgba(140, 95, 72, 0.22);
    border-radius: 16px;
    padding: 1.05rem 1.15rem;
    box-shadow: 0 8px 18px rgba(68, 47, 31, 0.06);
}

.about-block h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.28rem, 2vw, 1.72rem);
    color: #13284a;
}

.about-block p:last-child {
    margin-bottom: 0;
}

.about-signature {
    margin-top: 0.3rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(157, 114, 89, 0.45);
    color: #1d334f;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: 1.08rem;
}

.about-signature span {
    display: block;
    margin-top: 0.2rem;
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: #5f7080;
    font-size: 0.95rem;
}

.contact-content p {
    font-size: 1.06rem;
    color: #3f4f61;
    margin-bottom: 1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.65rem;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 1.05rem 1.1rem;
    box-shadow: 0 10px 22px rgba(45, 35, 27, 0.06);
}

.contact-card h3 {
    margin: 0 0 0.52rem;
    font-size: 1.22rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: #214c61;
    border-bottom: 1px solid rgba(33, 76, 97, 0.2);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
    color: #7a3040;
    border-color: rgba(122, 48, 64, 0.35);
}

.contact-address {
    margin-bottom: 0.54rem;
}

.contact-map {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(166, 119, 93, 0.35);
    background: rgba(249, 242, 233, 0.74);
    color: #7b3041;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-map:hover {
    background: rgba(247, 236, 223, 0.9);
    border-color: rgba(166, 119, 93, 0.5);
}

.contact-socials {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.33rem 0.76rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 71, 91, 0.22);
    background: rgba(240, 247, 247, 0.84);
    font-size: 0.88rem;
    font-weight: 600;
    color: #1f4a5f;
    transition: all 0.2s ease;
}

.contact-socials a:hover {
    transform: translateY(-1px);
    background: rgba(248, 237, 224, 0.9);
    border-color: rgba(166, 119, 93, 0.4);
    color: #7a3040;
}

.academic-framework-content {
    width: min(1160px, calc(100% - 3rem));
}

.academic-frame {
    display: grid;
    gap: 1.45rem;
}

.academic-lead {
    max-width: 940px;
    margin: 0;
    padding: 1rem 1.2rem;
    border-inline-start: 4px solid #b78b5d;
    background:
        linear-gradient(90deg, rgba(183, 139, 93, 0.12), rgba(255, 253, 249, 0.7));
    color: #29374a;
    font-size: 1.12rem;
}

.academic-section {
    display: grid;
    gap: 0.75rem;
}

.academic-section h2 {
    margin-bottom: 0;
    color: #5e2130;
    font-size: 1.8rem;
}

.academic-section p {
    max-width: 920px;
    margin-bottom: 0;
}

.academic-axis-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.academic-axis-card {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(133, 97, 80, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 243, 236, 0.9));
    box-shadow: 0 10px 24px rgba(53, 38, 27, 0.06);
}

.academic-axis-card span {
    display: inline-flex;
    margin-bottom: 0.42rem;
    color: #8a4a57;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.academic-axis-card h3 {
    margin-bottom: 0.42rem;
    color: #182d3a;
    font-size: 1.12rem;
    letter-spacing: 0;
}

.academic-axis-card p {
    margin: 0;
    color: #4b5060;
    font-size: 0.96rem;
}

.academic-note {
    padding: 1.05rem 1.15rem;
    border: 1px solid rgba(31, 71, 91, 0.18);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(31, 71, 91, 0.08), rgba(255, 253, 249, 0.86));
}

.academic-note p {
    margin: 0;
    color: #314150;
}

.speaker-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
}

.speaker-card img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    background: #edf4f4;
}

.program-session {
    border-top: 1px dashed rgba(38, 92, 109, 0.2);
    padding-top: 0.85rem;
    margin-top: 0.85rem;
}

.program-session:first-of-type {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
}

.session-time,
.muted {
    color: #567082;
    font-size: 0.94rem;
}

.program-content {
    width: min(1240px, calc(100% - 3rem));
}

.program-shell {
    display: grid;
    gap: 2.4rem;
    margin-top: 1.4rem;
}

.program-notice {
    margin: 0;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(183, 139, 93, 0.38);
    border-radius: 8px;
    background: rgba(255, 250, 243, 0.88);
    color: #5c3d31;
    font-size: 0.96rem;
}

.program-unavailable {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(183, 139, 93, 0.38);
    border-left: 4px solid #b78b5d;
    border-radius: 8px;
    background: rgba(255, 250, 243, 0.88);
    color: #5c3d31;
}

.program-unavailable p {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.7;
}

.program-day-section {
    display: grid;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line-strong);
}

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

.program-day-date {
    margin: 0 0 0.22rem;
    color: #7b3041;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.program-day-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.program-day-venue {
    margin: 0;
    max-width: 420px;
    text-align: end;
    color: #24465b;
    font-weight: 700;
}

.program-parallel-overview {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(133, 97, 80, 0.24);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: 0 12px 28px rgba(53, 38, 27, 0.07);
}

.program-overview-row {
    display: grid;
    grid-template-columns: 0.72fr repeat(2, minmax(0, 1fr));
}

.program-overview-row > * {
    min-width: 0;
    padding: 0.72rem 0.8rem;
    border-top: 1px solid rgba(133, 97, 80, 0.18);
    border-inline-start: 1px solid rgba(133, 97, 80, 0.18);
    color: #23364a;
}

.program-overview-row > *:first-child {
    border-inline-start: 0;
}

.program-overview-head > * {
    border-top: 0;
    background: #6f1f24;
    color: #fffaf2;
    font-weight: 800;
    text-align: center;
}

.program-overview-time {
    font-weight: 800;
    color: #6f1f24;
    background: rgba(247, 241, 233, 0.72);
}

.program-overview-row a {
    display: grid;
    gap: 0.18rem;
    font-weight: 700;
    color: #1f475b;
    transition: color 0.2s ease, background 0.2s ease;
}

.program-overview-row a:hover {
    background: rgba(247, 236, 223, 0.72);
    color: #7b3041;
}

.program-overview-chair {
    color: #65727d;
    font-size: 0.78rem;
    font-weight: 700;
}

.program-overview-break-title {
    grid-column: span 2;
    color: #5c3d31;
    font-weight: 800;
    background: rgba(247, 241, 233, 0.58);
}

.program-session-list {
    display: grid;
    gap: 1rem;
}

.program-break-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.75rem 0.9rem;
    border: 1px dashed rgba(133, 97, 80, 0.32);
    border-radius: 8px;
    background: rgba(247, 241, 233, 0.56);
    color: #5c3d31;
}

.program-break-card span {
    color: #7b3041;
    font-weight: 900;
}

.program-break-card strong {
    color: #27384a;
}

.program-session-card {
    border: 1px solid rgba(133, 97, 80, 0.22);
    border-radius: 8px;
    background: #fffdf9;
    padding: 1rem;
    box-shadow: 0 10px 26px rgba(53, 38, 27, 0.07);
    scroll-margin-top: 108px;
}

.program-session-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.55rem;
}

.program-session-time,
.program-session-room {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 800;
}

.program-session-time {
    color: #7b3041;
}

.program-session-room {
    color: #24465b;
    text-align: end;
}

.program-session-card h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: 0;
}

.program-session-chair {
    margin: -0.18rem 0 0.65rem;
    color: #24465b;
    font-size: 0.96rem;
    font-weight: 700;
}

.program-session-chair span {
    color: #7b3041;
    font-weight: 900;
}

.program-session-description {
    max-width: 980px;
    margin-bottom: 0.85rem;
    color: #485569;
}

.program-talk-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(133, 97, 80, 0.2);
    border-radius: 8px;
}

.program-talk-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: #fff;
}

.program-talk-table th,
.program-talk-table td {
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid rgba(133, 97, 80, 0.18);
    text-align: start;
    vertical-align: middle;
}

.program-talk-table th {
    background: #f3e8dc;
    color: #5e2130;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.program-talk-table th:first-child,
.program-talk-table td:first-child {
    width: 280px;
}

.program-talk-table--speakers-only {
    min-width: 0;
}

.program-talk-table--speakers-only th:first-child,
.program-talk-table--speakers-only td:first-child {
    width: auto;
}

.program-talk-table tr:last-child td {
    border-bottom: 0;
}

.program-speaker-button {
    display: inline;
    padding: 0;
    border: 0;
    background: transparent;
    color: #1d4158;
    font: inherit;
    font-weight: 800;
    text-align: start;
    cursor: pointer;
    border-bottom: 1px solid rgba(29, 65, 88, 0.24);
}

.program-speaker-button:hover,
.program-speaker-button:focus-visible {
    color: #7b3041;
    border-bottom-color: rgba(123, 48, 65, 0.42);
    outline: 0;
}

.program-speaker-static {
    color: #23364a;
    font-weight: 800;
}

.program-speaker-note {
    color: #7b3041;
    font-size: 0.86rem;
    font-weight: 700;
    margin-inline-start: 0.28rem;
}

.program-speaker-institution,
.program-talk-note {
    display: block;
    margin-top: 0.18rem;
    color: #65727d;
    font-size: 0.84rem;
    font-weight: 600;
}

.program-talk-note {
    color: #7b3041;
}

body.program-modal-open {
    overflow: hidden;
}

.program-modal[hidden] {
    display: none;
}

.program-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.program-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 23, 35, 0.54);
    backdrop-filter: blur(8px);
}

.program-modal-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(86vh, 760px);
    overflow: auto;
    border: 1px solid rgba(248, 237, 224, 0.75);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 243, 236, 0.98));
    padding: clamp(1.1rem, 3vw, 1.55rem);
    box-shadow: 0 26px 70px rgba(12, 25, 36, 0.34);
}

.program-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(111, 31, 36, 0.2);
    border-radius: 50%;
    background: #fffaf2;
    color: #6f1f24;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
}

.program-modal-close:hover,
.program-modal-close:focus-visible {
    background: #6f1f24;
    color: #fffaf2;
    outline: 0;
}

.program-modal-kicker {
    margin: 0 0 0.25rem;
    color: #9a7145;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.program-modal-panel h2 {
    margin: 0 2.5rem 0.35rem 0;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    letter-spacing: 0;
}

.program-modal-institution {
    margin-bottom: 1rem;
    color: #24465b;
    font-weight: 700;
}

.program-modal-meta {
    display: grid;
    gap: 0.65rem;
    margin: 0 0 1.1rem;
    padding: 0.9rem;
    border: 1px solid rgba(133, 97, 80, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.program-modal-meta div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 0.7rem;
}

.program-modal-meta dt {
    color: #7b3041;
    font-weight: 800;
}

.program-modal-meta dd {
    margin: 0;
    color: #22364a;
}

.program-modal-section {
    padding-top: 0.95rem;
    border-top: 1px solid rgba(133, 97, 80, 0.2);
}

.program-modal-section + .program-modal-section {
    margin-top: 0.95rem;
}

.program-modal-section h3 {
    margin-bottom: 0.45rem;
    color: #6f1f24;
    font-size: 1.08rem;
    letter-spacing: 0;
}

.program-modal-works {
    margin: 0;
    padding-left: 1.1rem;
    color: #425368;
}

.program-modal-works li + li {
    margin-top: 0.32rem;
}

.program-modal-abstract {
    min-height: 5.2rem;
    border: 1px dashed rgba(133, 97, 80, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.58);
}

.travel-content {
    width: min(1180px, calc(100% - 3rem));
}

.travel-shell {
    display: grid;
    gap: 1.65rem;
    margin-top: 0.4rem;
}

.travel-lead {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    align-items: end;
    border: 1px solid rgba(123, 48, 65, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(17, 42, 76, 0.92) 0%, rgba(42, 47, 58, 0.74) 52%, rgba(116, 55, 52, 0.56) 100%),
        url("/assets/images/germiyanbg.webp") center / cover no-repeat;
    box-shadow: 0 16px 42px rgba(43, 32, 24, 0.15);
}

.kutahya-lead {
    background:
        linear-gradient(90deg, rgba(92, 33, 48, 0.92) 0%, rgba(39, 60, 76, 0.78) 55%, rgba(34, 84, 88, 0.55) 100%),
        url("/assets/images/sempozyumbg.webp") center / cover no-repeat;
}

.travel-lead-inner {
    width: min(760px, 100%);
    padding: 2rem;
}

.travel-lead h2,
.travel-section h2,
.travel-route-card h3,
.travel-panel h2,
.travel-venue-card h3,
.kutahya-feature-card h3 {
    letter-spacing: 0;
}

.travel-lead h2 {
    margin-bottom: 0.8rem;
    color: #fffaf2;
    font-size: 2.45rem;
    line-height: 1.1;
}

.travel-lead p {
    color: rgba(255, 250, 242, 0.9);
    font-size: 1.04rem;
}

.travel-kicker {
    margin: 0 0 0.45rem;
    color: #9b5e2f;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.travel-lead .travel-kicker {
    color: #f3c888;
}

.travel-cta,
.travel-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 2.4rem;
    margin-top: 0.35rem;
    padding: 0.58rem 0.9rem;
    border: 1px solid rgba(255, 250, 242, 0.48);
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.92);
    color: #6f1f24;
    font-size: 0.92rem;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.travel-cta:hover,
.travel-map-link:hover {
    transform: translateY(-1px);
    background: #fff;
}

.travel-update {
    margin: 0;
    padding: 0.8rem 0.92rem;
    border: 1px solid rgba(183, 139, 93, 0.28);
    border-radius: 8px;
    background: rgba(255, 250, 243, 0.82);
    color: #604234;
    font-size: 0.93rem;
}

.travel-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.travel-fact {
    min-width: 0;
    padding: 0.9rem;
    border: 1px solid rgba(133, 97, 80, 0.22);
    border-radius: 8px;
    background: #fffdf9;
    box-shadow: 0 8px 20px rgba(53, 38, 27, 0.06);
}

.travel-fact span {
    display: block;
    margin-bottom: 0.35rem;
    color: #7b3041;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.travel-fact strong {
    display: block;
    color: #172b46;
    line-height: 1.28;
    overflow-wrap: anywhere;
}

.travel-section {
    display: grid;
    gap: 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(133, 97, 80, 0.22);
}

.travel-section-head {
    display: grid;
    gap: 0.2rem;
    max-width: 880px;
}

.travel-section h2 {
    margin-bottom: 0.25rem;
    font-size: 2rem;
}

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

.travel-route-grid,
.travel-venue-grid,
.kutahya-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.travel-route-card,
.travel-panel,
.travel-venue-card,
.kutahya-feature-card {
    min-width: 0;
    border: 1px solid rgba(133, 97, 80, 0.22);
    border-radius: 8px;
    background: #fffdf9;
    padding: 1rem;
    box-shadow: 0 9px 22px rgba(53, 38, 27, 0.06);
}

.travel-route-card h3,
.travel-venue-card h3,
.kutahya-feature-card h3 {
    margin-bottom: 0.45rem;
    color: #102c48;
    font-size: 1.3rem;
}

.travel-route-card p,
.travel-panel p,
.travel-venue-card p,
.kutahya-feature-card p {
    color: #425368;
}

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

.travel-mode-list li {
    position: relative;
    padding-left: 1rem;
    color: #384e62;
    font-size: 0.95rem;
    line-height: 1.55;
}

.travel-mode-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.66em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: #b78b5d;
}

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

.travel-panel {
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(245, 251, 250, 0.9));
}

.travel-panel h2 {
    margin-bottom: 0.55rem;
    font-size: 1.65rem;
}

.travel-info-list {
    display: grid;
    gap: 0.55rem;
    margin: 0.95rem 0 0;
}

.travel-info-list div {
    display: grid;
    grid-template-columns: 8.5rem minmax(0, 1fr);
    gap: 0.7rem;
    padding-top: 0.55rem;
    border-top: 1px dashed rgba(133, 97, 80, 0.25);
}

.travel-info-list dt {
    color: #7b3041;
    font-weight: 800;
}

.travel-info-list dd {
    margin: 0;
    color: #22364a;
}

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

.travel-venue-card {
    display: grid;
    align-content: start;
}

.travel-venue-tag {
    width: fit-content;
    margin: 0 0 0.55rem;
    padding: 0.24rem 0.55rem;
    border-radius: 8px;
    background: rgba(111, 31, 36, 0.08);
    color: #7b3041;
    font-size: 0.78rem;
    font-weight: 800;
}

.travel-address {
    margin-bottom: 0.65rem;
    color: #24465b;
    font-weight: 800;
}

.travel-map-link {
    margin-top: 0.95rem;
    border-color: rgba(111, 31, 36, 0.22);
    background: #6f1f24;
    color: #fffaf2;
}

.travel-map-link:hover {
    background: #822c36;
}

.travel-tips {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    padding: 1.1rem;
    border: 1px solid rgba(133, 97, 80, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 250, 243, 0.82), rgba(239, 248, 247, 0.7));
}

.travel-tips ul,
.kutahya-route ol {
    margin: 0;
    padding-left: 1.15rem;
}

.travel-tips li,
.kutahya-route li {
    color: #35485d;
    line-height: 1.58;
}

.travel-tips li + li,
.kutahya-route li + li {
    margin-top: 0.35rem;
}

.travel-sources {
    gap: 0.6rem;
}

.travel-source-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.travel-source-list a {
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0.42rem 0.65rem;
    border: 1px solid rgba(31, 71, 91, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: #1f475b;
    font-size: 0.88rem;
    font-weight: 700;
}

.travel-source-list a:hover {
    border-color: rgba(123, 48, 65, 0.32);
    color: #7b3041;
}

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

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

.kutahya-feature-card {
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(248, 242, 234, 0.76));
}

.kutahya-route {
    grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    padding: 1.1rem;
    border: 1px solid rgba(133, 97, 80, 0.22);
    border-radius: 8px;
    background: #fffdf9;
}

.site-footer {
    margin-top: 2.3rem;
    background:
        linear-gradient(180deg, #0d2b37 0%, #102f3a 100%);
    color: #d5e5e7;
    padding: 3.2rem 0 1.2rem;
}

.footer-partners {
    margin-bottom: 2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-track + .partner-track {
    margin-top: 1.15rem;
}

.partner-track-title {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(224, 239, 241, 0.86);
}

.partner-logo-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.75rem;
}

.partner-logo-row-organizer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-logo-card {
    min-height: 86px;
    border-radius: 16px;
    border: 1px solid rgba(210, 231, 233, 0.36);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 246, 247, 0.96));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.42rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-logo-card-organizer {
    min-height: 112px;
    display: grid;
    grid-template-columns: minmax(86px, 120px) 1fr;
    align-items: center;
    justify-items: start;
    gap: 0.85rem;
    padding: 0.55rem 0.7rem;
}

.partner-logo-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-card img {
    width: auto;
    max-width: 90%;
    max-height: 72px;
    object-fit: contain;
    display: block;
    filter: saturate(0.98) contrast(1.02);
}

.partner-logo-card-organizer img {
    max-height: 76px;
    max-width: 100%;
}

.partner-org-name {
    font-size: 0.92rem;
    line-height: 1.24;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #113246;
    overflow-wrap: anywhere;
}

.partner-logo-card:hover {
    transform: translateY(-2px);
    border-color: rgba(196, 226, 228, 0.6);
    box-shadow: 0 12px 28px rgba(4, 20, 28, 0.22);
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-bottom: 0.72rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: #d5e5e7;
    font-size: 0.94rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 0.65fr;
    gap: 1rem;
}

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

.socials {
    display: flex;
    gap: 0.62rem;
    margin-top: 0.62rem;
}

.footer-bottom {
    margin-top: 1.25rem;
    padding-top: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 0.66rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}

body.rtl {
    direction: rtl;
}

body.rtl .site-nav,
body.rtl .language-switcher,
body.rtl .hero-actions,
body.rtl .sound-hero-actions,
body.rtl .sound-player-meta,
body.rtl .socials,
body.rtl .legal-links {
    flex-direction: row-reverse;
}

body.rtl .language-switcher {
    margin-inline-start: 0;
    margin-inline-end: auto;
    padding-inline-start: 0;
    padding-inline-end: 0.7rem;
    border-inline-start: 0;
    border-inline-end: 1px solid var(--line);
}

body.rtl .theme-list {
    padding-inline-start: 0;
    padding-inline-end: 1.05rem;
}

body.rtl .contact-socials {
    flex-direction: row-reverse;
}

body.rtl .sound-track-card,
body.rtl .sound-section-head,
body.rtl .sound-detail-body,
body.rtl .sound-production-note,
body.rtl .academic-framework-content,
body.rtl .academic-axis-card {
    text-align: right;
}

body.rtl .sound-story-link {
    align-self: flex-end;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1220px) {
    .teaser-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .partner-logo-row-organizer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .site-nav {
        display: none;
        position: absolute;
        top: 76px;
        inset-inline: 0;
        background: rgba(250, 246, 240, 0.98);
        border-bottom: 1px solid var(--line);
        padding: 1rem 1.5rem 1.2rem;
        gap: 0.55rem;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

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

    .site-nav > a {
        display: block;
        width: 100%;
    }

    body.rtl .site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .language-switcher {
        width: 100%;
        margin-top: 0.4rem;
        margin-inline-start: 0;
        padding-top: 0.65rem;
        border-inline-start: 0;
        border-top: 1px solid var(--line);
    }

    .brand {
        width: 56px;
        height: 56px;
    }

    .mobile-brand-title {
        display: block;
        flex: 1 1 auto;
        min-width: 0;
        margin-inline: 0.7rem;
        color: var(--teal-900);
        font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
        font-size: 1.05rem;
        font-weight: 800;
        line-height: 1.12;
        text-align: left;
    }

    .grid-two,
    .preview-grid {
        grid-template-columns: 1fr;
    }

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

    .program-overview-row {
        grid-template-columns: 0.6fr repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .travel-split,
    .travel-venue-grid,
    .kutahya-feature-grid,
    .travel-tips,
    .kutahya-route {
        grid-template-columns: 1fr;
    }

    .travel-info-list div {
        grid-template-columns: 1fr;
        gap: 0.12rem;
    }

    .program-parallel-overview {
        overflow: visible;
        gap: 0.72rem;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .program-overview-head {
        display: none;
    }

    .program-overview-row {
        min-width: 0;
        grid-template-columns: 1fr;
        overflow: hidden;
        border: 1px solid rgba(133, 97, 80, 0.22);
        border-radius: 8px;
        background: #fffdf9;
        box-shadow: 0 8px 18px rgba(53, 38, 27, 0.06);
    }

    .program-overview-row > * {
        display: grid;
        gap: 0.18rem;
        padding: 0.68rem 0.78rem;
        border-top: 1px solid rgba(133, 97, 80, 0.16);
        border-inline-start: 0;
        overflow-wrap: anywhere;
    }

    .program-overview-row > *:first-child {
        border-top: 0;
    }

    .program-overview-row > *::before {
        content: attr(data-label);
        color: #7b3041;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .program-overview-break-title {
        grid-column: auto;
    }

    .program-talk-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
    }

    .program-talk-table,
    .program-talk-table thead,
    .program-talk-table tbody,
    .program-talk-table tr,
    .program-talk-table th,
    .program-talk-table td {
        display: block;
    }

    .program-talk-table {
        min-width: 0;
        background: transparent;
    }

    .program-talk-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .program-talk-table tbody {
        display: grid;
        gap: 0.65rem;
    }

    .program-talk-table tr {
        overflow: hidden;
        border: 1px solid rgba(133, 97, 80, 0.2);
        border-radius: 8px;
        background: #fff;
    }

    .program-talk-table th:first-child,
    .program-talk-table td:first-child,
    .program-talk-table th:nth-child(2),
    .program-talk-table td:nth-child(2) {
        width: auto;
    }

    .program-talk-table td {
        display: grid;
        grid-template-columns: minmax(5.4rem, 34%) minmax(0, 1fr);
        gap: 0.65rem;
        align-items: start;
        padding: 0.64rem 0.74rem;
        overflow-wrap: anywhere;
    }

    .program-talk-table td::before {
        content: attr(data-label);
        color: #7b3041;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .program-talk-table tr:last-child td {
        border-bottom: 1px solid rgba(133, 97, 80, 0.18);
    }

    .program-talk-table tr td:last-child {
        border-bottom: 0;
    }

    .program-speaker-button {
        overflow-wrap: anywhere;
    }

    .program-break-card {
        display: grid;
        justify-content: stretch;
        gap: 0.18rem;
    }
}

@media (max-width: 720px) {
    .container,
    .narrow {
        width: min(100%, calc(100% - 1.35rem));
    }

    .hero {
        min-height: 78vh;
    }

    .hero-content {
        padding-top: 3.25rem;
        padding-bottom: 3.7rem;
    }

    .hero h1 {
        line-height: 1.03;
    }

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

    .speaker-card {
        grid-template-columns: 1fr;
    }

    .program-content {
        width: min(100%, calc(100% - 1.35rem));
    }

    .academic-framework-content {
        width: min(100%, calc(100% - 1.35rem));
    }

    .academic-lead {
        padding: 0.95rem 1rem;
        font-size: 1rem;
    }

    .academic-axis-grid {
        grid-template-columns: 1fr;
    }

    .academic-section h2 {
        font-size: 1.55rem;
    }

    .travel-content {
        width: min(100%, calc(100% - 1.35rem));
    }

    .travel-shell {
        gap: 1.2rem;
    }

    .travel-lead {
        min-height: 430px;
    }

    .travel-lead-inner {
        padding: 1.15rem;
    }

    .travel-lead h2 {
        font-size: 1.9rem;
    }

    .travel-lead p {
        font-size: 0.98rem;
    }

    .travel-facts,
    .travel-route-grid,
    .kutahya-facts {
        grid-template-columns: 1fr;
    }

    .travel-section h2 {
        font-size: 1.62rem;
    }

    .program-day-heading,
    .program-session-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .program-day-venue,
    .program-session-room {
        max-width: none;
        text-align: start;
    }

    .program-modal {
        align-items: end;
        padding: 0;
    }

    .program-modal-panel {
        width: 100%;
        max-height: 90vh;
        border-radius: 8px 8px 0 0;
    }

    .program-modal-meta div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
    }

    .site-nav > a {
        width: 100%;
    }

    .mobile-brand-title {
        margin-inline: 0.55rem;
        font-size: 1rem;
    }

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

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

    .partner-logo-card-organizer {
        grid-column: auto;
        min-height: 102px;
        grid-template-columns: minmax(72px, 96px) 1fr;
    }

    .partner-logo-row-organizer {
        grid-template-columns: 1fr;
    }

    .partner-org-name {
        font-size: 0.86rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 380px) {
    .brand {
        width: 50px;
        height: 50px;
    }

    .mobile-brand-title {
        margin-inline: 0.45rem;
        font-size: 0.92rem;
    }

    .nav-toggle {
        width: 50px;
        height: 50px;
    }
}

html {
    scroll-behavior: smooth;
}

.sound-page {
    margin-top: -0.1rem;
    background:
        linear-gradient(180deg, rgba(62, 20, 31, 0.98) 0%, rgba(95, 34, 49, 0.94) 34rem, rgba(247, 241, 233, 1) 34rem),
        repeating-linear-gradient(90deg, rgba(183, 139, 93, 0.06) 0 1px, transparent 1px 34px);
}

.sound-hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(36, 13, 20, 0.92) 0%, rgba(82, 28, 44, 0.82) 52%, rgba(24, 45, 58, 0.6) 100%),
        url("/assets/images/germiyanbg.webp") center / cover no-repeat;
}

.sound-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        repeating-linear-gradient(45deg, rgba(255, 244, 223, 0.045) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 38%);
}

.sound-hero::after {
    content: "";
    position: absolute;
    right: 6%;
    bottom: 4rem;
    width: min(28rem, 40vw);
    height: min(28rem, 40vw);
    border: 1px solid rgba(230, 197, 132, 0.18);
    transform: rotate(45deg);
}

.sound-hero-inner {
    max-width: 880px;
    padding: 6.5rem 0 6rem;
}

.sound-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1rem;
    color: #d8b06c;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sound-kicker::before {
    content: "";
    width: 2.3rem;
    height: 1px;
    background: currentColor;
}

.sound-hero h1,
.sound-section-head h2,
.sound-track-card h2,
.sound-composition-card h3 {
    letter-spacing: 0;
}

.sound-hero h1 {
    max-width: 780px;
    margin-bottom: 0.8rem;
    color: #fff8ea;
    font-size: 4.2rem;
}

.sound-subtitle {
    margin-bottom: 1rem;
    color: #f1d8a1;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.35;
}

.sound-hero-copy {
    max-width: 720px;
    margin-bottom: 2rem;
    color: rgba(255, 248, 234, 0.88);
    font-size: 1.08rem;
}

.sound-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sound-button,
.sound-story-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.2;
}

.sound-button {
    padding: 0.72rem 1rem;
    border: 1px solid rgba(239, 204, 139, 0.48);
    background: #e3bb72;
    color: #38101b;
    box-shadow: 0 14px 28px rgba(20, 9, 12, 0.18);
}

.sound-button:nth-child(2) {
    background: rgba(255, 249, 238, 0.08);
    color: #fff8ea;
}

.sound-button:hover,
.sound-button:focus-visible {
    transform: translateY(-1px);
    text-decoration: none;
}

.sound-shell {
    display: grid;
    gap: 1.6rem;
    padding: 2rem 0 1.2rem;
}

.sound-intro {
    max-width: 980px;
    padding: 1.35rem 1.5rem;
    border: 1px solid rgba(183, 139, 93, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(249, 241, 229, 0.88)),
        repeating-linear-gradient(0deg, rgba(94, 33, 48, 0.035) 0 1px, transparent 1px 18px);
    box-shadow: 0 16px 34px rgba(53, 38, 27, 0.08);
}

.sound-intro p {
    margin: 0;
    color: #38465a;
    font-size: 1.05rem;
}

.sound-track-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.sound-track-card {
    scroll-margin-top: 7rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
    padding: 1.25rem;
    border: 1px solid rgba(133, 97, 80, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 243, 236, 0.94)),
        linear-gradient(90deg, rgba(94, 33, 48, 0.06), rgba(31, 71, 91, 0.04));
    box-shadow: 0 18px 42px rgba(53, 38, 27, 0.1);
}

.sound-track-head {
    display: grid;
    gap: 0.35rem;
}

.sound-track-head span,
.sound-player-meta span {
    color: #7b3041;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sound-track-card h2 {
    margin: 0;
    color: #24121a;
    font-size: 1.75rem;
}

.sound-track-card p {
    margin: 0;
    color: #4d5260;
}

.sound-player {
    display: grid;
    gap: 0.75rem;
    margin-top: auto;
    padding: 0.95rem;
    border: 1px solid rgba(123, 48, 65, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(63, 19, 32, 0.96), rgba(20, 48, 60, 0.92)),
        repeating-linear-gradient(90deg, rgba(230, 187, 114, 0.08) 0 1px, transparent 1px 20px);
    color: #fff8ea;
}

.sound-player-visual {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.sound-play-mark {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(239, 204, 139, 0.5);
    border-radius: 50%;
    background: rgba(255, 248, 234, 0.08);
    color: #f1cf88;
    font-size: 1.1rem;
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 0.28rem;
    min-width: 0;
    height: 3rem;
    padding: 0 0.1rem;
}

.sound-wave span {
    flex: 1 1 0;
    max-width: 0.42rem;
    min-width: 2px;
    height: var(--bar-height);
    border-radius: 999px;
    background: linear-gradient(180deg, #f0cc83, rgba(255, 248, 234, 0.38));
}

.sound-player-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: #fff8ea;
}

.sound-player-meta strong {
    overflow-wrap: anywhere;
}

.sound-player audio {
    width: 100%;
    accent-color: #d8a95e;
}

.sound-story-link {
    align-self: flex-start;
    padding: 0.56rem 0.78rem;
    border: 1px solid rgba(31, 71, 91, 0.16);
    background: #fff8ec;
    color: #5e2130;
}

.sound-story-link:hover,
.sound-story-link:focus-visible {
    border-color: rgba(123, 48, 65, 0.34);
    background: #f5eadb;
}

.sound-composition,
.sound-accordion-section,
.sound-production-note {
    border-radius: 8px;
}

.sound-composition {
    display: grid;
    gap: 1.1rem;
    padding: 1.35rem;
    border: 1px solid rgba(183, 139, 93, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(247, 241, 233, 0.84)),
        repeating-linear-gradient(45deg, rgba(31, 71, 91, 0.04) 0 1px, transparent 1px 22px);
}

.sound-section-head {
    max-width: 780px;
}

.sound-section-head h2 {
    margin-bottom: 0.45rem;
    color: #24121a;
    font-size: 2.25rem;
}

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

.sound-composition-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
}

.sound-composition-card {
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(133, 97, 80, 0.2);
    border-radius: 8px;
    background: #fffdf9;
}

.sound-composition-card h3 {
    margin-bottom: 0.45rem;
    color: #5e2130;
    font-size: 1.15rem;
}

.sound-composition-card p {
    margin: 0;
    font-size: 0.95rem;
}

.sound-accordion-section {
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem;
    border: 1px solid rgba(133, 97, 80, 0.22);
    background: rgba(255, 253, 249, 0.86);
}

.sound-detail-list {
    display: grid;
    gap: 0.7rem;
}

.sound-detail {
    scroll-margin-top: 7rem;
    overflow: hidden;
    border: 1px solid rgba(123, 48, 65, 0.18);
    border-radius: 8px;
    background: #fffdf9;
}

.sound-detail summary {
    cursor: pointer;
    padding: 0.95rem 1rem;
    color: #24121a;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
    font-size: 1.08rem;
    font-weight: 800;
    list-style-position: inside;
}

.sound-detail summary:focus-visible {
    outline: 2px solid rgba(183, 139, 93, 0.8);
    outline-offset: 3px;
}

.sound-detail-body {
    padding: 0 1rem 1rem;
}

.sound-detail-body p {
    color: #3f4655;
}

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

.sound-production-note {
    padding: 1rem 1.15rem;
    border: 1px solid rgba(183, 139, 93, 0.22);
    background: rgba(255, 253, 249, 0.64);
}

.sound-production-note p {
    margin: 0;
    color: #5a5260;
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .sound-hero {
        min-height: 560px;
    }

    .sound-hero h1 {
        font-size: 3.45rem;
    }

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

@media (max-width: 860px) {
    .sound-hero {
        min-height: auto;
    }

    .sound-hero::after {
        display: none;
    }

    .sound-hero-inner {
        padding: 4.5rem 0;
    }

    .sound-track-grid {
        grid-template-columns: 1fr;
    }

    .sound-player-meta {
        flex-direction: column;
        gap: 0.15rem;
    }
}

@media (max-width: 720px) {
    .sound-page {
        background:
            linear-gradient(180deg, rgba(70, 24, 36, 0.98) 0%, rgba(99, 34, 50, 0.94) 28rem, rgba(247, 241, 233, 1) 28rem),
            repeating-linear-gradient(90deg, rgba(183, 139, 93, 0.06) 0 1px, transparent 1px 28px);
    }

    .sound-hero-inner {
        padding: 3.6rem 0;
    }

    .sound-hero h1 {
        font-size: 2.65rem;
    }

    .sound-subtitle {
        font-size: 1.18rem;
    }

    .sound-hero-copy,
    .sound-intro p {
        font-size: 1rem;
    }

    .sound-hero-actions,
    .sound-button {
        width: 100%;
    }

    .sound-shell {
        width: min(100%, calc(100% - 1.35rem));
        padding-top: 1.25rem;
    }

    .sound-intro,
    .sound-track-card,
    .sound-composition,
    .sound-accordion-section {
        padding: 1rem;
    }

    .sound-track-card h2 {
        font-size: 1.48rem;
    }

    .sound-section-head h2 {
        font-size: 1.7rem;
    }

    .sound-composition-grid {
        grid-template-columns: 1fr;
    }

    .sound-player {
        padding: 0.8rem;
    }

    .sound-play-mark {
        width: 2.65rem;
        height: 2.65rem;
    }

    .sound-wave {
        gap: 0.18rem;
    }

    .sound-detail summary {
        padding: 0.85rem 0.9rem;
        font-size: 1rem;
    }
}

@media (max-width: 380px) {
    .sound-hero h1 {
        font-size: 2.25rem;
    }

    .sound-player-visual {
        grid-template-columns: 1fr;
    }

    .sound-wave {
        width: 100%;
    }
}
