:root {
    --night: #16213A;
    --coral: #FF6B35;
    --blue: #1F6FD8;
    --gold: #FFC531;
    --paper: #F6F3EC;
    --surface: #FFFEFB;
    --ink: #152238;
    --muted: #5C6878;
    --line: rgba(21, 34, 56, .12);
    --font-display: "Space Grotesk", "Arial Black", "Trebuchet MS", sans-serif;
    --font-body: "Inter", "Gill Sans", "Trebuchet MS", sans-serif;
    --ease-pop: cubic-bezier(.34, 1.56, .64, 1);
    --ease-ins: cubic-bezier(.22, 1, .36, 1);
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow-sm: 0 6px 18px rgba(21, 34, 56, .08);
    --shadow-md: 0 14px 40px rgba(21, 34, 56, .12);
    --shadow-lg: 0 20px 60px rgba(21, 34, 56, .18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

section[id] {
    scroll-margin-top: 90px;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-top: 0;
}

h1 {
    font-size: clamp(3rem, 11vw, 6.75rem);
    font-weight: 700;
    letter-spacing: -.055em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: .6rem;
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    margin-bottom: .4rem;
}

p {
    margin-top: 0;
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
    border-radius: 4px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.25rem;
    border-radius: 999px;
    border: 2px solid transparent;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: .95rem;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform .45s var(--ease-ins), box-shadow .45s var(--ease-ins), background .3s, color .3s, border-color .3s;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(-1px) scale(.98);
}

.btn--primary {
    background: var(--coral);
    color: #201409;
    box-shadow: 0 10px 24px rgba(255, 107, 53, .18);
}

.btn--primary:hover {
    background: #e85a27;
    color: #fff;
}

.btn--blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(31, 99, 216, .18);
}

.btn--blue:hover {
    background: #1556bd;
}

.btn--gold {
    background: var(--gold);
    color: #211602;
}

.btn--gold:hover {
    box-shadow: var(--shadow-md);
}

.btn--block {
    width: 100%;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: var(--coral);
    text-decoration: none;
    transition: gap .35s var(--ease-ins), color .3s;
}

.link-btn:hover {
    gap: .85rem;
    color: #e85a1c;
}

.link-btn span {
    font-size: 1.2rem;
}

/* Üst uyarı şeridi */
.notice-band {
    background: #08111F;
    color: #C8D2E1;
    text-align: center;
    padding: .6rem 1rem;
    font-size: .82rem;
}

.notice-band p {
    margin: 0;
}

.notice-band strong {
    color: var(--gold);
}

/* Sticky header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246, 245, 239, .9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: background .4s, border-color .4s, box-shadow .4s;
}

.site-header.is-scrolled {
    background: rgba(246, 245, 239, .97);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px rgba(21, 34, 56, .08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    position: relative;
    min-height: 76px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: -.02em;
    color: var(--ink);
}

.logo__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--coral);
    color: #201409;
    box-shadow: 0 6px 18px rgba(255, 107, 53, .22);
    transform: rotate(-6deg);
    transition: transform .5s var(--ease-pop);
}

.logo em {
    font-style: normal;
    color: var(--coral);
}

.logo:hover .logo__mark {
    transform: rotate(4deg) scale(1.04);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 700;
}

.nav-links a {
    display: inline-block;
    padding: .65rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink);
    transition: background .3s, transform .3s var(--ease-ins);
}

.nav-links a:hover {
    background: rgba(255, 107, 53, .12);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    background: rgba(21, 34, 56, .08);
    border-radius: 14px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

html.js .nav-toggle {
    display: inline-flex;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 9px;
    transition: transform .4s var(--ease-pop), opacity .3s;
}

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

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

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

@media (max-width: 900px) {
    html.js .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        flex-direction: column;
        align-items: stretch;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 22px;
        box-shadow: var(--shadow-lg);
        padding: .75rem;
    }

    html.js .site-nav.is-open {
        display: flex;
    }

    html.js .site-nav a {
        padding: .95rem 1rem;
    }

    .nav-links {
        flex: 1 0 100%;
        justify-content: center;
        padding: .5rem 0;
    }
}

/* Hero */
.hero {
    padding: clamp(2rem, 7vw, 4.5rem) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -70px;
    width: 280px;
    height: 280px;
    background: var(--gold);
    border-radius: 42px;
    opacity: .4;
    transform: rotate(18deg);
    z-index: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__copy {
    max-width: 680px;
}

.hero__title {
    margin: 1rem 0 1.4rem;
}

.hero__line {
    display: block;
}

.hero__line--accent {
    color: var(--coral);
    transform: rotate(-2deg) translateX(.04em);
    display: inline-block;
}

.hero__line--small {
    font-size: clamp(1.2rem, 3vw, 2.4rem);
    letter-spacing: -.02em;
    font-weight: 500;
    border-left: 10px solid var(--gold);
    padding-left: .55rem;
    display: inline-block;
}

.hero__lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    max-width: 50ch;
    color: var(--ink);
    font-weight: 500;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.6rem;
}

.hero__actions .btn {
    flex-direction: column;
    text-align: center;
}

.hero__actions small {
    display: block;
    font-weight: 600;
    font-size: .72rem;
    opacity: .8;
    width: 100%;
}

.hero__note {
    font-size: .9rem;
    color: var(--muted);
    margin-top: 1.8rem;
}

.hero__visual {
    position: relative;
    width: min(100%, 430px);
    margin-inline: auto;
    padding: .6rem 0 2rem;
}

.hero__photo {
    margin: 0;
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    transform: rotate(2.4deg);
    transition: transform .6s var(--ease-ins), box-shadow .6s;
}

.hero__photo:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 28px 70px rgba(21, 34, 56, .2);
}

.hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__rating {
    position: absolute;
    right: -.4rem;
    bottom: 1.4rem;
    z-index: 3;
    flex-direction: column;
}

.hero__mini-card {
    position: absolute;
    left: -.6rem;
    top: 1.4rem;
    z-index: 3;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 18px;
    padding: .8rem 1.1rem;
    font-size: .86rem;
    box-shadow: 8px 8px 0 rgba(21, 34, 56, .15);
    transform: rotate(-3deg);
    transition: transform .5s var(--ease-pop);
}

.hero__mini-card:hover {
    transform: rotate(0deg) translateY(-4px);
}

/* Sticker */
.sticker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--coral);
    color: #201409;
    font-family: var(--font-display);
    font-weight: 700;
    padding: .7rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 8px 0 rgba(21, 34, 56, .16);
    transform: rotate(-4deg);
    transition: transform .5s var(--ease-pop), box-shadow .5s;
    z-index: 4;
}

.sticker:hover {
    transform: rotate(0deg) scale(1.04);
    box-shadow: 0 12px 0 rgba(21, 34, 56, .1);
}

.sticker--gold {
    background: var(--gold);
    color: #1d1a0b;
}

.sticker--orange {
    background: var(--coral);
}

.sticker span {
    font-size: .8rem;
    font-weight: 600;
}

/* Section genel */
.section-head {
    max-width: 52rem;
    margin-bottom: 2.5rem;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: .75rem;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 10px;
    background: var(--gold);
    border-radius: 999px;
    transform: rotate(-4deg);
}

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

.eyebrow--light::before {
    background: var(--coral);
}

/* Renk kodlu yol */
.path-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.path-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 720px) {
    .path-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    display: block;
    position: relative;
    background: #fff;
    border-radius: var(--radius-md);
    border-top: 8px solid var(--coral);
    padding: 1.8rem;
    text-decoration: none;
    color: var(--ink);
    box-shadow: 0 10px 0 rgba(21, 34, 56, .06);
    transition: transform .45s var(--ease-pop), box-shadow .45s;
}

.step:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 22px 44px rgba(21, 34, 56, .1);
}

.step--blue {
    border-top-color: var(--blue);
}

.step--gold {
    border-top-color: var(--gold);
}

.step__number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .85rem;
    color: var(--muted);
    display: block;
    margin-bottom: .5rem;
}

.step h3 {
    margin-bottom: .2rem;
}

.step p {
    color: var(--muted);
    font-size: .95rem;
}

.step__link {
    margin-top: 1rem;
    display: inline-block;
    font-weight: 800;
    color: var(--coral);
    border-bottom: 3px solid var(--gold);
    padding-bottom: .1rem;
}

.step--gold .step__link {
    color: #8a6a00;
}

.step--blue .step__link {
    color: var(--blue);
}

