:root {
    --background: #101412;
    --background-soft: #171c19;
    --surface: #1c231f;
    --surface-light: #232d27;
    --green: #173d29;
    --green-light: #245b3a;
    --gold: #c8a55a;
    --gold-light: #ecd493;
    --cream: #f4efe4;
    --text: #d8d3c8;
    --muted: #9e9f99;
    --border: rgba(236, 212, 147, .17);
    --shadow: 0 24px 65px rgba(0, 0, 0, .36);
    --radius: 22px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--cream);
    background:
        radial-gradient(circle at 80% 10%, rgba(35, 91, 58, .20), transparent 32%),
        radial-gradient(circle at 10% 60%, rgba(200, 165, 90, .06), transparent 30%),
        var(--background);
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transition: background .3s, box-shadow .3s, border-color .3s;
}

.site-header.scrolled {
    background: rgba(13, 17, 15, .93);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    position: relative;
    z-index: 1002;
}

.brand-logo {
    width: 70px;
    height: 61px;
    object-fit: contain;
}

.brand-name strong {
    display: block;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 3px;
}

.brand-name span {
    display: block;
    margin-top: 5px;
    color: #bbb7ad;
    font-size: 9px;
    letter-spacing: 4px;
}

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

.site-nav a {
    position: relative;
    color: #e7e2d7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .8px;
    transition: color .25s;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width .25s;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--gold-light);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}



.menu-toggle {
    display: none;
    position: relative;
    z-index: 1002;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(236, 212, 147, .38);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(18, 23, 20, .82);
    font-size: 22px;
    cursor: pointer;
}

/* BUTTONS */

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 25px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .8px;
    transition: transform .25s, background .25s, color .25s, border-color .25s;
}

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

.button-gold {
    color: #171a18;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 14px 35px rgba(200, 165, 90, .18);
}

.button-outline {
    color: var(--cream);
    border: 1px solid rgba(236, 212, 147, .52);
    background: rgba(255, 255, 255, .015);
}

.button-outline:hover {
    color: #171a18;
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* HERO */

.hero {
    min-height: 810px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 90px;
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 16, 14, .99) 0%, rgba(13, 22, 17, .94) 48%, rgba(14, 33, 22, .72) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    width: 740px;
    height: 740px;
    top: -220px;
    right: -210px;
    border: 1px solid rgba(236, 212, 147, .15);
    border-radius: 50%;
    box-shadow:
        0 0 0 75px rgba(236, 212, 147, .025),
        0 0 0 150px rgba(236, 212, 147, .014);
    animation: rotateCircle 25s linear infinite;
}

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

.hero-smoke {
    position: absolute;
    z-index: 1;
    width: 560px;
    height: 560px;
    right: 6%;
    top: 15%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 112, 72, .18), transparent 67%);
    filter: blur(18px);
    animation: smokeMove 8s ease-in-out infinite alternate;
}

@keyframes smokeMove {
    from {
        transform: translate3d(-25px, 15px, 0) scale(.94);
        opacity: .55;
    }

    to {
        transform: translate3d(25px, -15px, 0) scale(1.06);
        opacity: 1;
    }
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 78px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-kicker::before {
    content: "";
    width: 52px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    max-width: 760px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(60px, 7vw, 104px);
    font-weight: normal;
    line-height: .90;
    letter-spacing: -2px;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
}

.hero-description {
    max-width: 650px;
    margin: 31px 0 37px;
    color: #d0cdc4;
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 28px;
    margin-top: 38px;
    color: #aaa9a3;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero-categories span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-categories span::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.hero-visual {
    position: relative;
    max-width: 535px;
    margin-left: auto;
}

.hero-logo-frame {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(236, 212, 147, .22);
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(32, 79, 50, .44), rgba(14, 18, 16, .88));
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

.hero-logo-frame::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid rgba(236, 212, 147, .12);
    border-radius: 28px;
}

.hero-logo-frame img {
    position: relative;
    width: 100%;
    min-height: 430px;
    object-fit: contain;
    border-radius: 25px;
}

