/* ==========================================================================
   Diamonds Weddings — tasarım sistemi
   Palet: fildişi / kum / zeytin / altın / kömür  (KONSEPT.md §7)
   Mobil öncelikli: tüm bileşenler 375px'ten başlar.
   ========================================================================== */

:root {
    /* Renk */
    --ivory:        #FAF7F2;
    --ivory-deep:   #F3EDE4;
    --sand:         #E8DDD0;
    --sand-line:    #DCCEBC;
    --olive:        #2F4038;
    --olive-deep:   #22302A;
    --olive-soft:   #4A5F55;
    --gold:         #C9A961;
    --gold-deep:    #A8863F;
    --charcoal:     #1A1917;
    /* Gövde metni ve etiketlerde okunabilirlik için koyulaştırıldı:
       fildişi zemin üzerinde ~7.5:1 kontrast verir. */
    --muted:        #55524B;
    --white:        #FFFFFF;

    /* Anlam */
    --bg:           var(--ivory);
    --surface:      var(--white);
    --text:         var(--charcoal);
    --text-soft:    var(--muted);
    --line:         var(--sand-line);
    --accent:       var(--gold);

    /* Tipografi
       Başlıklarda Newsreader: Cormorant Garamond'a göre belirgin biçimde
       daha kalın gövdeli ve küçük boyutlarda da okunabilir.
       Gövdede Inter: yüksek x-yüksekliği, ekranda net. */
    --font-display: "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

    --step--1: clamp(0.88rem, 0.85rem + 0.14vw, 0.95rem);
    --step-0:  clamp(1.06rem, 1.02rem + 0.2vw, 1.14rem);
    --step-1:  clamp(1.22rem, 1.14rem + 0.4vw, 1.4rem);
    --step-2:  clamp(1.5rem, 1.32rem + 0.85vw, 1.95rem);
    --step-3:  clamp(1.9rem, 1.55rem + 1.75vw, 2.8rem);
    --step-4:  clamp(2.35rem, 1.65rem + 3.5vw, 4.2rem);
    --step-5:  clamp(2.8rem, 1.75rem + 5.3vw, 5.3rem);

    /* Ölçü */
    --measure:   66ch;
    --wrap:      76rem;
    --wrap-slim: 46rem;
    --gutter:    1.25rem;
    --radius:    2px;

    --shadow-sm: 0 1px 2px rgba(28, 27, 25, 0.05);
    --shadow-md: 0 8px 30px rgba(28, 27, 25, 0.08);
    --shadow-lg: 0 20px 60px rgba(28, 27, 25, 0.12);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 48rem) {
    :root { --gutter: 2rem; }
}

/* --------------------------------------------------------------------------
   Sıfırlama
   -------------------------------------------------------------------------- */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--step-0);
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: inherit; }

:focus-visible {
    outline: 2px solid var(--olive);
    outline-offset: 3px;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    background: var(--olive);
    color: var(--ivory);
    padding: 0.75rem 1.25rem;
}
.skip-link:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   Tipografi
   -------------------------------------------------------------------------- */

.display {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-wrap: balance;
}

.t-hero   { font-size: var(--step-5); }
.t-xl     { font-size: var(--step-4); }
.t-lg     { font-size: var(--step-3); }
.t-md     { font-size: var(--step-2); }
.t-sm     { font-size: var(--step-1); }

.eyebrow {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deep);
}

.lede {
    font-size: var(--step-1);
    line-height: 1.6;
    color: var(--text-soft);
    max-width: 44ch;
}

.muted { color: var(--text-soft); }
.measure { max-width: var(--measure); }

.prose > * + * { margin-top: 1.15em; }
.prose p { max-width: var(--measure); }
.prose a { color: var(--olive); text-underline-offset: 3px; }

/* Uzun okuma: rehber yazılarında punto ve satır aralığı biraz daha açık */
.article-body {
    font-size: clamp(1.1rem, 1.05rem + 0.25vw, 1.22rem);
    line-height: 1.78;
}
.article-body > * + * { margin-top: 1.3em; }
.article-body p:first-of-type::first-letter {
    font-family: var(--font-display);
    font-size: 3.4em;
    line-height: 0.82;
    float: left;
    padding: 0.06em 0.12em 0 0;
    color: var(--olive);
}

