/* ==========================================================================
   Güral Porselen — ortak stil dosyası
   Tasarım dili anasayfadan devralınır: Inter, açık gri zemin, siyah vurgu.
   Marka kırmızısı (#d51920) yalnızca vurgu olarak kullanılır.
   ========================================================================== */

:root {
    --bg: #f5f5f5;
    --surface: #fff;
    --surface-2: #fafafa;
    --ink: #1a1a1a;
    --ink-soft: #444;
    --muted: #6b6b6b;
    --line: #e4e4e4;
    --accent: #d51920;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .12);
    --wrap: 1160px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--ink-soft);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 10px 18px;
    z-index: 200;
}

.skip-link:focus {
    left: 0;
}

/* --------------------------------------------------------- ÜST BAR */
.top-bar {
    background: #f0f0f0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 6px 24px;
    gap: 18px;
}

.top-bar .top-contact {
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    gap: 16px;
}

.top-bar .top-contact a {
    text-decoration: none;
}

.top-bar .top-contact a:hover {
    color: var(--accent);
}

.lang-switcher {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 2px;
    font-size: .75rem;
    font-weight: 500;
}

.lang-switcher a {
    padding: 4px 11px;
    border-radius: 16px;
    color: #888;
    text-decoration: none;
    transition: background .25s ease, color .25s ease;
}

.lang-switcher a.active {
    background: var(--ink);
    color: #fff;
}

.lang-switcher a:not(.active):hover {
    color: var(--ink);
}

/* --------------------------------------------------------- BAŞLIK / MENÜ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
}

.site-header .logo img {
    height: 32px;
    display: block;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform .3s ease, opacity .3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1px;
}

.main-nav a {
    display: block;
    padding: 8px 10px;
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.main-nav a:hover {
    background: #f2f2f2;
}

.main-nav .is-active > a {
    color: var(--accent);
}

.main-nav .has-sub {
    position: relative;
}

.main-nav .has-sub > a::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-left: 6px;
    vertical-align: 2px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.main-nav .sub {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 232px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: block;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.main-nav .has-sub:hover .sub,
.main-nav .has-sub:focus-within .sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub li {
    width: 100%;
}

.main-nav .sub a {
    padding: 9px 12px;
    font-weight: 400;
    color: var(--ink-soft);
}

.main-nav .sub a:hover {
    color: var(--ink);
}

.nav-cta {
    background: var(--ink);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 50px !important;
    margin-left: 6px;
}

.nav-cta:hover {
    background: #333 !important;
}

/* --------------------------------------------------------- SAYFA BAŞLIĞI */
main {
    flex: 1;
}

.page-hero {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .38;
}

.page-hero .wrap {
    position: relative;
    padding-top: 74px;
    padding-bottom: 74px;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.page-hero .lede {
    margin-top: 10px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .78);
    max-width: 640px;
}

.breadcrumb {
    background: #ececec;
    border-bottom: 1px solid var(--line);
    font-size: .8rem;
    color: var(--muted);
}

.breadcrumb .wrap {
    padding-top: 12px;
    padding-bottom: 12px;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span[aria-current] {
    color: var(--ink);
}

/* --------------------------------------------------------- İÇERİK DÜZENİ */
.page-body {
    padding: 60px 0 80px;
}

.layout {
    display: grid;
    grid-template-columns: 232px 1fr;
    gap: 48px;
    align-items: start;
}

/* Izgara ögelerinin varsayilan min-width:auto degeri, bolunemeyen uzun
   metinlerde (ör. "FOREV DAY.TÜK.MAL.ZÜCC.SAN.TİC.LTD.ŞTİ.") kolonu
   viewport'un disina tasirir. */
.layout > * {
    min-width: 0;
}

.side-nav {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    position: sticky;
    top: 108px;
}

.side-nav .side-title {
    display: block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.side-nav ul {
    list-style: none;
}

.side-nav a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: .88rem;
    color: var(--ink-soft);
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.side-nav a:hover {
    background: var(--surface-2);
    color: var(--ink);
}

.side-nav a[aria-current="page"] {
    background: var(--ink);
    color: #fff;
    font-weight: 500;
}

/* --------------------------------------------------------- METİN */
.prose h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
    margin-bottom: 18px;
}

.prose h3,
.prose b.s24 {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 26px 0 8px;
}

.prose p {
    margin-bottom: 18px;
    color: var(--ink-soft);
}

.prose ul {
    margin: 0 0 20px;
    padding-left: 0;
    list-style: none;
}

.prose ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 9px;
}

