* {
    box-sizing: border-box;
}

:root {
    --black: #000;
    --ink: #070707;
    --paper: #f5f2eb;
    --paper-soft: #fbfaf7;
    --white: #fff;
    --muted: rgba(255,255,255,.72);
    --line: rgba(255,255,255,.22);
    --dark-line: rgba(0,0,0,.12);
    --gold: #c4a36d;
    --sand: #d8c6aa;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--white);
    background: #000;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 92px;
    z-index: 50;
    display: grid;
    grid-template-columns: 250px 1fr auto auto;
    align-items: center;
    gap: 28px;
    padding: 0 34px;
    background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.04));
    backdrop-filter: blur(8px);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    letter-spacing: .16em;
    line-height: 1;
}

.brand span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: .15em;
    white-space: nowrap;
}

.brand small {
    font-size: 10px;
    letter-spacing: .28em;
    white-space: nowrap;
}

.main-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
}

.main-nav a {
    position: relative;
    padding: 13px 0;
    opacity: .78;
    transition: opacity .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    opacity: 1;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 1px;
    background: var(--white);
}

.header-cta {
    border: 1px solid rgba(255,255,255,.66);
    padding: 17px 24px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    white-space: nowrap;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.header-cta:hover,
.header-cta:focus {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.12);
    color: #fff;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 7px auto;
    background: #fff;
}

.hero-section {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 118px 64px 72px;
    background:
        radial-gradient(circle at 70% 50%, rgba(255,255,255,.16), transparent 25%),
        radial-gradient(circle at 82% 82%, rgba(255,255,255,.08), transparent 26%),
        #000;
}

.sub-hero {
    min-height: 380px;
    padding: 118px 64px 50px;
    align-items: flex-end;
}

.stars-layer {
    position: absolute;
    inset: 0;
    opacity: .86;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.95) 0 1.35px, transparent 1.65px),
        radial-gradient(circle, rgba(255,255,255,.45) 0 1px, transparent 1.35px);
    background-size: 135px 125px, 210px 190px;
    background-position: 20px 12px, 90px 65px;
    pointer-events: none;
}

.hero-fog {
    position: absolute;
    bottom: -95px;
    width: 58vw;
    height: 230px;
    border-radius: 50%;
    filter: blur(38px);
    background: radial-gradient(ellipse at center, rgba(255,255,255,.18), rgba(255,255,255,.04) 42%, transparent 70%);
    opacity: .72;
    pointer-events: none;
}

.hero-fog-left { left: 30%; }
.hero-fog-right { right: -10%; }

.hero-content {
    position: relative;
    z-index: 5;
    width: min(44vw, 660px);
    padding-top: 4px;
}

.sub-hero .hero-content {
    width: min(980px, 90vw);
    padding-top: 0;
}

.eyebrow {
    display: block;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .22em;
}

.hero-content h1,
.page-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: .78;
    font-weight: 500;
    letter-spacing: .015em;
}

.hero-content h1 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    max-width: 100%;
    font-size: clamp(92px, 10.6vw, 188px);
    line-height: .70;
    letter-spacing: -.015em;
    text-transform: none;
}

.hero-content h1 span {
    display: block;
    width: 100%;
    margin-top: .095em;
    text-align: center;
    font-size: .82em;
    line-height: .70;
    letter-spacing: .018em;
    transform: translateX(.018em);
}

.page-title {
    font-size: clamp(76px, 9vw, 154px);
}

.sub-hero .page-title {
    font-size: clamp(58px, 7vw, 112px);
    line-height: .88;
}

.hero-kicker {
    margin: 32px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3.1vw, 48px);
    line-height: 1.16;
    letter-spacing: .22em;
}

.hero-text,
.page-intro {
    max-width: 620px;
    margin: 42px 0 0;
    color: rgba(255,255,255,.90);
    font-size: 17px;
    line-height: 1.8;
}