/* --------------------------------------------------------------------------
   Yerleşim
   -------------------------------------------------------------------------- */

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: var(--gutter);
}
.wrap--slim { max-width: var(--wrap-slim); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sand { background: var(--sand); }
.section--ivory-deep { background: var(--ivory-deep); }
.section--olive {
    background: var(--olive);
    color: var(--ivory);
}
.section--olive .eyebrow { color: var(--gold); }
.section--olive .muted,
.section--olive .lede { color: rgba(250, 247, 242, 0.72); }

.section-head {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head--split { gap: 1.25rem; }

@media (min-width: 52rem) {
    .section-head--split {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
    .section-head--split > div:first-child { max-width: 34rem; }
}

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 40rem) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62rem) {
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
    .grid { gap: 2rem; }
}

.stack { display: flex; flex-direction: column; gap: 1rem; }
.row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* --------------------------------------------------------------------------
   Butonlar
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.75rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--olive);
    color: var(--ivory);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--olive-deep); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ghost {
    background: transparent;
    border-color: var(--olive);
    color: var(--olive);
}
.btn--ghost:hover { background: var(--olive); color: var(--ivory); }

.btn--gold { background: var(--gold); color: var(--charcoal); }
.btn--gold:hover { background: var(--gold-deep); color: var(--ivory); }

.btn--light {
    background: var(--ivory);
    color: var(--olive);
}
.btn--light:hover { background: var(--white); }

.btn--outline-light {
    background: transparent;
    border-color: rgba(250, 247, 242, 0.4);
    color: var(--ivory);
}
.btn--outline-light:hover { background: rgba(250, 247, 242, 0.12); }

.btn--sm { padding: 0.65rem 1.15rem; font-size: 0.74rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--olive);
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.35rem;
    transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.8rem; border-color: var(--olive); }
.section--olive .link-arrow {
    color: var(--gold);
    border-color: rgba(201, 169, 97, 0.35);
}

/* --------------------------------------------------------------------------
   Başlık ve gezinme
   -------------------------------------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-stuck { border-bottom-color: var(--line); }

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4.5rem;
}

.brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}
.brand__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.02em;
}
.brand__sub {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: 0.3rem;
}

.nav { display: none; }

@media (min-width: 68rem) {
    .nav {
        display: flex;
        align-items: center;
        gap: 1.4rem;
    }
    .nav a {
        font-size: 0.82rem;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        text-decoration: none;
        white-space: nowrap;
        padding-block: 0.4rem;
        border-bottom: 1px solid transparent;
        transition: border-color 0.25s var(--ease);
    }
    .nav a:hover, .nav a[aria-current="page"] { border-bottom-color: var(--gold); }
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn { display: none; }

@media (min-width: 68rem) {
    .header-actions .btn { display: inline-flex; }
}

.lang-switch { display: flex; gap: 0.4rem; align-items: center; }
.lang-switch a {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-soft);
    padding: 0.3rem 0.15rem;
}
.lang-switch a[aria-current="true"] { color: var(--text); border-bottom: 1px solid var(--gold); }
.lang-switch span { color: var(--line); font-size: 0.7rem; }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0 0.6rem;
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 1px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 68rem) { .nav-toggle { display: none; } }

.drawer {
    position: fixed;
    inset: 4.5rem 0 0;
    z-index: 99;
    background: var(--ivory);
    padding: 2rem var(--gutter) 6rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    visibility: hidden;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }

.drawer a {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    text-decoration: none;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 2rem; }

@media (min-width: 68rem) { .drawer { display: none; } }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
    position: relative;
    min-height: min(88vh, 46rem);
    display: flex;
    align-items: flex-end;
    background: var(--olive);
    color: var(--ivory);
    overflow: hidden;
}
/* Fotoğraf tam opaklıkta duruyor — saydamlaştırılırsa altındaki zeytin zemin
   karışıp renkleri sarıya çeviriyor. Okunabilirliği kararma katmanı sağlıyor. */