.floating-note {
    position: absolute;
    left: -52px;
    bottom: 52px;
    z-index: 2;
    width: 190px;
    padding: 20px;
    border: 1px solid rgba(236, 212, 147, .22);
    border-radius: 16px;
    background: rgba(18, 23, 20, .91);
    box-shadow: var(--shadow);
    backdrop-filter: blur(13px);
}

.floating-note small {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.floating-note strong {
    display: block;
    margin-top: 6px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}

/* INTRO */

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-heading h2,
.content-heading {
    margin-top: 12px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: normal;
    line-height: 1.08;
}

.section-heading p {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--muted);
}

.intro {
    background:
        radial-gradient(circle at center, rgba(37, 86, 57, .13), transparent 50%),
        var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    min-height: 270px;
    overflow: hidden;
    padding: 34px 27px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(34, 77, 51, .35), rgba(24, 29, 26, .92));
    transition: transform .35s, border-color .35s;
}

.value-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -70px;
    bottom: -70px;
    border: 1px solid rgba(236, 212, 147, .13);
    border-radius: 50%;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 212, 147, .42);
}

.value-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(236, 212, 147, .40);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 24px;
}

.value-card h3 {
    margin-bottom: 11px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.value-card p {
    color: #b9b7b0;
    font-size: 14px;
}

/* CUISINE */

.cuisine-section {
    position: relative;
    overflow: hidden;
    padding: 125px 0;
    border-top: 1px solid var(--border);
}

.cuisine-section.alt {
    background: #141916;
}

.cuisine-word {
    position: absolute;
    top: 35px;
    left: 50%;
    color: rgba(236, 212, 147, .035);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(90px, 16vw, 230px);
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
    pointer-events: none;
}

.cuisine-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 85px;
}

.cuisine-section.reverse .cuisine-content {
    order: 2;
}

.cuisine-section.reverse .cuisine-visual {
    order: 1;
}

.cuisine-number {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.cuisine-content h2 {
    margin: 14px 0 22px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 6vw, 76px);
    font-weight: normal;
    line-height: .98;
}

.cuisine-content h2 span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
}

.cuisine-content p {
    max-width: 580px;
    margin-bottom: 18px;
    color: var(--text);
}

.cuisine-features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 30px 0 34px;
}

.cuisine-features span {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #c9c5bc;
    background: rgba(38, 85, 56, .16);
    font-size: 12px;
    font-weight: 700;
}

.cuisine-visual {
    position: relative;
    min-height: 470px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 36px;
    background:
        radial-gradient(circle, rgba(47, 111, 72, .28), transparent 58%),
        linear-gradient(145deg, #1c261f, #101412);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cuisine-visual::before,
.cuisine-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(236, 212, 147, .13);
    border-radius: 50%;
}

.cuisine-visual::before {
    width: 330px;
    height: 330px;
}

.cuisine-visual::after {
    width: 430px;
    height: 430px;
}

.cuisine-symbol {
    position: relative;
    z-index: 2;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 110px;
    line-height: 1;
    text-shadow: 0 12px 35px rgba(0, 0, 0, .4);
}

.cuisine-visual small {
    position: absolute;
    bottom: 30px;
    color: #a9aaa4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* EXPERIENCE */

.experience {
    background:
        linear-gradient(135deg, rgba(23, 61, 41, .85), rgba(18, 24, 20, .96));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 80px;
}

.experience-content p {
    max-width: 650px;
    margin: 22px 0 30px;
    color: #c7c9c4;
}

.experience-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 24px;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #e4dfd4;
    font-size: 14px;
    font-weight: 700;
}

.experience-list li::before {
    content: "✓";
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #171a18;
    background: var(--gold-light);
    font-size: 12px;
}

.experience-logo {
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background: rgba(12, 16, 14, .50);
    box-shadow: var(--shadow);
}

.experience-logo img {
    width: 100%;
    border-radius: 20px;
}

/* LOCATION */

.location-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.location-content {
    padding: 55px;
}

.location-content h2 {
    margin: 13px 0 20px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 54px);
    font-weight: normal;
    line-height: 1.08;
}