.hero-button,
.dark-button,
.light-button {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 28px;
    border: 1px solid rgba(255,255,255,.58);
    padding: 18px 30px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.hero-button:hover,
.hero-button:focus,
.light-button:hover,
.light-button:focus {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.dark-button {
    background: #000;
    color: #fff;
    border-color: #000;
}

.dark-button:hover,
.dark-button:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

/* Dönen ay alanı: çalışan sistem korunmuştur */
.moon-stage {
    position: absolute;
    z-index: 3;
    right: clamp(58px, 8vw, 168px);
    top: 50%;
    transform: translateY(-45%);
    width: clamp(350px, 30vw, 540px);
    height: clamp(350px, 30vw, 540px);
    display: grid;
    place-items: center;
    touch-action: none;
    user-select: none;
}

.moon-glow {
    position: absolute;
    inset: -13%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.30), rgba(255,255,255,.11) 30%, rgba(255,255,255,.035) 52%, transparent 72%);
    filter: blur(2px);
}

.moon-preview {
    position: absolute;
    width: 94%;
    height: 94%;
    object-fit: contain;
    z-index: 2;
    opacity: 1;
    transition: opacity .55s ease, transform .55s ease;
    filter: drop-shadow(0 0 28px rgba(255,255,255,.20));
}

.moon-stage.is-model-ready .moon-preview {
    opacity: 0;
    pointer-events: none;
}

.moon-loader {
    position: absolute;
    z-index: 4;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    opacity: .75;
    pointer-events: none;
}

.moon-stage.is-model-ready .moon-loader,
.moon-stage.is-error .moon-loader {
    display: none;
}

.moon-loader span {
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255,255,255,.28);
    border-top-color: rgba(255,255,255,.9);
    border-radius: 50%;
    animation: loaderSpin .8s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

.nasa-moon-viewer {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    opacity: 0;
    --poster-color: transparent;
    background: transparent;
    transition: opacity .45s ease;
    cursor: grab;
    touch-action: none;
}

.nasa-moon-viewer:active { cursor: grabbing; }

.moon-stage.is-model-ready .nasa-moon-viewer { opacity: 1; }

.moon-error {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 9%;
    transform: translateX(-50%);
    width: min(420px, 88%);
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
    letter-spacing: .08em;
}

.scroll-indicator {
    position: absolute;
    z-index: 7;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.scroll-indicator span {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.62);
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 18px;
    height: 18px;
    border: 1px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    background: #000;
}

/* Genel bölümler */
.paper-section {
    background: var(--paper);
    color: var(--ink);
    padding: 92px 70px;
}

.dark-section {
    background: #000;
    color: #fff;
    padding: 92px 70px;
}

.section-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 72px;
    align-items: center;
}

.section-kicker {
    display: block;
    margin-bottom: 18px;
    color: #666;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.dark-section .section-kicker {
    color: rgba(255,255,255,.62);
}

.section-title {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 78px);
    line-height: .98;
    font-weight: 400;
}

.section-text {
    margin: 28px 0 0;
    color: #333;
    font-size: 16px;
    line-height: 1.85;
}

.dark-section .section-text {
    color: rgba(255,255,255,.76);
}

.image-frame {
    position: relative;
    overflow: hidden;
    min-height: 410px;
    background: #111;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255,255,255,.38);
    pointer-events: none;
}

.image-frame img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    transition: transform .8s ease;
}

.image-frame:hover img {
    transform: scale(1.04);
}

.about-section {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 86px;
    padding: 80px 70px;
    background: var(--paper);
    color: #000;
}

.about-copy span {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .13em;
}

.about-copy h2 {
    margin: 22px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.1;
    font-weight: 400;
}

.about-copy p {
    font-size: 15px;
    line-height: 1.82;
    color: #333;
}