.hero__media {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 30, 26, 0.55) 0%, rgba(20, 30, 26, 0.3) 42%, rgba(20, 30, 26, 0.92) 100%),
        linear-gradient(90deg, rgba(20, 30, 26, 0.6) 0%, rgba(20, 30, 26, 0.15) 62%, transparent 100%);
}
.hero__inner {
    position: relative;
    padding-block: clamp(3rem, 10vw, 6rem);
    width: 100%;
}
.hero__title {
    max-width: 18ch;
    margin-block: 1.25rem 1.5rem;
    color: var(--ivory);
}
.hero__sub {
    max-width: 46ch;
    color: rgba(250, 247, 242, 0.82);
    font-size: var(--step-1);
    line-height: 1.55;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.25rem;
}
.hero .eyebrow { color: var(--gold); }

/* Fotoğraf kredisi — okumayı bölmeden, görselin köşesinde */
.hero__credit {
    position: absolute;
    right: 0.9rem;
    bottom: 0.7rem;
    z-index: 2;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    color: rgba(250, 247, 242, 0.55);
}

.hero--page {
    min-height: auto;
    align-items: center;
    padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero--page .hero__inner { padding-block: 0; }

/* Sayfa banner'ları kısa olduğu için metin görselin ortasına denk geliyor.
   Açık renkli fotoğraflarda da okunabilirliği garantilemek için katman
   ana sayfa hero'suna göre daha koyu. */
.hero--page .hero__scrim {
    background:
        linear-gradient(180deg, rgba(20, 30, 26, 0.68) 0%, rgba(20, 30, 26, 0.52) 50%, rgba(20, 30, 26, 0.86) 100%),
        linear-gradient(90deg, rgba(20, 30, 26, 0.72) 0%, rgba(20, 30, 26, 0.28) 62%, rgba(20, 30, 26, 0.05) 100%);
}

/* Güven şeridi */
.trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
}
.trust__item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
    text-align: center;
}
.trust__item:nth-child(2n) { border-right: 0; }
.trust__value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    line-height: 1;
    color: var(--olive);
}
.trust__label {
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: 0.5rem;
}

@media (min-width: 52rem) {
    .trust { grid-template-columns: repeat(4, 1fr); }
    .trust__item:nth-child(2n) { border-right: 1px solid var(--line); }
    .trust__item:last-child { border-right: 0; }
}

/* --------------------------------------------------------------------------
   Kartlar
   -------------------------------------------------------------------------- */

.card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand);
}
.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: rgba(250, 247, 242, 0.94);
    color: var(--olive);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 0.7rem;
}

.card__body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.35rem 1.35rem 1.5rem;
    flex: 1;
}
.card__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    line-height: 1.15;
}
.card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-soft);
}
.card__meta {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.card__price { color: var(--olive); font-weight: 500; }

/* Geniş bölge kartı — ana sayfada ilk sırada */
.card--wide { grid-column: 1 / -1; }
@media (min-width: 62rem) {
    .card--wide { flex-direction: row; }
    .card--wide .card__media { flex: 0 0 55%; aspect-ratio: 16 / 10; }
    .card--wide .card__body { justify-content: center; padding: 2.5rem; gap: 0.9rem; }
    .card--wide .card__title { font-size: 2.4rem; }
    .card--wide .card__text { font-size: 1rem; max-width: 40ch; }
}

/* Paket kartı */
.package {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 1.75rem 1.5rem 2rem;
    position: relative;
}
.package--featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.package__flag {
    position: absolute;
    top: -0.7rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
}
.package__name { font-family: var(--font-display); font-size: 1.9rem; line-height: 1.1; }
.package__guests {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
/* Fiyat yayınlanmıyor — bu blok artık teklif vaadini taşıyor. */
.package__price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.3;
    color: var(--olive);
    padding-top: 0.85rem;
    border-top: 1px solid var(--line);
}
.package__price small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    color: var(--text-soft);
    margin-top: 0.3rem;
}
.package .btn { margin-top: auto; }

/* Dahil / hariç listesi */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
    display: grid;
    grid-template-columns: 1.4rem 1fr;
    gap: 0.6rem;
    font-size: 1rem;
    line-height: 1.6;
}
.check-list li::before {
    content: "✓";
    color: var(--olive);
    font-size: 0.85rem;
    line-height: 1.6;
}
.check-list--out li { color: var(--text-soft); }
.check-list--out li::before { content: "—"; color: var(--line); }