.location-content p {
    margin-bottom: 11px;
    color: var(--text);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.map-preview {
    min-height: 460px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(rgba(13, 35, 23, .62), rgba(13, 35, 23, .75)),
        repeating-linear-gradient(
            45deg,
            rgba(236, 212, 147, .06) 0,
            rgba(236, 212, 147, .06) 1px,
            transparent 1px,
            transparent 32px
        ),
        #1c3828;
}

.map-preview::before {
    content: "";
    width: 145px;
    height: 145px;
    border: 1px solid rgba(236, 212, 147, .27);
    border-radius: 50%;
    box-shadow:
        0 0 0 38px rgba(236, 212, 147, .045),
        0 0 0 78px rgba(236, 212, 147, .025);
}

.map-pin {
    position: absolute;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 50% 50% 50% 0;
    color: #171a18;
    background: var(--gold-light);
    font-size: 26px;
    transform: rotate(-45deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .28);
}

.map-pin span {
    transform: rotate(45deg);
}

/* CTA */

.cta {
    padding: 75px 0;
    text-align: center;
    background:
        radial-gradient(circle at center, rgba(46, 113, 73, .27), transparent 58%),
        #111613;
    border-top: 1px solid var(--border);
}

.cta h2 {
    max-width: 760px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 5vw, 66px);
    font-weight: normal;
    line-height: 1.05;
}

.cta p {
    max-width: 620px;
    margin: 21px auto 30px;
    color: var(--muted);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
}

/* FOOTER */

.site-footer {
    padding: 76px 0 26px;
    background: #0c100e;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .9fr;
    gap: 70px;
    padding-bottom: 50px;
}

.footer-logo {
    width: 235px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.footer-description {
    max-width: 430px;
    color: #9d9e99;
    font-size: 14px;
}

.footer-title {
    margin-bottom: 20px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: normal;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    color: #b4b2ab;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact p {
    margin-bottom: 12px;
    color: #b4b2ab;
    font-size: 14px;
}

.footer-contact a {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: #797d78;
    font-size: 12px;
}

.social-link {
    color: var(--gold-light);
}

/* WHATSAPP */

.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    min-height: 53px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    color: white;
    background: #23844c;
    box-shadow: 0 15px 38px rgba(0, 0, 0, .34);
    font-size: 13px;
    font-weight: 800;
    transition: transform .25s, background .25s;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    background: #289c59;
}

/* REVEAL */