.about-copy a {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin-top: 22px;
    padding: 17px 26px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.about-image {
    min-height: 360px;
    overflow: hidden;
    background: #111;
}

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

.discipline-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.discipline-card {
    min-height: 250px;
    padding: 34px;
    border-right: 1px solid rgba(255,255,255,.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .25s ease, color .25s ease;
}

.discipline-card:hover {
    background: #fff;
    color: #000;
}

.discipline-card small {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .18em;
}

.discipline-card h3 {
    margin: 24px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 400;
}

.discipline-card p {
    color: currentColor;
    opacity: .75;
    line-height: 1.65;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.modern-card {
    background: #fff;
    color: #000;
    border: 1px solid var(--dark-line);
    transition: transform .25s ease, box-shadow .25s ease;
}

.modern-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 60px rgba(0,0,0,.14);
}

.modern-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.modern-card-content {
    padding: 30px;
}

.modern-card-content small {
    color: #777;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
}

.modern-card-content h3 {
    margin: 14px 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: 1.08;
    font-weight: 400;
}

.modern-card-content p {
    color: #333;
    line-height: 1.72;
    margin: 0;
}

.dark-card {
    background: #0d0d0d;
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
}

.dark-card .modern-card-content p {
    color: rgba(255,255,255,.72);
}

.dark-card .modern-card-content small {
    color: var(--sand);
}

.event-list {
    display: grid;
    gap: 18px;
}

.event-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 28px 0;
    border-top: 1px solid rgba(0,0,0,.15);
    color: #000;
}

.event-date {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 46px;
    line-height: .9;
}

.event-date span {
    display: block;
    margin-top: 7px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
}

.event-row h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.event-row p {
    margin: 8px 0 0;
    color: #444;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    background: #111;
}

.gallery-item.large {
    grid-column: span 7;
    min-height: 460px;
}

.gallery-item.medium {
    grid-column: span 5;
    min-height: 460px;
}

.gallery-item.small {
    grid-column: span 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s ease, opacity .25s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    opacity: .86;
}

.gallery-item span {
    position: absolute;
    left: 22px;
    bottom: 20px;
    z-index: 2;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.quote-section {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    place-items: center;
    padding: 80px 30px;
    text-align: center;
    background: #000;
}

.quote-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('/assets/images/quote-vase.jpg') center/cover no-repeat;
    opacity: .32;
    filter: grayscale(1);
}

.quote-section blockquote {
    position: relative;
    z-index: 2;
    width: min(960px, 92vw);
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 72px);
    line-height: 1.05;
}

.feature-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    align-items: start;
}

.feature-item span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-weight: 900;
}

.feature-item h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

.feature-item p {
    margin: 0;
    color: #444;
    line-height: 1.65;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 56px;
    align-items: start;
}

.info-panel {
    background: #111;
    color: #fff;
    padding: 34px;
    position: sticky;
    top: 120px;
}

.info-panel h2 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
}

.info-panel ul,
.clean-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-panel li,
.clean-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    line-height: 1.55;
}

.clean-list.dark li {
    border-color: rgba(0,0,0,.12);
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 52px;
    align-items: start;
}

.contact-card {
    background: #000;
    color: #fff;
    padding: 34px;
}

.contact-card h2 {
    margin: 0 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
}

.contact-card a,
.contact-card span {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.82);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid rgba(0,0,0,.18);
    background: #fff;
    color: #000;
    padding: 17px 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    color: #000;
    border: 1px solid var(--dark-line);
    padding: 28px;
}

.faq-item h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    font-weight: 400;
}

.faq-item p {
    margin: 0;
    color: #444;
    line-height: 1.72;
}