/* Referans */
.quote-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: 2rem 1.75rem;
}
.quote-card blockquote {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.45;
}
.quote-card figcaption {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-top: auto;
}
.stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.8rem; }

/* Hizmet satırı */
.service-row {
    display: grid;
    gap: 0.4rem 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}
@media (min-width: 48rem) {
    .service-row { grid-template-columns: 14rem 1fr auto; align-items: baseline; }
}
.service-row__name { font-family: var(--font-display); font-size: 1.35rem; }
.service-row__text { color: var(--text-soft); font-size: 1rem; max-width: 52ch; }
.service-row__price { color: var(--olive); font-size: 0.85rem; white-space: nowrap; }

/* --------------------------------------------------------------------------
   Süreç listesi — numaralandırma gerçek bir sıra taşıdığı için var
   -------------------------------------------------------------------------- */

.steps-list {
    list-style: none;
    counter-reset: process;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 44rem) { .steps-list { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3rem; } }
@media (min-width: 68rem) { .steps-list { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; } }

.steps-list li {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(201, 169, 97, 0.35);
}
.steps-list li::before {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
}
.steps-list p {
    color: rgba(250, 247, 242, 0.78);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Evrak rehberi
   -------------------------------------------------------------------------- */

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: 1rem;
}
.country-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--line);
    text-decoration: none;
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.country-card:hover { border-color: var(--olive); transform: translateY(-2px); }
.country-card__flag { font-size: 1.6rem; line-height: 1; }
.country-card__name { font-weight: 500; }
.country-card__meta { font-size: 0.74rem; color: var(--text-soft); }

.doc-list { list-style: none; counter-reset: doc; display: flex; flex-direction: column; }
.doc-list li {
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 1rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
}
.doc-list li::before {
    counter-increment: doc;
    content: counter(doc, decimal-leading-zero);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--gold-deep);
    padding-top: 0.35rem;
}
.doc-list__label { font-weight: 500; }
.doc-list__note { font-size: 0.98rem; color: var(--text-soft); margin-top: 0.2rem; }

.fact-list { list-style: none; display: flex; flex-direction: column; }
.fact-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
}
.fact-list dt, .fact-list__key { color: var(--text-soft); }
.fact-list__value { text-align: right; font-weight: 500; }

.notice {
    border-left: 2px solid var(--gold);
    background: var(--ivory-deep);
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}
.notice--olive {
    background: var(--olive);
    color: var(--ivory);
    border-left-color: var(--gold);
}

/* --------------------------------------------------------------------------
   Teklif sihirbazı
   -------------------------------------------------------------------------- */

.wizard { display: grid; gap: 2.5rem; }
@media (min-width: 62rem) {
    .wizard { grid-template-columns: 1fr 20rem; gap: 3.5rem; align-items: start; }
}

.wizard__progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.wizard__track { flex: 1; height: 2px; background: var(--line); }
.wizard__fill { height: 100%; background: var(--olive); transition: width 0.4s var(--ease); }
.wizard__count {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
    white-space: nowrap;
}

/* JavaScript kapalıysa tüm adımlar açık kalır ve form tek sayfa olarak çalışır.
   .js-ready sınıfını quote.js ekler. */
.step { display: block; }
.step + .step { margin-top: 3rem; }
.js-ready .wizard__progress { display: flex; }
.wizard__progress { display: none; }
.js-ready .step { display: none; margin-top: 0; }
.js-ready .step.is-active { display: block; animation: step-in 0.4s var(--ease); }
.step__actions [data-next],
.step__actions [data-back] { display: none; }
.js-ready .step__actions [data-next],
.js-ready .step__actions [data-back] { display: inline-flex; }

@keyframes step-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: none; }
}

.step__title { font-family: var(--font-display); font-size: var(--step-3); line-height: 1.1; }
.step__help { color: var(--text-soft); margin-top: 0.75rem; max-width: 44ch; }

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}
.option-grid--wide { grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr)); }

