*{
    box-sizing:border-box;
}

:root{
    --cream:#fff5ec;
    --paper:#fffaf5;
    --line:#f1d2b8;
    --text:#3b2f2f;
    --muted:#8b6f5a;
    --accent:#e85d04;
    --accent-2:#ff9f1c;
    --accent-soft:#ffe5d0;
    --panel:rgba(255,250,245,0.82);
    --panel-strong:rgba(255,253,249,0.92);
    --white:#ffffff;
    --shadow:0 24px 70px rgba(120,60,20,0.15);
    --shadow-strong:0 34px 90px rgba(120,60,20,0.22);
}

html,body{
    margin:0;
    min-height:100%;
    font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(255,159,28,0.25), transparent 20%),
        radial-gradient(circle at bottom left, rgba(232,93,4,0.18), transparent 20%),
        linear-gradient(180deg, #fff5ec, #ffe8d6);
    color:var(--text);
}

body{
    overflow-x:hidden;
}

.content{
    width:min(1440px, 100%);
    margin:0 auto;
    padding:24px;
    display:grid;
    grid-template-columns:100px minmax(0, 1fr);
    gap:24px;
}

.side-brand{
    position:sticky;
    top:24px;
    height:calc(100vh - 48px);
    border-radius:28px;
    background:rgba(255,255,255,0.72);
    border:1px solid rgba(255,255,255,0.8);
    backdrop-filter:blur(12px);
    box-shadow:var(--shadow);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
    padding:24px 14px;
}

.brand-badge{
    width:52px;
    height:52px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:18px;
    color:#fff;
    background:linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow:0 18px 30px rgba(232,93,4,0.24);
}

.vertical-mark{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    letter-spacing:0.18em;
    text-transform:uppercase;
    font-weight:900;
    color:var(--accent);
}

.brand-meta{
    display:flex;
    flex-direction:column;
    gap:8px;
    text-align:center;
}

.brand-meta strong{
    font-size:14px;
}

.brand-meta span{
    font-size:12px;
    color:var(--muted);
    line-height:1.5;
}

.main-area{
    display:flex;
    flex-direction:column;
    gap:22px;
}

#menu{
    display:grid;
    grid-template-columns:repeat(5, minmax(0,1fr));
    gap:10px;
    padding:12px;
    background:rgba(255,255,255,0.70);
    border:1px solid rgba(255,255,255,0.8);
    backdrop-filter:blur(12px);
    border-radius:24px;
    box-shadow:var(--shadow);
}

.secenek{
    min-height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 12px;
    cursor:pointer;
    background:#fff7f0;
    border:1px solid var(--line);
    transition:transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.secenek:hover{
    transform:translateY(-2px);
    background:var(--accent-soft);
    border-color:#ffb380;
    box-shadow:0 12px 24px rgba(232,93,4,0.10);
}

.secenek p,
.secenek a{
    margin:0;
    text-decoration:none;
    color:var(--text);
    font-weight:700;
    font-size:15px;
}

#govde{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:24px;
    align-items:start;
}

.hero-left{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.headline-box,
.story-card,
.quote-card,
.photo-frame,
.feature-card{
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(255,255,255,0.8);
    box-shadow:var(--shadow);
}

.headline-box{
    padding:34px;
    border-radius:34px;
    height: 100%;
}

.chip{
    display:inline-flex;
    padding:8px 14px;
    border-radius:999px;
    background:var(--accent-soft);
    color:var(--accent);
    font-size:12px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:16px;
}

.headline-box h1{
    margin:0 0 28px;
    font-size:clamp(38px, 5vw, 74px);
    /*line-height:.94;
    letter-spacing:-.05em;*/
    max-width:9ch;
}

.lead{
    margin:0;
    color:var(--muted);
    font-size:17px;
    line-height:1.85;
    max-width:60ch;
}

.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:24px;
}

.hero-btn,
#btn-ok{
    min-height:54px;
    padding:0 22px;
    border:none;
    border-radius:16px;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.hero-btn:hover,
#btn-ok:hover{
    transform:translateY(-1px);
    filter:brightness(1.02);
}

.hero-btn-primary,
#btn-ok,
.popup-btn-primary{
    color:#fff;
    background:linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow:0 16px 28px rgba(232,93,4,0.22);
}

.hero-btn-secondary{
    color:var(--text);
    background:#fff3e9;
    border:1px solid var(--line);
}

.feature-row{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap:14px;
}

.feature-card{
    padding:20px;
    border-radius:22px;
}

.feature-card strong{
    display:block;
    margin-bottom:6px;
    font-size:18px;
}

.feature-card span{
    color:var(--muted);
    font-size:14px;
}

.hero-right{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:20px;
}

