:root {
    --white: #ffffff;
    --ivory: #fffdf8;
    --cream: #f7f2e8;
    --cream-deep: #eee3cd;
    --text: #19231e;
    --muted: #647068;
    --green: #173d2d;
    --green-dark: #0d2b1f;
    --green-soft: #e8f0eb;
    --gold: #f6cf63;
    --gold-dark: #c99a24;
    --gold-soft: #fff3c9;
    --line: rgba(23, 61, 45, 0.14);
    --line-light: rgba(255, 255, 255, 0.15);
    --shadow-sm: 0 12px 34px rgba(13, 43, 31, 0.08);
    --shadow-md: 0 26px 72px rgba(13, 43, 31, 0.14);
    --shadow-lg: 0 42px 120px rgba(13, 43, 31, 0.2);
    --font-body: Inter, ui-sans-serif, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Iowan Old Style", "Palatino Linotype",
        "Book Antiqua", Georgia, serif;
    --container: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--ivory);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--ivory);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
figure {
    margin-top: 0;
}

::selection {
    background: var(--gold);
    color: var(--green-dark);
}

.shell {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: clamp(78px, 9vw, 132px);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    transform: translateY(-180%);
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--green-dark);
    color: var(--white);
    font-weight: 850;
    transition: transform 0.22s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid rgba(201, 154, 36, 0.58);
    outline-offset: 4px;
}

/* ÜST BİLGİ ŞERİDİ */

.top-note {
    position: relative;
    z-index: 80;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.top-note__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.top-note strong {
    color: var(--white);
}

.top-note a {
    color: var(--gold);
    font-weight: 850;
}

.top-note__pulse {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #72e39d;
    box-shadow: 0 0 0 0 rgba(114, 227, 157, 0.55);
    animation: pulse 2s infinite;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    border-bottom: 1px solid transparent;
    background: rgba(255, 253, 248, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 14px 44px rgba(13, 43, 31, 0.08);
}

.site-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand__mark {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(201, 154, 36, 0.48);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.brand__mark img {
    width: 100%;
    height: 100%;
    padding: 6px;
    object-fit: contain;
}

.brand__text {
    min-width: 0;
    display: grid;
    line-height: 1.08;
}

.brand__text strong {
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -0.025em;
}

.brand__text small {
    margin-top: 6px;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    padding: 12px 15px;
    border-radius: 999px;
    color: #35473d;
    font-size: 14px;
    font-weight: 850;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 8px;
    left: 15px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 999px;
    background: var(--gold-dark);
    transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
    background: var(--cream);
    color: var(--green-dark);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* BUTONLAR */

.button {
    position: relative;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        background 0.24s ease,
        color 0.24s ease,
        border-color 0.24s ease;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.34),
        transparent 80%
    );
    transition: transform 0.7s ease;
}

.button:hover::before,
.button:focus-visible::before {
    transform: translateX(120%);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--large {
    min-height: 56px;
    padding-inline: 26px;
    font-size: 15px;
}

.button--ghost {
    border-color: rgba(23, 61, 45, 0.2);
    background: rgba(255, 255, 255, 0.72);
}

.button--ghost:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

.button--whatsapp {
    background: #1f9d55;
    color: var(--white);
    box-shadow: 0 13px 28px rgba(31, 157, 85, 0.2);
}

.button--whatsapp:hover {
    background: #178144;
    box-shadow: 0 18px 34px rgba(31, 157, 85, 0.27);
}

.button--gold {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 16px 34px rgba(201, 154, 36, 0.22);
}

.button--gold:hover {
    background: #ffdc7c;
    box-shadow: 0 20px 42px rgba(201, 154, 36, 0.28);
}

.button--green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(23, 61, 45, 0.2);
}

.button--green:hover {
    background: var(--green-dark);
}

.button--plain {
    border-color: var(--line);
    background: var(--white);
}

.button--plain:hover {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

.button__icon,
.button__arrow {
    position: relative;
    z-index: 1;
}

/* MOBİL MENÜ */

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    gap: 4px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--green-dark);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 130px;
    right: 16px;
    left: 16px;
    z-index: 75;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.99);
    box-shadow: var(--shadow-lg);
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu a {
    padding: 15px 16px;
    border-radius: 14px;
    color: var(--green-dark);
    font-weight: 850;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
    background: var(--cream);
}

/* HERO */

.hero {
    min-height: calc(100vh - 128px);
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(246, 207, 99, 0.22),
            transparent 23rem
        ),
        linear-gradient(180deg, #fffefa 0%, #fff9ed 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.34;
    background-image:
        linear-gradient(
            rgba(23, 61, 45, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 61, 45, 0.035) 1px,
            transparent 1px
        );
    background-size: 80px 80px;
    -webkit-mask-image: linear-gradient(
        to bottom,
        #000,
        transparent 88%
    );
    mask-image: linear-gradient(
        to bottom,
        #000,
        transparent 88%
    );
}

.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(420px, 1.08fr);
    align-items: center;
    gap: clamp(44px, 7vw, 100px);
}