.prose ul li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: .68em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.prose {
    overflow-wrap: break-word;
}

.prose a {
    color: var(--accent);
    /* KVKK metnindeki uzun adresler dar ekranda tasmasin. */
    overflow-wrap: anywhere;
}

.prose img {
    border-radius: var(--radius);
    display: block;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 34px;
}

/* Metin sayfaları tek çerçeve kullanır: üstte geniş bant görsel, altında metin.
   Dar yan kolona sıkışan dikey görsellerin yerini alır. */
.content-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.content-card .banner {
    width: 100%;
    aspect-ratio: 16 / 5;
    object-fit: cover;
    display: block;
}

.content-card .prose {
    padding: 38px 44px;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 24px;
}

/* --------------------------------------------------------- HAKKIMIZDA */
/* Hakkımızda: dar kolonlar yerine tam genişlik, dönüşümlü görsel/metin blokları.
   Uzun paragraflar rahat okunacak satır uzunluğuna kavuşur. */
.about-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 52px;
}

.about-feature.reverse {
    direction: rtl;
}

.about-feature.reverse > * {
    direction: ltr;
}

.about-figure {
    margin: 0;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.about-figure figcaption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 48px 24px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .75));
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -.01em;
}

.about-band {
    margin-top: 8px;
}

.about-band img {
    aspect-ratio: 21 / 9;
}

.about-band figcaption {
    font-size: 1.3rem;
    padding: 64px 34px 28px;
}

/* Metinden alınan künye rakamları */
.stats {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 52px;
}

.stats li {
    background: #fff;
    padding: 28px 20px;
    text-align: center;
}

.stats b {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    line-height: 1.2;
}

.stats b.long {
    font-size: 1.15rem;
    padding-top: .3em;
}

.stats span {
    display: block;
    margin-top: 6px;
    font-size: .8rem;
    color: var(--muted);
}

/* --------------------------------------------------------- TARİHÇE */
.timeline {
    list-style: none;
    position: relative;
    margin-left: 8px;
    padding-left: 34px;
    border-left: 2px solid var(--line);
}

.timeline li {
    position: relative;
    padding-bottom: 34px;
}

.timeline li:last-child {
    padding-bottom: 0;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -43px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
}

.timeline .year {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.timeline p {
    margin: 4px 0 0;
    color: var(--ink-soft);
}

/* --------------------------------------------------------- AKORDİYON (SSS) */
.accordion details {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 52px 18px 22px;
    font-weight: 600;
    color: var(--ink);
    position: relative;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 26px;
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform .25s ease;
}

.accordion details[open] summary::after {
    transform: rotate(-135deg);
}

.accordion .acc-body {
    padding: 0 22px 22px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.accordion .acc-body p {
    margin-bottom: 14px;
}

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

/* --------------------------------------------------------- KART IZGARALARI */
.grid {
    display: grid;
    gap: 24px;
}

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

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

.info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card > img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.info-card .body {
    padding: 24px;
    flex: 1;
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.info-card p {
    font-size: .92rem;
    margin-bottom: 10px;
}

.info-card .meta {
    font-size: .88rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-card .meta a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
}

.info-card .meta a:hover {
    color: var(--accent);
}

.info-card .label {
    color: var(--muted);
    font-weight: 400;
    margin-right: 4px;
}

/* Bölge müdürlükleri: her satırda tek kart, görsel solda.
   Adres + telefon + e-posta yan yana sıkışmasın diye ızgara yerine yatay düzen. */
.office-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: stretch;
}

.office-card > img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    display: block;
}

.office-card .body {
    padding: 26px 30px;
}

.office-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.office-card p {
    font-size: .92rem;
    color: var(--muted);
    margin-bottom: 12px;
}

.office-card .meta {
    font-size: .9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 28px;
}

.office-card .meta a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
}

.office-card .meta a:hover {
    color: var(--accent);
}

.office-card .label {
    color: var(--muted);
    font-weight: 400;
    margin-right: 4px;
}