/* Hizmetler bento */
.service-section {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.service-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 760px) {
    .service-bento-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: auto;
    }

    .bento-card--wide {
        grid-column: span 4;
    }

    .bento-card--tall {
        grid-column: span 2;
        grid-row: span 2;
    }

    .bento-card--gold {
        grid-column: span 2;
    }
}

@media (max-width: 759px) {
    .bento-card--tall {
        min-height: 260px;
    }
}

.bento-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 0 rgba(21, 34, 56, .05);
    transition: transform .5s var(--ease-pop), box-shadow .5s var(--ease-ins);
}

.bento-card:hover {
    transform: translateY(-6px) rotate(.5deg);
    box-shadow: var(--shadow-md);
}

.bento-card--paper {
    background: var(--paper);
}

.bento-card--tall {
    background: var(--night);
    color: var(--paper);
}

.bento-card--tall .bento-card__tag {
    background: rgba(255, 255, 255, .1);
    color: var(--gold);
}

.bento-card--gold {
    background: var(--gold);
    color: #211806;
    border-color: transparent;
}

.bento-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.bento-card__tag {
    display: inline-block;
    background: rgba(21, 34, 56, .08);
    border-radius: 999px;
    padding: .35rem .85rem;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .03em;
    color: var(--ink);
}

.bento-card__dots {
    font-size: 1.2rem;
    letter-spacing: .25rem;
    color: var(--coral);
}

.bento-card h3 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    margin-bottom: .5rem;
}

.bento-card p {
    color: var(--muted);
    font-size: .98rem;
}

.bento-card--tall p {
    color: rgba(255, 255, 255, .72);
}

.bento-card--gold p {
    color: rgba(0, 0, 0, .68);
}

.module-placeholder {
    display: inline-block;
    margin: 1rem 0;
    padding: .4rem .9rem;
    border: 2px dashed #C7B88B;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    background: rgba(255, 255, 255, .45);
}

/* Hakkımızda */
.about-section {
    background: var(--night);
    color: var(--paper);
    padding: clamp(3rem, 7vw, 6rem) 0;
    overflow: hidden;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.8rem;
    align-items: center;
}

@media (min-width: 920px) {
    .about__inner {
        grid-template-columns: 1.05fr .95fr;
    }
}

.about__copy {
    position: relative;
    z-index: 2;
}

.about__copy h2 {
    color: #fff;
}

.about__copy h2 em {
    font-style: normal;
    color: var(--gold);
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: var(--coral);
    text-underline-offset: 8px;
}

.about__copy p {
    color: rgba(255, 255, 255, .7);
}

.about__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem;
    margin-top: 2rem;
}

.fact {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
}

.fact--wide {
    grid-column: 1 / -1;
}

.fact__value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
}

.fact--accent .fact__value {
    color: var(--gold);
}

.fact--wide .fact__value a {
    color: var(--gold);
    text-decoration: none;
}

.fact strong {
    margin-top: .8rem;
    font-size: .95rem;
}

.fact small {
    color: rgba(255, 255, 255, .6);
    font-size: .78rem;
}

.about__view {
    position: relative;
    max-width: 560px;
    margin-inline: auto;
}

.about__photo {
    margin: 0;
    border-radius: 2.2rem;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 5px solid #fff;
    box-shadow: var(--shadow-lg);
}

.about__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__sticker {
    position: absolute;
    right: -6px;
    top: 34px;
    z-index: 4;
}

.about__quote {
    position: relative;
    z-index: 5;
    background: var(--coral);
    border-radius: 18px;
    padding: 1.2rem 1.4rem;
    width: 88%;
    margin: -1.2rem auto 0;
    color: #201508;
    font-weight: 600;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .18);
    transform: rotate(-1.5deg);
    transition: transform .5s var(--ease-pop);
}

.about__quote:hover {
    transform: rotate(0deg) translateY(-5px);
}

.about__quote blockquote {
    margin: 0;
    font-size: .92rem;
}

/* Galeri */
.gallery-section {
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 720px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: minmax(260px, auto);
    }

    .gallery-item--wide {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item--gold {
        grid-column: span 2;
    }

    .gallery-item--dark {
        grid-column: span 2;
    }
}

.gallery-item {
    margin: 0;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 240px;
}

.gallery-item--wide {
    min-height: 320px;
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease-ins);
}

.gallery-item:hover img {
    transform: scale(1.04) rotate(1deg);
}