.hero__content {
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.eyebrow--light {
    color: var(--gold);
}

.hero h1,
.section-heading h2,
.store-story h2,
.promise h2,
.faq h2,
.final-cta h2 {
    margin-bottom: 0;
    color: var(--green-dark);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.045em;
}

.hero h1 {
    max-width: 790px;
    font-size: clamp(54px, 6.8vw, 106px);
    line-height: 0.92;
}

.hero h1 em {
    color: var(--gold-dark);
    font-weight: 700;
}

.hero__lead {
    max-width: 620px;
    margin: 30px 0 0;
    color: #506158;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.85;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero__quick-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.hero__quick-info strong {
    display: block;
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 950;
}

.hero__quick-info span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

/* HERO GÖRSELLERİ */

.hero-visual {
    position: relative;
    min-height: 650px;
}

.hero-visual__halo {
    position: absolute;
    top: 9%;
    right: 3%;
    bottom: 12%;
    left: 12%;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 45%,
        rgba(246, 207, 99, 0.5),
        rgba(246, 207, 99, 0.08) 48%,
        transparent 72%
    );
}

.hero-visual__main {
    position: absolute;
    right: 0;
    bottom: 6%;
    width: min(86%, 610px);
    margin: 0;
    overflow: hidden;
    border: 12px solid var(--white);
    border-radius:
        46% 54% 48% 52% /
        40% 42% 58% 60%;
    background: #f0f0ed;
    box-shadow: var(--shadow-lg);
    transform: rotate(-2.2deg);
}

.hero-visual__main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hero-visual__side {
    position: absolute;
    top: 3%;
    left: 1%;
    z-index: 3;
    width: 200px;
    margin: 0;
    overflow: hidden;
    border: 9px solid var(--white);
    border-radius: 36px;
    background: #f0f0ed;
    box-shadow: var(--shadow-md);
    transform: rotate(6deg);
}

.hero-visual__side img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.hero-visual__badge {
    position: absolute;
    top: 10%;
    right: 3%;
    z-index: 4;
    min-width: 180px;
    padding: 20px 22px;
    border: 1px solid rgba(201, 154, 36, 0.35);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.94);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.hero-visual__badge span,
.hero-visual__badge strong {
    display: block;
}

.hero-visual__badge span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-visual__badge strong {
    margin-top: 5px;
    color: var(--green-dark);
    font-family: var(--font-display);
    font-size: 21px;
}

.hero-visual__stamp {
    position: absolute;
    bottom: 9%;
    left: 2%;
    z-index: 4;
    width: 130px;
    height: 130px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(23, 61, 45, 0.28);
    border-radius: 50%;
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-align: center;
    animation: spin 18s linear infinite;
}