.visitor-counter{
    position:relative;
    padding:24px 26px;
    border-radius:30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,244,235,0.94));
    border:1px solid rgba(232,93,4,0.14);
    box-shadow:
        0 22px 45px rgba(120,60,20,0.13),
        inset 0 1px 0 rgba(255,255,255,0.8);
    overflow:hidden;
}

.visitor-counter::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg, var(--accent), var(--accent-2));
}

.visitor-counter-top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
}

.counter-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow:0 0 0 6px rgba(232,93,4,0.10);
    flex-shrink:0;
}

.counter-live{
    font-size:13px;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:var(--accent);
}

.visitor-counter-body{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.counter-mini-title{
    margin:0;
    font-size:14px;
    color:var(--muted);
    font-weight:700;
}

.visitor-counter h3{
    margin:0;
    font-size:clamp(36px, 4vw, 54px);
    line-height:1;
    color:var(--text);
    letter-spacing:-.04em;
}

.counter-desc{
    margin:0;
    font-size:14px;
    color:#9a3412;
    line-height:1.6;
    font-weight:600;
}

.photo-frame{
    border-radius:34px;
    overflow:hidden;
}

.large-frame{
    width:100%;
    min-height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:34px;
    background:linear-gradient(180deg, #fff2e2, #fffaf4);
}

.large-frame img,
.small-frame img{
    width:100%;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 20px 30px rgba(120,60,20,0.15));
}

#metin{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:24px;
    align-items:start;
}

.story-card{
    padding:34px;
    border-radius:34px;
    background:var(--panel-strong);
}

#tanitimMetin p{
    margin:0;
    color:#5a4638;
    font-size:17px;
    line-height:1.95;
}

#tanitimMetin span{
    display:inline-block;
    margin-bottom:2px;
    padding:6px 12px;
    border-radius:12px;
    background:linear-gradient(135deg, rgba(255,159,28,0.30), rgba(232,93,4,0.20));
    color:var(--accent);
    font-size:20px;
    font-weight:800;
}

.side-visuals{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.small-frame{
    padding:24px;
}

.quote-card{
    padding:26px;
    border-radius:28px;
}

.quote-card p{
    margin:0;
    font-size:22px;
    line-height:1.6;
    color:#9a3412;
    font-weight:700;
}

#bestellung-giris{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:min(92vw, 460px);
    padding:30px;
    background:#fffaf5;
    border:1px solid rgba(255,255,255,0.85);
    border-radius:28px;
    box-shadow:var(--shadow-strong);
    z-index:20;
}

.bestellung-title{
    margin:0;
    font-size:28px;
    color:var(--text);
}

.bestellung-text{
    margin:0 0 2px;
    text-align:center;
    color:var(--muted);
    line-height:1.6;
    font-size:15px;
}

#isim-giris,
#telefon-giris{
    width:100%;
    min-height:54px;
    border-radius:16px;
    border:1px solid #e7c8aa;
    background:#fff;
    padding:0 14px;
    font-size:16px;
    text-align:center;
    outline:none;
}

#isim-giris:focus,
#telefon-giris:focus{
    border-color:#f59e0b;
    box-shadow:0 0 0 4px rgba(245,158,11,0.14);
}

.popup-buttons{
    width:100%;
    display:flex;
    gap:12px;
}

.popup-btn{
    flex:1;
    min-height:52px;
    border:none;
    border-radius:16px;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
}

.popup-btn-light{
    color:var(--text);
    background:#fff1e3;
    border:1px solid var(--line);
}

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

    .side-brand{
        position:relative;
        top:auto;
        height:auto;
        flex-direction:row;
        justify-content:space-between;
    }

    .vertical-mark{
        writing-mode:initial;
        transform:none;
    }

    #govde,
    #metin{
        grid-template-columns:1fr;
    }

    .headline-box h1{
        max-width:none;
    }
}

@media (max-width: 860px){
    #menu{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

    .secenek:last-child{
        grid-column:1 / -1;
    }

    .feature-row{
        grid-template-columns:1fr;
    }

    .visitor-counter{
        padding:20px;
    }
}

@media (max-width: 560px){
    .content{
        padding:16px;
    }

    #menu{
        grid-template-columns:1fr;
    }

    .secenek:last-child{
        grid-column:auto;
    }

    .headline-box,
    .story-card,
    .quote-card,
    .large-frame,
    .small-frame{
        padding:20px;
        border-radius:24px;
    }

    .headline-box h1{
        font-size:40px;
    }

    #tanitimMetin p{
        font-size:15px;
    }

    #tanitimMetin span{
        font-size:16px;
    }

    .quote-card p{
        font-size:18px;
    }

    .hero-actions,
    .popup-buttons{
        flex-direction:column;
    }

    .hero-btn,
    .popup-btn,
    #btn-ok{
        width:100%;
    }

    .visitor-counter{
        padding:18px;
        border-radius:24px;
    }

    .visitor-counter h3{
        font-size:32px;
    }
}