.link-card {
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------- İLETİŞİM */
.contact-cta {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius);
    padding: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.contact-cta h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.contact-cta p {
    color: rgba(255, 255, 255, .72);
    font-size: .92rem;
    max-width: 520px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease;
    white-space: nowrap;
}

.btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--ink);
}

.btn-light:hover {
    background: #eee;
}

.map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    line-height: 0;
}

.map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

/* --------------------------------------------------------- BAYİLER */
.dealer-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
    align-items: center;
}

.dealer-tools select,
.dealer-tools input {
    font-family: inherit;
    font-size: .92rem;
    padding: 12px 16px;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: #fff;
    color: var(--ink);
    min-width: 220px;
}

.dealer-tools input {
    flex: 1;
    min-width: 240px;
}

.dealer-tools select:focus,
.dealer-tools input:focus {
    outline: 2px solid var(--ink);
    outline-offset: 1px;
}

.dealer-count {
    font-size: .88rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.dealer-city {
    margin-bottom: 34px;
}

.dealer-city > h3 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 18px;
}

.dealer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.dealer {
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 20px;
}

.dealer h4 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 7px;
    /* Ticari unvanlar noktalarla birlesik yazildigi icin normal satir sonu bulunamaz. */
    overflow-wrap: anywhere;
}

.dealer address {
    font-style: normal;
    font-size: .86rem;
    color: var(--muted);
    margin-bottom: 9px;
    overflow-wrap: anywhere;
}

.dealer .tel {
    display: block;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
}

.dealer .tel:hover {
    color: var(--accent);
}

.empty-state {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 44px;
    text-align: center;
    color: var(--muted);
}

/* --------------------------------------------------------- MEDYA */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
}

.news-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.news-card .body {
    padding: 22px;
}

.news-card time {
    font-size: .78rem;
    color: var(--muted);
    display: block;
    margin-bottom: 7px;
}

.news-card h3 {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
}

.news-meta {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 22px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 34px;
}

.gallery a {
    display: block;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery a:hover img {
    transform: scale(1.05);
}

.media-card {
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: #fff;
}

.media-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.media-card:hover img {
    transform: scale(1.04);
}

.media-card .cap {
    position: absolute;
    inset: auto 0 0 0;
    padding: 40px 22px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .78));
    font-weight: 600;
}

.media-card .play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-card .play span {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, .35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-card .play span::after {
    content: "";
    border-left: 15px solid #fff;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}

.back-link {
    display: inline-block;
    margin-bottom: 22px;
    font-size: .88rem;
    color: var(--muted);
    text-decoration: none;
}

.back-link:hover {
    color: var(--accent);
}

/* --------------------------------------------------------- ALT BİLGİ */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .62);
    font-size: .875rem;
    margin-top: auto;
}

.site-footer .cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 54px 0 40px;
}

.site-footer h4 {
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.site-footer ul {
    list-style: none;
}

.site-footer li {
    margin-bottom: 9px;
}

.site-footer a {
    text-decoration: none;
    transition: color .2s ease;
}

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

.site-footer address {
    font-style: normal;
    line-height: 1.8;
}

.site-footer .footer-logo {
    height: 32px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease;
}

.social a:hover {
    background: var(--accent);
}

.social svg {
    width: 17px;
    height: 17px;
    fill: #fff;
}

.site-footer .legal {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    font-size: .8rem;
}

.site-footer .legal strong {
    color: #fff;
    font-weight: 600;
}

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

.update-banner {
    text-align: center;
    margin-bottom: 54px;
}

.update-banner h1 {
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -.02em;
}

.update-banner p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto;
}

.dot-pulse {
    display: inline-flex;
    gap: 6px;
    margin-top: 20px;
}

.dot-pulse span {
    width: 10px;
    height: 10px;
    background: var(--ink);
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite;
}

.dot-pulse span:nth-child(2) {
    animation-delay: .2s;
}

.dot-pulse span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes pulse {
    0%, 80%, 100% {
        opacity: .2;
        transform: scale(.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .dot-pulse span {
        animation: none;
        opacity: .5;
    }

    * {
        transition-duration: .01ms !important;
    }
}

.home-link .body h3 {
    margin-bottom: 4px;
}

.home-link .body p {
    color: var(--muted);
    margin: 0;
}

.catalog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.catalog-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.catalog-card .card-label {
    position: absolute;
    inset: auto 0 0 0;
    padding: 30px 24px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .7));
    z-index: 1;
}