.gallery-item figcaption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    background: rgba(0, 0, 0, .72);
    color: #fff;
    border-radius: 999px;
    padding: .5rem .95rem;
    font-size: .8rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.gallery-item--gold {
    background: var(--gold);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-item--gold h3 {
    font-size: 1.6rem;
}

.gallery-item--gold p {
    color: rgba(0, 0, 0, .7);
}

.gallery-item--dark {
    background: var(--night);
    color: var(--paper);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-item--dark p {
    color: rgba(255, 255, 255, .7);
}

.gallery-item--dark .module-placeholder {
    border-color: #8a94a8;
    background: rgba(255, 255, 255, .08);
    color: var(--gold);
}

.gallery-quote {
    font-family: var(--font-display);
    font-size: 3.6rem;
    line-height: 1;
    color: rgba(0, 0, 0, .3);
}

/* İletişim */
.contact-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: clamp(3rem, 7vw, 6rem) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    border-radius: var(--radius-lg);
    min-height: 100%;
}

.contact-card--dark {
    background: var(--night);
    color: var(--paper);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contact-card--dark h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .9rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    padding: 1rem;
    text-decoration: none;
    transition: transform .4s var(--ease-pop), background .3s;
}

a.contact-item:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateX(6px);
}

.contact-item__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    background: var(--coral);
    color: #1d150a;
    border-radius: 14px;
}

.contact-item li:nth-child(2) .contact-item__icon {
    background: #25D366;
    color: #fff;
}

.contact-item--static .contact-item__icon {
    background: var(--gold);
    color: #1d150a;
}

.contact-item svg {
    display: block;
}

.contact-item small {
    display: block;
    font-size: .78rem;
    opacity: .75;
}

.contact-item strong {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.3;
    margin-top: .2rem;
}

.contact-address {
    display: block;
    margin-top: .25rem;
    font-size: .86rem;
    color: rgba(255, 255, 255, .7);
}

.contact-map {
    margin-top: 1.6rem;
    display: grid;
    gap: .8rem;
}

.contact-map small {
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
    font-size: .8rem;
}

.contact-card--form {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.form-head {
    padding: 1.8rem 1.8rem .7rem;
}

.badge {
    display: inline-block;
    background: var(--night);
    color: var(--gold);
    border-radius: 999px;
    padding: .3rem .8rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.badge--demo {
    background: var(--gold);
    color: var(--night);
}

.demo-form {
    display: grid;
    gap: 1rem;
    padding: 0 1.8rem 1.8rem;
}

.field {
    display: grid;
    gap: .35rem;
}

.field label {
    font-size: .85rem;
    font-weight: 800;
    color: var(--ink);
}

.field input,
.field textarea {
    width: 100%;
    background: #fff;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px var(--line);
    border-radius: 14px;
    padding: .85rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--ink);
    transition: box-shadow .3s, border-color .3s, transform .3s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: inset 0 0 0 1px var(--coral), 0 0 0 5px rgba(255, 107, 53, .14);
    transform: translateY(-2px);
}

.form__status {
    background: #e9f3e4;
    border: 2px solid #7ac86a;
    color: #204a13;
    border-radius: 14px;
    padding: .85rem 1rem;
    font-weight: 700;
    font-size: .88rem;
}

.form__status[hidden] {
    display: none;
}

/* Footer */
.site-footer {
    background: #0B1424;
    color: rgba(255, 255, 255, .72);
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer__inner {
    display: grid;
    gap: 1.8rem;
    align-items: start;
}

@media (min-width: 720px) {
    .footer__inner {
        grid-template-columns: 1.2fr auto 1fr;
        align-items: center;
    }
}

.footer__brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: .4rem;
}

.footer__brand em {
    font-style: normal;
    color: var(--coral);
}

.footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.footer__links a {
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: opacity .3s, transform .3s;
}

.footer__links a:hover {
    opacity: .8;
    transform: translateY(-2px);
}

.footer__legal {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
}

/* Reveal */
html.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .7s var(--ease-ins);
}

html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    html.js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Outreach demo disclosure — otomatik kaldırmayın. */
.outreach-demo-notice{position:relative;z-index:9999;width:100%;padding:8px 16px;background:#111;color:#fff;font:600 12px/1.4 Arial,sans-serif;text-align:center;letter-spacing:.01em}