.hero__ornament {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero__ornament--one {
    top: 8%;
    right: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(201, 154, 36, 0.16);
}

.hero__ornament--two {
    bottom: 8%;
    left: -150px;
    width: 280px;
    height: 280px;
    background: rgba(23, 61, 45, 0.035);
}

.hero__scroll {
    position: absolute;
    right: 24px;
    bottom: 28px;
    z-index: 4;
    display: grid;
    justify-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__scroll i {
    width: 1px;
    height: 48px;
    background: linear-gradient(
        var(--gold-dark),
        transparent
    );
    animation: scrollLine 1.8s ease-in-out infinite;
}

/* HAREKETLİ MARKA ŞERİDİ */

.brand-strip {
    overflow: hidden;
    border-top: 1px solid rgba(246, 207, 99, 0.3);
    border-bottom: 1px solid rgba(246, 207, 99, 0.3);
    background: var(--green-dark);
    color: var(--white);
}

.brand-strip__track {
    width: max-content;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-inline: 28px;
    animation: marquee 26s linear infinite;
}

.brand-strip__track span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-strip__track i {
    color: var(--gold);
    font-style: normal;
}

/* BÖLÜM BAŞLIKLARI */

.section-heading--split {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, 0.7fr);
    align-items: end;
    gap: 70px;
}

.section-heading h2,
.store-story h2,
.promise h2,
.faq h2,
.final-cta h2 {
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.02;
}

.section-heading--split > p {
    max-width: 500px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

/* MENÜ MOZAIĞI */

.intro {
    background: var(--ivory);
}

.menu-mosaic {
    display: grid;
    grid-template-columns: 1.22fr 0.78fr;
    grid-template-rows: repeat(2, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 54px;
}

.menu-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border-radius: 38px;
    background: var(--green-dark);
    box-shadow: var(--shadow-sm);
}

.menu-card--large {
    grid-row: 1 / 3;
    min-height: 660px;
}

.menu-card > a {
    position: absolute;
    inset: 0;
    display: block;
}

.menu-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s
        cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(13, 43, 31, 0.88),
        rgba(13, 43, 31, 0.04) 62%
    );
}

.menu-card--gold::after {
    background: linear-gradient(
        to top,
        rgba(98, 67, 4, 0.86),
        rgba(98, 67, 4, 0.03) 62%
    );
}

.menu-card:hover img,
.menu-card:focus-within img {
    transform: scale(1.055);
}

.menu-card__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    padding: 28px;
    color: var(--white);
}

.menu-card__overlay span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.menu-card__overlay h3 {
    max-width: 540px;
    margin-bottom: 16px;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.6vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.menu-card:not(.menu-card--large)
    .menu-card__overlay h3 {
    font-size: clamp(24px, 2.1vw, 34px);
}

.menu-card__overlay b {
    font-size: 13px;
    font-weight: 900;
}

.center-action {
    margin-top: 34px;
    text-align: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--green-dark);
    font-weight: 900;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(5px);
}

/* MAĞAZA */

.store-story {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 8% 16%,
            rgba(246, 207, 99, 0.17),
            transparent 25rem
        ),
        var(--cream);
}

.store-story__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.06fr)
        minmax(360px, 0.94fr);
    align-items: center;
    gap: clamp(48px, 7vw, 100px);
}

.store-story__media {
    position: relative;
}

.store-story__media figure {
    margin: 0;
    overflow: hidden;
    border: 12px solid var(--white);
    border-radius: 48px 48px 160px 48px;
    background: #f0f0ed;
    box-shadow: var(--shadow-lg);
}

.store-story__media img {
    width: 100%;
    min-height: 640px;
    object-fit: cover;
}

.store-story__time {
    position: absolute;
    right: -24px;
    bottom: 46px;
    min-width: 180px;
    padding: 22px 24px;
    border: 1px solid rgba(201, 154, 36, 0.42);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.store-story__time small,
.store-story__time strong {
    display: block;
}

.store-story__time small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.store-story__time strong {
    margin-top: 5px;
    color: var(--green-dark);
    font-size: 22px;
}

.store-story__content > p:not(.eyebrow) {
    margin-top: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.store-facts {
    display: grid;
    gap: 0;
    margin-top: 34px;
    margin-bottom: 0;
    border-top: 1px solid var(--line);
}

.store-facts div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
}

.store-facts dt {
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.store-facts dd {
    margin: 0;
    color: var(--green-dark);
    font-weight: 850;
}

.store-story__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

/* HALİS USTA FARKI */

.promise {
    background: var(--ivory);
}

.promise__panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: 70px;
    padding: clamp(36px, 6vw, 78px);
    border-radius: 48px;
    background:
        radial-gradient(
            circle at 88% 8%,
            rgba(246, 207, 99, 0.22),
            transparent 21rem
        ),
        var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.promise__panel::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(246, 207, 99, 0.18);
    border-radius: 50%;
}

.promise h2 {
    color: var(--white);
}

.promise__copy > p:not(.eyebrow) {
    max-width: 520px;
    margin-top: 25px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
}

.promise__items {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.promise__items article {
    min-height: 260px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(10px);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.promise__items article:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.09);
}

.promise__items strong {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 24px;
}

.promise__items h3 {
    margin-top: 55px;
    margin-bottom: 12px;
    color: var(--white);
    font-size: 19px;
}

.promise__items p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

/* SIK SORULANLAR */

.faq {
    background: var(--cream);
}

.faq__grid {
    display: grid;
    grid-template-columns:
        minmax(300px, 0.68fr)
        minmax(0, 1.32fr);
    gap: clamp(54px, 8vw, 110px);
}

.faq__intro {
    position: sticky;
    top: 130px;
    align-self: start;
}

.faq__intro > p:not(.eyebrow) {
    max-width: 420px;
    margin-top: 24px;
    margin-bottom: 28px;
    color: var(--muted);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 26px;
    border: 0;
    background: transparent;
    color: var(--green-dark);
    text-align: left;
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 900;
    cursor: pointer;
}

.faq-item button span {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-dark);
    font-size: 20px;
}