.breadcrumb {
    position: relative;
    z-index: 5;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.breadcrumb a {
    opacity: .8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr .7fr .8fr 1fr;
    gap: 42px;
    padding: 70px;
    background: #050505;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.1);
}

.site-footer p {
    max-width: 420px;
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}

.footer-logo span {
    font-size: 30px;
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-links strong,
.footer-contact strong {
    margin-bottom: 8px;
    color: #fff;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,.66);
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 70px;
    background: #000;
    color: rgba(255,255,255,.56);
    font-size: 13px;
}

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

.not-found {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 140px 24px 80px;
    text-align: center;
    background: #000;
}

.not-found h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(86px, 18vw, 240px);
    line-height: .8;
}

.not-found p {
    max-width: 580px;
    margin: 28px auto 0;
    color: rgba(255,255,255,.75);
    line-height: 1.7;
}

/* Panel entegrasyonu ve mobil sağlamlaştırma */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-notice {
    max-width: 1180px;
    margin: 0 auto 22px;
    padding: 16px 18px;
    border: 1px solid rgba(0,0,0,.14);
    background: #fff;
    color: #000;
    line-height: 1.55;
}

.form-notice.success {
    border-color: rgba(50,120,72,.35);
    background: #f2fbf4;
}

.form-notice.error {
    border-color: rgba(160,44,44,.35);
    background: #fff4f4;
}

.hero-content,
.about-copy,
.modern-card,
.modern-card-content,
.contact-card,
.info-panel,
.footer-brand,
.footer-links,
.footer-contact {
    min-width: 0;
}

.page-title,
.section-title,
.hero-content h1,
.hero-kicker,
.modern-card-content h3,
.brand span {
    overflow-wrap: anywhere;
}

.contact-form input[aria-invalid="true"],
.contact-form textarea[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
    border-color: #a93232;
    box-shadow: 0 0 0 3px rgba(169,50,50,.1);
}


/* Panel uyumlu etkinlik/workshop kayan kart yapısı */
.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
}

.section-heading-row > div {
    max-width: 900px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
    color: rgba(255,255,255,.86);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding-bottom: 10px;
    transition: color .25s ease, transform .25s ease;
}

.section-link:hover,
.section-link:focus {
    color: var(--gold);
    transform: translateX(4px);
}

.event-carousel-section {
    background: #000;
    color: #fff;
    padding: 86px 70px 34px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.workshop-carousel-section {
    padding-top: 76px;
}

.horizontal-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 42px 0 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(196,163,109,.72) rgba(255,255,255,.08);
}

.horizontal-scroll::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,.08);
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: rgba(196,163,109,.72);
}

.horizontal-track {
    display: flex;
    gap: 26px;
    width: max-content;
    min-width: 100%;
}

.auto-scroll.is-scrollable .horizontal-track {
    animation: none;
}

.auto-scroll.is-scrollable {
    scroll-behavior: auto;
}

.slider-card {
    flex: 0 0 calc((100vw - 194px) / 3);
    max-width: 520px;
    min-width: 360px;
}

.event-teaser-card {
    flex: 0 0 calc((100vw - 226px) / 4);
    min-width: 300px;
    max-width: 430px;
    background: #0b0b0b;
    border: 1px solid rgba(255,255,255,.14);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.event-teaser-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196,163,109,.68);
    background: #101010;
}

.event-teaser-card a {
    display: block;
    height: 100%;
}

.event-teaser-image {
    position: relative;
    height: 178px;
    overflow: hidden;
    background: #171717;
}

.event-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    filter: grayscale(.22) contrast(1.08);
    transition: transform .65s ease, opacity .25s ease;
}

.event-teaser-card:hover .event-teaser-image img {
    transform: scale(1.045);
    opacity: .96;
}

.event-teaser-image time {
    position: absolute;
    inset: 0 auto auto 0;
    width: 72px;
    min-height: 76px;
    display: grid;
    place-items: center;
    gap: 0;
    padding: 10px 8px;
    background: rgba(0,0,0,.62);
    border-right: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
    color: #fff;
    text-align: center;
}

.event-teaser-image time strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    line-height: .9;
    font-weight: 400;
}

.event-teaser-image time span {
    display: block;
    margin-top: 5px;
    color: var(--sand);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.event-teaser-body {
    min-height: 190px;
    padding: 24px 24px 28px;
}

.event-teaser-body h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    line-height: 1.08;
    font-weight: 400;
}

.event-teaser-body p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.72;
}

@media (prefers-reduced-motion: reduce) {
    .auto-scroll.is-animated .horizontal-track {
        animation: none;
    }
}


/* v6 - Stüdyo Ay detay, modal, harita ve görsel iyileştirmeleri */
.event-carousel-section .section-text,
.workshop-carousel-section .section-text {
    color: rgba(255,255,255,.82);
}