[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1050px) {
    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        visibility: hidden;
        opacity: 0;
        background: rgba(10, 14, 12, .98);
        transition: opacity .3s, visibility .3s;
    }

    .site-nav.open {
        visibility: visible;
        opacity: 1;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .site-nav a {
        font-family: Georgia, "Times New Roman", serif;
        font-size: 25px;
        font-weight: normal;
    }


    .hero-grid,
    .cuisine-grid,
    .experience-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        text-align: center;
    }

    .hero-grid {
        gap: 60px;
    }

    .hero-kicker,
    .hero-actions,
    .hero-categories {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        width: min(100%, 620px);
        margin: auto;
    }

    .floating-note {
        left: 10px;
    }

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

    .cuisine-section.reverse .cuisine-content,
    .cuisine-section.reverse .cuisine-visual {
        order: initial;
    }

    .cuisine-content {
        text-align: center;
    }

    .cuisine-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .cuisine-features {
        justify-content: center;
    }

    .experience-content {
        text-align: center;
    }

    .experience-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .experience-list {
        max-width: 650px;
        margin: auto;
        text-align: left;
    }

    .experience-logo {
        max-width: 650px;
        margin: auto;
    }

    .location-content {
        text-align: center;
    }

    .location-actions {
        justify-content: center;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .container {
        width: min(100% - 24px, 1200px);
    }

    .navbar {
        min-height: 78px;
    }

    .brand-logo {
        width: 57px;
        height: 49px;
    }

    .brand-name strong {
        font-size: 20px;
    }

    .brand-name span {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero-description {
        font-size: 16px;
    }

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

    .hero-logo-frame {
        padding: 17px;
        border-radius: 25px;
    }

    .hero-logo-frame img {
        min-height: 320px;
    }

    .floating-note {
        position: relative;
        left: auto;
        bottom: auto;
        width: calc(100% - 40px);
        margin: -45px auto 0;
    }

    .section,
    .cuisine-section {
        padding: 78px 0;
    }

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

    .cuisine-grid {
        gap: 45px;
    }

    .cuisine-visual {
        min-height: 350px;
    }

    .cuisine-visual::before {
        width: 230px;
        height: 230px;
    }

    .cuisine-visual::after {
        width: 310px;
        height: 310px;
    }

    .cuisine-symbol {
        font-size: 80px;
    }

    .experience-list {
        grid-template-columns: 1fr;
    }

    .location-content {
        padding: 40px 22px;
    }

    .map-preview {
        min-height: 350px;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-button {
        width: 56px;
        height: 56px;
        min-height: 56px;
        justify-content: center;
        padding: 0;
        font-size: 21px;
    }

    .whatsapp-button span {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   HAKKIMIZDA SAYFASI
   ========================================================= */

.inner-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
    border-bottom: 1px solid var(--border);
    background:
        linear-gradient(90deg, rgba(10, 14, 12, .98), rgba(18, 43, 28, .83)),
        url("../images/logo.jpg") center / cover no-repeat;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(200, 165, 90, .13), transparent 35%),
        linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(0, 0, 0, .52));
}

.inner-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    top: -150px;
    border: 1px solid rgba(236, 212, 147, .13);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(236, 212, 147, .022),
        0 0 0 140px rgba(236, 212, 147, .012);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.inner-hero h1 {
    margin-top: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 92px);
    font-weight: normal;
    line-height: .95;
}

.inner-hero h1 span {
    color: var(--gold-light);
    font-style: italic;
}

.inner-hero p {
    max-width: 700px;
    margin-top: 25px;
    color: #d1cec6;
    font-size: 18px;
    line-height: 1.8;
}

.story-section {
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 85px;
}

.story-visual {
    position: relative;
}

.story-frame {
    position: relative;
    overflow: hidden;
    padding: 23px;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(38, 85, 56, .40), rgba(16, 20, 18, .96));
    box-shadow: var(--shadow);
}

.story-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(236, 212, 147, .10);
    border-radius: 25px;
}

.story-frame img {
    position: relative;
    width: 100%;
    min-height: 520px;
    object-fit: contain;
    border-radius: 22px;
}

.story-badge {
    position: absolute;
    right: -30px;
    bottom: 55px;
    width: 180px;
    padding: 23px;
    border: 1px solid rgba(236, 212, 147, .23);
    border-radius: 18px;
    background: rgba(16, 21, 18, .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.story-badge small {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-badge strong {
    display: block;
    margin-top: 7px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.25;
}

.story-content h2 {
    margin: 13px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 5vw, 62px);
    font-weight: normal;
    line-height: 1.05;
}

.story-content h2 span {
    display: block;
    color: var(--gold-light);
    font-style: italic;
}

.story-content p {
    margin-bottom: 18px;
    color: var(--text);
}

.story-quote {
    margin: 31px 0;
    padding: 24px 27px;
    border-left: 3px solid var(--gold);
    background: rgba(37, 86, 57, .22);
    color: #e6e0d4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-style: italic;
    line-height: 1.55;
}

.timeline-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 20%, rgba(37, 86, 57, .17), transparent 42%),
        #141916;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.timeline {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(236, 212, 147, .40),
        transparent
    );
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 55px 60px;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 4px solid #141916;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 1px rgba(236, 212, 147, .45);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

.timeline-item small {
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.timeline-item h3 {
    margin: 8px 0 11px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: normal;
}

.timeline-item p {
    color: #b8b7b1;
    font-size: 14px;
}

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

.principle-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    padding: 37px 30px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(37, 86, 57, .36), rgba(23, 28, 25, .96));
    transition: transform .35s, border-color .35s;
}