.faq-item__answer {
    padding: 0 58px 25px 0;
}

.faq-item__answer p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

/* SON DÖNÜŞÜM ALANI */

.final-cta {
    background: var(--ivory);
}

.final-cta__panel {
    display: grid;
    grid-template-columns:
        minmax(0, 0.7fr)
        minmax(0, 1.3fr);
    align-items: center;
    gap: 50px;
    padding: clamp(34px, 6vw, 68px);
    border: 1px solid var(--line);
    border-radius: 44px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(246, 207, 99, 0.24),
            transparent 26rem
        ),
        var(--white);
    box-shadow: var(--shadow-md);
}

.final-cta__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.final-action {
    position: relative;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--cream);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.final-action:hover,
.final-action:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(201, 154, 36, 0.46);
    box-shadow: var(--shadow-sm);
}

.final-action small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.final-action strong {
    margin-top: 8px;
    color: var(--green-dark);
    font-size: 18px;
}

.final-action > span {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--gold-dark);
    font-size: 20px;
}

.final-action--whatsapp {
    border-color: rgba(31, 157, 85, 0.25);
    background: #e9f7ef;
}

/* FOOTER */

.site-footer {
    padding-top: 70px;
    padding-bottom: 26px;
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.62);
}

.site-footer__grid {
    display: grid;
    grid-template-columns:
        1.4fr
        repeat(3, minmax(150px, 0.65fr));
    gap: 44px;
}

.brand--footer .brand__mark {
    border-color: rgba(246, 207, 99, 0.35);
    background: rgba(255, 255, 255, 0.92);
}

.brand--footer .brand__text strong {
    color: var(--white);
}

.site-footer__grid > div:first-child > p {
    max-width: 350px;
    margin-top: 22px;
}

.site-footer nav,
.site-footer__grid > div:not(:first-child) {
    display: grid;
    align-content: start;
    gap: 10px;
}

.site-footer strong {
    color: var(--white);
}

.site-footer p,
.site-footer a {
    font-size: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--gold);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom p {
    margin: 0;
    font-size: 12px;
}

.mobile-conversion-bar {
    display: none;
}

.noscript-note {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    max-width: 360px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--green-dark);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

/* JAVASCRIPT ANİMASYONLARI */

html.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

html.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-float] {
    animation: float 5.5s ease-in-out infinite;
}

/* KEYFRAMES */