.discipline-strip + .event-carousel-section {
    padding-top: 112px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.about-section {
    grid-template-columns: 300px 1fr;
    gap: 62px;
    padding-top: 62px;
    padding-bottom: 62px;
}

.about-image {
    min-height: 310px;
}

.about-copy h2 {
    font-size: clamp(34px, 3.4vw, 48px);
}

.quote-section {
    min-height: 300px;
}

.quote-section blockquote {
    width: min(1280px, 94vw);
    white-space: nowrap;
    font-size: clamp(30px, 4.1vw, 66px);
}

.card-modal-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.card-modal-trigger .modern-card-content {
    display: block;
}

.item-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.item-modal.is-open {
    display: flex;
}

.item-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(8px);
}

.item-modal-panel {
    position: relative;
    z-index: 2;
    width: min(1040px, 94vw);
    max-height: min(760px, 92vh);
    overflow: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    background: var(--paper);
    color: #000;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 30px 90px rgba(0,0,0,.48);
}

.item-modal-close {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,.16);
    background: #fff;
    color: #000;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.item-modal-image {
    min-height: 520px;
    background: #111;
}

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

.item-modal-content {
    padding: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-modal-content h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 64px);
    line-height: .98;
    font-weight: 400;
}

.item-modal-content p {
    margin: 26px 0 0;
    color: #333;
    font-size: 17px;
    line-height: 1.78;
}

.item-modal-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.item-modal-actions .light-button {
    background: transparent;
    color: #000;
    border-color: rgba(0,0,0,.22);
}

.event-archive-section {
    padding-top: 72px;
}

.event-archive-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.event-archive-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.13);
    transition: transform .25s ease, box-shadow .25s ease;
}

.event-archive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,.12);
}

.event-archive-card a,
.archive-card-link {
    display: block;
    height: 100%;
    color: inherit;
}

.archive-card-link .modern-card-content {
    display: block;
}

.archive-card-link em,
.archive-link {
    display: inline-block;
    margin-top: 20px;
    color: #000;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .16em;
}

.event-archive-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #111;
}

.event-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.14) contrast(1.05);
    transition: transform .65s ease;
}

.event-archive-card:hover .event-archive-image img {
    transform: scale(1.045);
}

.event-archive-image time {
    position: absolute;
    inset: 0 auto auto 0;
    width: 78px;
    min-height: 82px;
    display: grid;
    place-items: center;
    background: rgba(0,0,0,.65);
    color: #fff;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.22);
    border-bottom: 1px solid rgba(255,255,255,.22);
}

.event-archive-image time strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: .9;
    font-weight: 400;
}

.event-archive-image time span {
    display: block;
    margin-top: 5px;
    color: var(--sand);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .14em;
}

.event-archive-content {
    padding: 30px;
}

.event-archive-content h3 {
    margin: 0 0 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 400;
}

.event-archive-content p {
    margin: 0;
    color: #444;
    line-height: 1.72;
}

.detail-hero {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: #000;
    color: #fff;
    padding-top: 102px;
}

.detail-hero.light-detail {
    background: var(--paper);
    color: #000;
}

.detail-hero-image {
    min-height: 620px;
    overflow: hidden;
}

.detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.18) contrast(1.06);
}

.detail-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px;
}

.detail-hero-content .breadcrumb {
    color: rgba(255,255,255,.72);
}

.light-detail .detail-hero-content .breadcrumb {
    color: rgba(0,0,0,.62);
}

.detail-hero-content h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 96px);
    line-height: .92;
    font-weight: 400;
}

.detail-hero-content p {
    margin: 28px 0 0;
    max-width: 620px;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.75;
}

.light-detail .detail-hero-content p {
    color: #444;
}

.detail-section {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 62px;
    align-items: start;
}

.detail-meta {
    position: sticky;
    top: 120px;
}

.detail-meta div strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 64px;
    line-height: .9;
    font-weight: 400;
}