.principle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 212, 147, .42);
}

.principle-number {
    position: absolute;
    top: 12px;
    right: 20px;
    color: rgba(236, 212, 147, .07);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 85px;
    font-weight: bold;
    line-height: 1;
}

.principle-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(236, 212, 147, .42);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 25px;
}

.principle-card h3 {
    margin-bottom: 14px;
    color: var(--gold-light);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: normal;
}

.principle-card p {
    color: #bcbab4;
    font-size: 14px;
}

.manifesto {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    text-align: center;
    background:
        linear-gradient(rgba(13, 34, 23, .83), rgba(13, 24, 18, .93)),
        url("../images/logo.jpg") center / cover no-repeat fixed;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.manifesto::before {
    content: "UMAMİ";
    position: absolute;
    left: 50%;
    top: 50%;
    color: rgba(236, 212, 147, .045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(110px, 20vw, 300px);
    font-weight: bold;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.manifesto-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto blockquote {
    margin-top: 20px;
    color: var(--cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 4.5vw, 57px);
    line-height: 1.18;
}

.manifesto blockquote span {
    color: var(--gold-light);
    font-style: italic;
}

.manifesto p {
    max-width: 670px;
    margin: 27px auto 0;
    color: #c4c5c0;
}

@media (max-width: 1000px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-visual {
        max-width: 670px;
        margin: auto;
    }

    .story-content {
        text-align: center;
    }

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

@media (max-width: 700px) {
    .inner-hero {
        min-height: 500px;
        padding: 125px 0 70px;
        text-align: center;
    }

    .inner-hero h1 {
        font-size: 54px;
    }

    .story-frame img {
        min-height: 340px;
    }

    .story-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 38px);
        margin: -42px auto 0;
    }

    .timeline::before {
        left: 9px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding: 0 0 48px 45px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 0;
        right: auto;
    }

    .manifesto {
        background-attachment: scroll;
        padding: 85px 0;
    }
}

/* =========================================================
   ERİŞİLEBİLİRLİK
   ========================================================= */

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 8px;
    color: #101412;
    background: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* UMAMI mobil uyumluluk düzeltmeleri */
html,body{max-width:100%;overflow-x:hidden}img,video,svg{max-width:100%;height:auto}.container{width:min(1180px,calc(100% - 32px))}.site-header .navbar{min-height:78px}.brand-logo{flex:0 0 auto}.site-nav a{white-space:nowrap}
@media(max-width:760px){
  .container{width:min(100% - 24px,1180px)}
  .site-header .navbar{min-height:70px}
  .brand-logo{width:44px!important;height:44px!important}
  .brand-name strong{font-size:18px}.brand-name span{font-size:9px}
  .menu-toggle{display:flex!important;align-items:center;justify-content:center;min-width:44px;min-height:44px}
  .site-nav{position:absolute;left:12px;right:12px;top:calc(100% + 1px);background:#111a14;border:1px solid rgba(220,190,105,.25);border-radius:0 0 14px 14px;box-shadow:0 18px 45px rgba(0,0,0,.35);max-height:0;overflow:hidden;opacity:0;pointer-events:none;transition:.25s ease}
  .site-nav.open{max-height:520px;opacity:1;pointer-events:auto;padding:10px}
  .site-nav ul{display:grid!important;gap:4px!important;margin:0!important;padding:0!important}
  .site-nav li{width:100%}.site-nav a{display:block;width:100%;padding:13px 14px!important;border-radius:8px}
  .hero-actions,.cta-actions{display:grid!important;grid-template-columns:1fr!important;width:100%;gap:10px}.button{width:100%;min-height:48px;text-align:center}
  h1{overflow-wrap:anywhere}.footer-grid{grid-template-columns:1fr!important}.footer-bottom{display:grid!important;gap:10px;text-align:center}
}
@media(max-width:420px){.container{width:calc(100% - 20px)}.brand-name span{display:none}.inner-hero h1,.gallery-hero h1{font-size:clamp(38px,12vw,52px)!important}}