@keyframes pulse {
    0% {
        box-shadow:
            0 0 0 0
            rgba(114, 227, 157, 0.52);
    }

    70% {
        box-shadow:
            0 0 0 9px
            rgba(114, 227, 157, 0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(114, 227, 157, 0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollLine {
    0%,
    100% {
        transform: scaleY(0.55);
        transform-origin: top;
        opacity: 0.35;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* TABLET */

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 850px;
        margin-inline: auto;
        text-align: center;
    }

    .hero__lead {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 760px);
        min-height: 620px;
        margin-inline: auto;
    }

    .promise__panel,
    .final-cta__panel {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns:
            1.2fr
            repeat(2, minmax(160px, 0.7fr));
    }
}

/* MOBİL */

@media (max-width: 860px) {
    body {
        padding-bottom: 72px;
    }

    .shell {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .top-note__inner {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .top-note__inner::-webkit-scrollbar {
        display: none;
    }

    .site-header__inner {
        min-height: 76px;
    }

    .header-actions .button {
        display: none;
    }

    .brand__mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 15px;
    }

    .brand__text strong {
        font-size: 14px;
    }

    .brand__text small {
        font-size: 9px;
    }

    .mobile-menu {
        top: 118px;
        right: 14px;
        left: 14px;
    }

    .hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(49px, 14vw, 76px);
    }

    .hero__quick-info {
        grid-template-columns: 1fr;
        max-width: 430px;
        margin-inline: auto;
        text-align: left;
    }

    .hero__quick-info div {
        display: grid;
        grid-template-columns: 90px 1fr;
        align-items: center;
        gap: 14px;
    }

    .hero-visual {
        min-height: 540px;
    }

    .hero-visual__main {
        right: 5%;
        width: 78%;
    }

    .hero-visual__side {
        width: 150px;
    }

    .hero-visual__badge {
        right: 0;
        min-width: 160px;
    }

    .hero-visual__stamp {
        width: 100px;
        height: 100px;
    }

    .hero__scroll {
        display: none;
    }

    .section-heading--split,
    .store-story__grid,
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-heading--split > p {
        max-width: 700px;
    }

    .menu-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .menu-card,
    .menu-card--large {
        grid-row: auto;
        min-height: 460px;
    }

    .store-story__media figure {
        border-radius: 38px 38px 100px 38px;
    }

    .store-story__media img {
        min-height: 520px;
    }

    .store-story__time {
        right: 18px;
        bottom: 22px;
    }

    .promise__items,
    .final-cta__actions {
        grid-template-columns: 1fr;
    }

    .promise__items article {
        min-height: auto;
    }

    .promise__items h3 {
        margin-top: 28px;
    }

    .faq__intro {
        position: static;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-conversion-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 90;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        padding:
            7px
            max(7px, env(safe-area-inset-right))
            max(7px, env(safe-area-inset-bottom))
            max(7px, env(safe-area-inset-left));
        border-top: 1px solid var(--line);
        background: rgba(255, 253, 248, 0.98);
        box-shadow:
            0 -12px 35px
            rgba(23, 61, 45, 0.12);
        backdrop-filter: blur(18px);
    }

    .mobile-conversion-bar a {
        min-height: 56px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        border-radius: 14px;
        color: var(--green-dark);
        font-size: 11px;
        font-weight: 900;
    }

    .mobile-conversion-bar a:first-child {
        background: #e5f6ec;
        color: #16733e;
    }

    .mobile-conversion-bar a:nth-child(2) {
        background: var(--gold);
    }
}

/* KÜÇÜK MOBİL */

@media (max-width: 560px) {
    .section {
        padding-block: 72px;
    }

    .site-header__inner {
        gap: 10px;
    }

    .brand__text strong {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 460px;
    }

    .hero-visual__main {
        right: 2%;
        bottom: 2%;
        width: 86%;
        border-width: 8px;
    }

    .hero-visual__side {
        width: 118px;
        border-width: 6px;
        border-radius: 24px;
    }

    .hero-visual__badge {
        top: 2%;
        right: -2%;
        min-width: 145px;
        padding: 15px 16px;
    }

    .hero-visual__badge strong {
        font-size: 17px;
    }

    .hero-visual__stamp {
        bottom: 5%;
        left: 0;
        width: 84px;
        height: 84px;
        font-size: 8px;
    }

    .section-heading h2,
    .store-story h2,
    .promise h2,
    .faq h2,
    .final-cta h2 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .menu-card,
    .menu-card--large {
        min-height: 390px;
        border-radius: 28px;
    }

    .menu-card__overlay {
        padding: 22px;
    }

    .store-story__media figure {
        border-width: 8px;
        border-radius: 28px 28px 72px 28px;
    }

    .store-story__media img {
        min-height: 430px;
    }

    .store-story__time {
        right: 10px;
        min-width: 150px;
        padding: 16px 18px;
    }

    .store-facts div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .store-story__actions {
        display: grid;
    }

    .store-story__actions .button {
        width: 100%;
    }

    .promise__panel,
    .final-cta__panel {
        padding: 28px 22px;
        border-radius: 30px;
    }

    .faq-item__answer {
        padding-right: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

/* HAREKET AZALTMA */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html.js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}