.detail-meta div span,
.detail-meta p {
    display: block;
    margin-top: 10px;
    color: #333;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.detail-content h2 {
    margin: 0 0 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 64px);
    font-weight: 400;
}

.detail-content p {
    max-width: 880px;
    color: #333;
    font-size: 18px;
    line-height: 1.85;
}

.social-link {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-grid !important;
    place-items: center;
    width: 26px;
    height: 26px;
    padding: 0 !important;
    border: 1px solid currentColor !important;
    border-radius: 50%;
    font-size: 17px !important;
    line-height: 1 !important;
}

.map-section {
    background: var(--paper);
    color: #000;
    padding: 0 70px 92px;
}

.map-section .section-text {
    color: #333;
}

.map-frame {
    margin-top: 34px;
    height: 460px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.15);
    background: #111;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.horizontal-scroll {
    scroll-snap-type: x mandatory;
}

.event-teaser-card,
.slider-card {
    scroll-snap-align: start;
}


/* v7 - görsel/yerleşim iyileştirmeleri */
.hero-section {
    min-height: 92svh;
    padding-top: 92px;
    padding-bottom: 54px;
}

.sub-hero {
    min-height: 300px;
    padding-top: 96px;
    padding-bottom: 38px;
}

.about-section {
    grid-template-columns: 320px 1fr;
    gap: 58px;
    padding: 58px 64px;
}

.about-image,
.about-image img {
    min-height: 300px;
}

.paper-section,
.dark-section {
    padding-top: 76px;
    padding-bottom: 76px;
}

.section-grid {
    gap: 52px;
}

.image-frame,
.image-frame img {
    min-height: 330px;
}

.discipline-strip + .event-carousel-section {
    margin-top: 34px;
    border-top: 1px solid rgba(255,255,255,.14);
}

.event-carousel-section {
    padding-top: 72px;
}

.section-heading-row .section-text {
    color: rgba(255,255,255,.78);
}

.quote-section {
    min-height: 260px;
    padding: 54px 28px;
}

.quote-section blockquote {
    width: min(1320px, 94vw);
    max-width: 1320px;
    font-size: clamp(32px, 4.1vw, 68px);
    line-height: 1.08;
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
}

.detail-hero {
    min-height: 560px;
    padding-top: 84px;
}

.detail-hero-image {
    min-height: 470px;
}

.detail-hero-content {
    padding: 48px 58px;
}

.detail-hero-content h1 {
    font-size: clamp(46px, 5.1vw, 78px);
    line-height: .96;
}

.detail-hero-content p {
    margin-top: 22px;
    font-size: 17px;
}

.detail-section {
    padding-top: 66px;
    padding-bottom: 66px;
}

.event-archive-card,
.modern-card {
    overflow: hidden;
}

.event-archive-image {
    height: 230px;
}

.event-archive-content h3 {
    font-size: 34px;
}

.modern-card img {
    height: 210px;
}

.modern-card-content {
    padding: 26px;
}

.modern-card-content h3 {
    font-size: 28px;
}

/* Eski temsili görsel kırılma riskleri için yumuşak arka plan */
.modern-card img[src=""],
.event-teaser-image img[src=""] {
    background: #151515;
}


/* v8 - Stüdyo Ay denge, detay, gerçek görsel ve mobil iyileştirmeleri */
.hero-section {
    min-height: min(860px, 92svh);
    padding-top: 96px;
    padding-bottom: 54px;
}

.hero-content {
    padding-top: 16px;
}

.about-section {
    grid-template-columns: 285px 1fr;
    gap: 48px;
    padding: 48px 58px;
}

.about-copy h2 {
    font-size: clamp(31px, 3vw, 44px);
    margin: 16px 0;
}

.about-copy p {
    font-size: 14px;
    line-height: 1.7;
}

.about-copy a {
    margin-top: 14px;
    padding: 15px 24px;
}

.about-image {
    min-height: 260px;
    max-height: 430px;
}

.paper-section {
    padding: 72px 58px;
}

.dark-section {
    padding: 72px 58px;
}