.option {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    min-height: 5.5rem;
    padding: 1.15rem 1.15rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.option:hover { border-color: var(--olive-soft); transform: translateY(-2px); }
.option.is-selected {
    border-color: var(--olive);
    background: var(--olive);
    color: var(--ivory);
}
.option.is-selected .option__note { color: rgba(250, 247, 242, 0.7); }
.option__label { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.15; }
.option__note { font-size: 0.85rem; letter-spacing: 0.01em; color: var(--text-soft); }

.option--tall { min-height: 7rem; }
.option--plain { min-height: 4rem; justify-content: center; align-items: center; text-align: center; }

.step__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.step-back {
    background: none;
    border: 0;
    padding: 0.5rem 0;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    cursor: pointer;
}
.step-back:hover { color: var(--text); }

/* Tahmini fiyat kutusu */
.estimate {
    position: sticky;
    top: 6rem;
    background: var(--olive);
    color: var(--ivory);
    padding: 1.75rem 1.5rem;
}
.estimate__label {
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.estimate__note {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(250, 247, 242, 0.78);
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(250, 247, 242, 0.15);
}
.estimate__summary {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.25rem;
    font-size: 0.92rem;
}
.estimate__summary:empty { margin-top: 0; }
.estimate__summary li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(250, 247, 242, 0.75);
}
.estimate__summary b { font-weight: 500; color: var(--ivory); text-align: right; }

/* --------------------------------------------------------------------------
   Formlar
   -------------------------------------------------------------------------- */

.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-soft);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--olive); outline-offset: 1px; }
.field textarea { min-height: 6.5rem; resize: vertical; }
.field--half { flex: 1 1 14rem; }

.field-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.consent {
    display: grid;
    grid-template-columns: 1.25rem 1fr;
    gap: 0.75rem;
    align-items: start;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-soft);
}
.consent input { margin-top: 0.25rem; accent-color: var(--olive); }
.consent a { color: var(--olive); }

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    border-left: 2px solid #A6402F;
    background: #FBEEEA;
    color: #7A2E20;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.alert ul { list-style: none; margin-top: 0.4rem; display: flex; flex-direction: column; gap: 0.25rem; }

/* --------------------------------------------------------------------------
   Diğer bileşenler
   -------------------------------------------------------------------------- */

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--text-soft);
    padding-block: 1.25rem;
}
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }

.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.9rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
}
.pill:hover { border-color: var(--olive); color: var(--olive); }
.pill.is-active { background: var(--olive); border-color: var(--olive); color: var(--ivory); }

.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.35rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.3;
    list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
    content: "+";
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--gold-deep);
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
}
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion__body {
    padding-bottom: 1.5rem;
    max-width: var(--measure);
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.72;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    gap: 0.75rem;
}
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery figcaption {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    color: var(--text-soft);
    margin-top: 0.5rem;
}
.gallery figure:first-child { grid-column: span 2; }
@media (max-width: 40rem) { .gallery figure:first-child { grid-column: span 1; } }

/* --------------------------------------------------------------------------
   Alt bilgi
   -------------------------------------------------------------------------- */

.site-footer {
    background: var(--olive-deep);
    color: rgba(250, 247, 242, 0.86);
    padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
    font-size: 0.9rem;
}
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--gold); }

.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 44rem) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .footer-grid { grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; } }

.footer-brand__name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--ivory);
}
.footer-brand p { max-width: 32ch; margin-top: 0.85rem; line-height: 1.6; }

.footer-col h3 {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 2rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(250, 247, 242, 0.12);
    font-size: 0.76rem;
    color: rgba(250, 247, 242, 0.55);
}

/* --------------------------------------------------------------------------
   WhatsApp — masaüstünde yüzen buton, mobilde alt bar
   -------------------------------------------------------------------------- */

.wa-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: none;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.35rem;
    background: #1F7A5C;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-2px); }

@media (min-width: 48rem) { .wa-float { display: inline-flex; } }

.mobile-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 95;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ivory);
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(28, 27, 25, 0.07);
}
.mobile-bar a {
    padding: 1rem 0.5rem;
    text-align: center;
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mobile-bar a:first-child { background: var(--olive); color: var(--ivory); }
.mobile-bar a:last-child { color: #1F7A5C; }

@media (min-width: 48rem) { .mobile-bar { display: none; } }

body { padding-bottom: 3.5rem; }
@media (min-width: 48rem) { body { padding-bottom: 0; } }

/* --------------------------------------------------------------------------
   Hata sayfası
   -------------------------------------------------------------------------- */

.error-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
    padding-block: 5rem;
}
.error-page__code {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 9rem);
    line-height: 1;
    color: var(--sand-line);
}