.catalog-card .card-label h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.catalog-card .card-label span {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
}

.catalog-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 2;
}

.catalog-card:hover .overlay,
.catalog-card:focus-within .overlay {
    opacity: 1;
}

.catalog-card:hover img {
    transform: scale(1.05);
}

.catalog-card .overlay a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
    transition: transform .2s ease;
}

.catalog-card .overlay a:hover {
    transform: translateY(-3px);
}

.catalog-card .icon-circle {
    width: 56px;
    height: 56px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catalog-card .icon-circle svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-btn-wrap {
    text-align: center;
    margin-top: 44px;
}

/* --------------------------------------------------------- DUYARLI */
/* Menü, hamburger eşiğine gelmeden önce kademeli olarak daralır. */
@media (max-width: 1180px) {
    .main-nav a {
        padding: 8px 8px;
        font-size: .76rem;
    }

    .nav-cta {
        padding: 8px 14px !important;
    }

    .site-header .wrap {
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .side-nav {
        position: static;
    }

    .side-nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .content-card .prose {
        padding: 30px 28px;
    }

    /* Üçlü ızgara dar ekranda hiçbir zaman üçlü kalmaz. */
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer .cols {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .main-nav.open {
        max-height: 82vh;
        overflow-y: auto;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        gap: 0;
    }

    .main-nav > ul > li {
        border-bottom: 1px solid var(--line);
    }

    .main-nav > ul > li:last-child {
        border-bottom: 0;
    }

    .main-nav a {
        padding: 13px 12px;
        font-size: .95rem;
    }

    .main-nav .has-sub > a::after {
        float: right;
        margin-top: 8px;
    }

    .main-nav .sub {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 8px 14px;
        min-width: 0;
    }

    .main-nav .sub a {
        padding: 9px 12px;
        font-size: .88rem;
    }

    .nav-cta {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 900px) {
    .about-feature,
    .about-feature.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
        direction: ltr;
    }

    /* Görsel dar ekranda her zaman metnin üstünde kalır. */
    .about-feature.reverse .about-figure {
        order: -1;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 40px;
    }
}

@media (max-width: 860px) {
    /* Bölge kartı: görsel üste alınır, metin altta tam genişlik. */
    .office-card {
        grid-template-columns: 1fr;
    }

    .office-card > img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .office-card .body {
        padding: 22px;
    }
}

@media (max-width: 720px) {
    .grid-2,
    .grid-3,
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .about-band img {
        aspect-ratio: 16 / 9;
    }

    .stats li {
        padding: 20px 12px;
    }

    .stats b {
        font-size: 1.25rem;
    }

    .stats b.long {
        font-size: .98rem;
    }

    .about-band figcaption {
        font-size: 1.05rem;
        padding: 48px 22px 20px;
    }

    .page-hero .wrap {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .page-body {
        padding: 36px 0 56px;
    }

    .card {
        padding: 24px;
    }

    .contact-cta {
        padding: 26px;
    }

    .top-bar .top-contact {
        display: none;
    }

    .site-footer .cols {
        grid-template-columns: 1fr;
        padding: 40px 0 28px;
    }

    .dealer-tools select,
    .dealer-tools input {
        min-width: 0;
        width: 100%;
    }

    .map iframe {
        height: 320px;
    }

    .news-grid,
    .dealer-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

    .side-nav ul {
        flex-direction: column;
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 14px;
    }

    .card {
        padding: 20px;
        border-radius: var(--radius-sm);
    }

    .content-card .prose {
        padding: 22px 20px;
    }

    .content-card .banner {
        aspect-ratio: 16 / 9;
    }

    .page-hero .wrap {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .prose h2,
    .section-title {
        font-size: 1.2rem;
    }

    .office-card .meta,
    .info-card .meta {
        font-size: .85rem;
        word-break: break-word;
    }

    .breadcrumb {
        font-size: .74rem;
    }

    .timeline {
        margin-left: 4px;
        padding-left: 22px;
    }

    .timeline li::before {
        left: -31px;
    }

    .contact-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

@media print {
    .top-bar,
    .site-header,
    .site-footer,
    .dealer-tools {
        display: none;
    }
}