.event-carousel-section {
    padding: 72px 58px 34px;
    margin-top: 18px;
}

.discipline-strip + .event-carousel-section {
    padding-top: 86px;
}

.workshop-carousel-section {
    padding-top: 64px;
}

.section-title {
    font-size: clamp(38px, 4.2vw, 64px);
}

.section-text {
    max-width: 760px;
}

.detail-hero {
    min-height: 560px;
    grid-template-columns: .95fr 1.05fr;
    padding-top: 82px;
}

.detail-hero-image {
    min-height: 470px;
    max-height: 610px;
}

.detail-hero-content {
    padding: 50px 56px;
}

.detail-hero-content h1 {
    font-size: clamp(44px, 5vw, 74px);
    line-height: .98;
    max-width: 740px;
}

.detail-hero-content p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.65;
}

.detail-section {
    grid-template-columns: 210px 1fr;
    gap: 44px;
    padding-top: 64px;
}

.detail-meta div strong {
    font-size: 52px;
}

.detail-content h2 {
    font-size: clamp(34px, 3.2vw, 52px);
}

.detail-content p {
    font-size: 16px;
    line-height: 1.75;
}

.quote-section {
    min-height: 230px;
    padding: 58px 30px;
}

.quote-section blockquote {
    width: min(1320px, 92vw);
    max-width: 1320px;
    white-space: normal;
    overflow-wrap: normal;
    text-wrap: balance;
    font-size: clamp(28px, 3.8vw, 58px);
    line-height: 1.08;
}

.gallery-grid {
    gap: 28px;
}

.gallery-item img {
    filter: grayscale(.1) contrast(1.04);
}

@media (max-width: 1040px) {
    .hero-section {
        min-height: 760px;
        padding-top: 88px;
        padding-bottom: 48px;
    }

    .hero-content {
        padding-top: 0;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 46px 24px;
    }

    .about-image {
        min-height: 240px;
        max-height: 330px;
    }

    .paper-section,
    .dark-section,
    .event-carousel-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .detail-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 82px;
    }

    .detail-hero-image {
        min-height: 260px;
        max-height: 360px;
    }

    .detail-hero-content {
        padding: 32px 24px 42px;
    }

    .detail-hero-content h1 {
        font-size: clamp(38px, 12vw, 62px);
    }

    .detail-section {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-top: 42px;
    }

    .detail-meta {
        position: static;
        display: grid;
        gap: 16px;
    }

    .quote-section {
        min-height: 210px;
        padding: 48px 18px;
    }

    .quote-section blockquote {
        width: min(94vw, 760px);
        font-size: clamp(26px, 8vw, 44px);
        line-height: 1.12;
    }
}

@media (max-width: 640px) {
    .hero-section {
        min-height: 690px;
        padding-top: 78px;
    }

    .moon-stage {
        bottom: 50px;
        width: min(76vw, 340px);
        height: min(76vw, 340px);
    }

    .section-title {
        font-size: clamp(34px, 11vw, 48px);
    }

    .detail-hero-content h1 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .event-teaser-card,
    .slider-card {
        min-width: min(82vw, 330px);
    }
}


/* v9 - Panel kontrollü hizmet/galeri düzeni */
.compact-sub-hero {
    min-height: 430px;
    padding-top: 118px;
    padding-bottom: 76px;
}

.compact-sub-hero .page-title {
    font-size: clamp(48px, 6vw, 96px);
}

.service-list-section {
    padding-top: clamp(56px, 7vw, 96px);
}

.service-dynamic-grid {
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.service-card .modern-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card .dark-button {
    margin-top: auto;
    width: fit-content;
}

.service-cta-section {
    margin-top: 0;
}

.gallery-modern-section {
    padding-top: clamp(54px, 7vw, 92px);
    padding-bottom: clamp(70px, 8vw, 110px);
}

.gallery-modern-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(0,0,0,.12);
    padding-bottom: 22px;
}

.gallery-modern-head span {
    font-size: 12px;
    letter-spacing: .18em;
    font-weight: 900;
    color: #000;
}