/* --------------------------------------------------------------------------
   Yapılandırılmış gövde metni
   rich_text() başlık, liste, alıntı ve iç bağlantı üretiyor — .prose bunların
   hepsini taşımak zorunda.
   -------------------------------------------------------------------------- */

.prose h2,
.prose h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.22;
    max-width: var(--measure);
    scroll-margin-top: 6rem;
}
.prose h2 { font-size: var(--step-2); margin-top: 2.2em; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8em; }
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }

.prose ul,
.prose ol {
    max-width: var(--measure);
    padding-inline-start: 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.prose li { line-height: 1.7; }
.prose li::marker { color: var(--gold-deep); }

.prose blockquote {
    max-width: var(--measure);
    border-inline-start: 2px solid var(--gold);
    padding-inline-start: 1.25rem;
    font-family: var(--font-display);
    font-size: var(--step-1);
    line-height: 1.5;
    color: var(--olive);
}
.prose blockquote p { margin: 0; }

.prose strong { font-weight: 600; }

/* Uzun yazıda ilk harfin büyütülmesi başlıkla başlayan gövdelerde çirkin
   duruyordu; yalnızca gerçekten ilk eleman bir paragrafsa uygulanır. */
.article-body > h2:first-child + p::first-letter { all: unset; }

/* --------------------------------------------------------------------------
   Atlama listesi (içindekiler)
   -------------------------------------------------------------------------- */

.toc {
    border: 1px solid var(--line);
    background: var(--ivory-deep);
    padding: 1.35rem 1.5rem;
    margin-bottom: 2.5rem;
}
.toc__title {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.85rem;
}
.toc ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    counter-reset: toc;
    padding: 0;
}
.toc li { counter-increment: toc; font-size: 0.95rem; line-height: 1.5; }
.toc li::before {
    content: counter(toc, decimal-leading-zero);
    color: var(--gold-deep);
    margin-inline-end: 0.6rem;
    font-size: 0.78rem;
}
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------------------
   Bağlam bağlantıları
   -------------------------------------------------------------------------- */

.link-grid {
    list-style: none;
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    grid-template-columns: 1fr;
    padding: 0;
}
@media (min-width: 40rem) { .link-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 62rem) { .link-grid { grid-template-columns: repeat(3, 1fr); } }

.link-grid a {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    height: 100%;
    padding: 1.35rem 1.4rem;
    background: var(--surface);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s var(--ease);
}
.link-grid a:hover { background: var(--ivory-deep); }
.link-grid__tag {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.link-grid__label {
    font-family: var(--font-display);
    font-size: 1.16rem;
    line-height: 1.3;
}
.link-grid__text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-soft);
}

/* --------------------------------------------------------------------------
   Küçük eklentiler
   -------------------------------------------------------------------------- */

.pill--sm { padding: 0.3rem 0.7rem; font-size: 0.7rem; }

.breadcrumb--hero { color: rgba(250, 247, 242, 0.62); padding-top: 0; }
.breadcrumb--hero a { color: inherit; }
.breadcrumb--hero a:hover { color: var(--ivory); }
.breadcrumb--hero [aria-current] { color: rgba(250, 247, 242, 0.92); }

.section--ivory { background: var(--ivory); }

.footer-brand__contact { margin-top: 1.25rem; }
.footer-brand__langs {
    margin-top: 1rem;
    font-size: 0.78rem;
    color: rgba(250, 247, 242, 0.5);
}

.footer-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 247, 242, 0.12);
}
.footer-tags h2 {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-tags .pill {
    border-color: rgba(250, 247, 242, 0.18);
    color: rgba(250, 247, 242, 0.7);
}
.footer-tags .pill:hover {
    border-color: var(--gold);
    color: var(--ivory);
}

/* Alt bilgi başlıkları h3'ten h2'ye taşındı (sayfa başına tek h1, sonra
   anlamlı bir başlık hiyerarşisi). İki seçici de korunuyor. */
.footer-col h2,
.footer-col h3 {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

@media (min-width: 62rem) {
    .footer-grid { grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2.5rem; }
}