.gallery-modern-head p {
    margin: 0;
    max-width: 520px;
    color: #333;
    line-height: 1.7;
}

.gallery-showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.gallery-showcase-card {
    position: relative;
    grid-column: span 4;
    min-height: 360px;
    overflow: hidden;
    background: #0b0b0b;
    border: 1px solid rgba(0,0,0,.16);
}

.gallery-showcase-card.wide {
    grid-column: span 6;
}

.gallery-showcase-card.tall {
    min-height: 460px;
}

.gallery-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(.15) contrast(1.04);
    transition: transform .8s ease, filter .4s ease;
}

.gallery-showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.72));
}

.gallery-showcase-card:hover img {
    transform: scale(1.055);
    filter: grayscale(0) contrast(1.02);
}

.gallery-showcase-overlay {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
    color: #fff;
}

.gallery-showcase-overlay small {
    display: block;
    margin-bottom: 10px;
    color: #dfc18c;
    font-size: 11px;
    letter-spacing: .18em;
    font-weight: 900;
}

.gallery-showcase-overlay h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.05;
    font-weight: 400;
}

.gallery-showcase-overlay p {
    margin: 12px 0 0;
    max-width: 420px;
    color: rgba(255,255,255,.78);
    line-height: 1.65;
}

.service-detail-hero {
    min-height: 560px;
}

.service-detail-hero .detail-hero-image {
    min-height: 520px;
}

.service-detail-hero .detail-hero-content h1 {
    font-size: clamp(46px, 6vw, 96px);
}

@media (max-width: 980px) {
    .compact-sub-hero {
        min-height: auto;
        padding-top: 98px;
        padding-bottom: 56px;
    }

    .gallery-modern-head {
        align-items: start;
        flex-direction: column;
    }

    .gallery-showcase-card,
    .gallery-showcase-card.wide,
    .gallery-showcase-card.tall {
        grid-column: span 6;
        min-height: 320px;
    }

    .service-detail-hero {
        min-height: auto;
    }

    .service-detail-hero .detail-hero-image {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .gallery-showcase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-showcase-card,
    .gallery-showcase-card.wide,
    .gallery-showcase-card.tall {
        grid-column: auto;
        min-height: 300px;
    }

    .gallery-showcase-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .modern-card img {
        height: 205px;
    }

    .compact-sub-hero .page-title {
        font-size: clamp(40px, 12vw, 58px);
    }
}


/* v17 - alt sayfa hero konum düzeltmesi
   Not: URL rewrite geçici olarak devre dışı bırakıldı; siteyi önce stabil hale getirmek için .php bağlantılar korundu. */
.sub-hero {
    min-height: 340px !important;
    padding-top: 132px !important;
    padding-bottom: 54px !important;
    align-items: flex-start !important;
}

.sub-hero .hero-content {
    padding-top: 0 !important;
}

.sub-hero .breadcrumb {
    margin-bottom: 22px !important;
}

.sub-hero .eyebrow {
    margin-bottom: 22px !important;
}

.sub-hero .page-title {
    margin-top: 0 !important;
}

.compact-sub-hero {
    min-height: 320px !important;
}

/* v22 hero logo kilitleme
   Kullanıcının Chrome DevTools üzerinde onayladığı değerlere göre AY,
   üstteki küçük y harfinin kuyruğundan devam ediyormuş gibi konumlandırıldı. */
.hero-content h1 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: max-content;
    max-width: 100%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(102px, 10.8vw, 196px);
    font-weight: 400;
    line-height: .66;
    letter-spacing: -.025em;
    text-transform: none;
}

.hero-content h1 .hero-logo-top,
.hero-content h1 .hero-logo-ay {
    display: block;
    width: auto;
    text-align: left;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.hero-content h1 .hero-logo-top {
    letter-spacing: -.022em;
}

.hero-content h1 .hero-logo-ay {
    margin-top: 25px;
    margin-left: 125px;
    font-size: .72em;
    letter-spacing: .012em;
    transform: translateX(-0.03em);
}
