/* ===============================================================
   KUAFÖR HAKAN TUTAK — Premium Editorial Theme
   Aesthetic: Refined luxury · Editorial spacing · Cinematic depth
   =============================================================== */

:root {
    /* Brand */
    --gold:        #C9A876;
    --gold-bright: #E0BE89;
    --gold-deep:   #9C7F50;
    --charcoal:    #2A2A2A;
    --ink:         #0A0A0A;
    --void:        #050505;

    /* Surface */
    --bg:          #0a0a0a;
    --bg-elevated: #121212;
    --bg-card:     #161616;
    --bg-light:    #1c1c1c;
    --line:        rgba(201, 168, 118, 0.18);
    --line-soft:   rgba(255, 255, 255, 0.06);

    /* Text */
    --text:        #f1ece5;
    --text-soft:   #b8b1a8;
    --text-mute:   #6b6660;

    /* Typography */
    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container: 1280px;
    --section-pad: clamp(4rem, 10vw, 8rem);

    /* Motion */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease-out); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }

/* ===== 3D Canvas Background ===== */
#bg-canvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

/* ===== Container ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* ===============================================================
   TOP BAR
   =============================================================== */
.top-bar {
    background: var(--void);
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.78rem;
    padding: 0.6rem 0;
    color: var(--text-soft);
    letter-spacing: 0.05em;
}
.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-soft);
}
.top-bar__item:hover { color: var(--gold); }
.top-bar__item svg { color: var(--gold); }
.top-bar__contact { display: flex; gap: 1.5rem; }

@media (max-width: 640px) {
    .top-bar__contact { gap: 1rem; }
    .top-bar { font-size: 0.7rem; }
}

/* ===============================================================
   HEADER / NAV
   =============================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--line-soft);
    transition: all .4s var(--ease-out);
}
.site-header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.brand__logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: transform .6s var(--ease-out);
}
.brand:hover .brand__logo { transform: rotate(-5deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}
.brand__tag {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-top: 0.3rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.site-nav a {
    position: relative;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-soft);
    padding: 0.5rem 0;
}
.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .4s var(--ease-out);
}
.site-nav a:hover,
.site-nav a.active { color: var(--text); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }
.site-nav a.active { color: var(--gold); }

/* Menu toggle (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 6px;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text);
    transition: all .3s var(--ease-out);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 100%);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: var(--void);
        padding: 5rem 2rem;
        transform: translateX(100%);
        transition: transform .5s var(--ease-out);
        border-left: 1px solid var(--line);
        gap: 2rem;
    }
    .site-nav.active { transform: translateX(0); }
    .site-nav a { font-size: 1.1rem; }
    .brand__name { font-size: 1.2rem; }
    .brand__tag { font-size: 0.6rem; }
}

/* ===============================================================
   BUTTONS
   =============================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all .4s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.btn--gold {
    background: var(--gold);
    color: var(--void);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,168,118,0.3);
}
.btn--outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn--outline:hover {
    background: var(--gold);
    color: var(--void);
}
.btn--sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.72rem;
}

/* ===============================================================
   HERO
   =============================================================== */
.hero {
    position: relative;
    min-height: clamp(600px, 90vh, 900px);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(201,168,118,0.08), transparent 60%),
        radial-gradient(ellipse at 70% 70%, rgba(201,168,118,0.04), transparent 60%),
        linear-gradient(180deg, transparent 0%, var(--bg) 100%);
    z-index: 0;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 6rem 0 4rem;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) .2s forwards;
}
.hero__eyebrow::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--gold);
}
.hero__title {
    font-size: clamp(2.8rem, 8vw, 6.2rem);
    font-weight: 500;
    line-height: 0.95;
    margin-bottom: 1.8rem;
    color: var(--text);
    letter-spacing: -0.02em;
}
.hero__title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: heroWord 1s var(--ease-out) forwards;
}
.hero__title .word:nth-child(1) { animation-delay: .3s; }
.hero__title .word:nth-child(2) { animation-delay: .45s; }
.hero__title .word:nth-child(3) { animation-delay: .6s; color: var(--gold); font-style: italic; font-weight: 400; }
.hero__title .word:nth-child(4) { animation-delay: .75s; }

.hero__sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-soft);
    max-width: 580px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 1s forwards;
}
.hero__cta {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 1.2s forwards;
}

/* Hero decorative big "HT" */
.hero__monogram {
    position: absolute;
    right: -8vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(20rem, 50vw, 45rem);
    font-weight: 500;
    color: rgba(201, 168, 118, 0.05);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    letter-spacing: -0.05em;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-mute);
    opacity: 0;
    animation: fadeUp .9s var(--ease-out) 1.6s forwards;
    z-index: 5;
}
.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroWord {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* ===============================================================
   SECTIONS
   =============================================================== */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}
.section--bg-elevated { background: var(--bg-elevated); }
.section--bg-card { background: var(--bg-card); }

.section-header {
    margin-bottom: 4rem;
    max-width: 720px;
}
.section-header--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}
.section-header--center .eyebrow {
    justify-content: center;
}
.section-header--center .eyebrow::before { display: none; }
.section-header--center .eyebrow::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    margin-bottom: 1.2rem;
    color: var(--text);
}
.section-title em {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}
.section-lead {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.8;
}

/* ===============================================================
   FEATURES
   =============================================================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    background: var(--line-soft);
    border: 1px solid var(--line-soft);
}
.feature {
    background: var(--bg);
    padding: 3rem 2.5rem;
    transition: all .5s var(--ease-out);
    position: relative;
    overflow: hidden;
}
.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201,168,118,0.06), transparent 70%);
    opacity: 0;
    transition: opacity .5s var(--ease-out);
}
.feature:hover { background: var(--bg-elevated); transform: translateY(-4px); }
.feature:hover::before { opacity: 1; }

.feature__num {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
}
.feature__icon {
    width: 50px;
    height: 50px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform .5s var(--ease-out);
}
.feature:hover .feature__icon { transform: scale(1.1) rotate(-5deg); }

.feature__title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}
.feature__text {
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===============================================================
   ABOUT
   =============================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
}

.about-image {
    position: relative;
    aspect-ratio: 4/5;
}
.about-image__bg {
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold);
    transform: translate(20px, 20px);
    transition: transform .6s var(--ease-out);
}
.about-image:hover .about-image__bg { transform: translate(30px, 30px); }
.about-image__img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, var(--charcoal), var(--ink));
    filter: grayscale(0.3);
    transition: filter .6s var(--ease-out);
}
.about-image:hover .about-image__img { filter: grayscale(0); }

.about-image__monogram {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.about-image__monogram img {
    width: 80%;
    filter: brightness(0) saturate(100%);
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about-stat__num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.about-stat__label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-soft);
}

/* ===============================================================
   SERVICES
   =============================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all .5s var(--ease-out);
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .6s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: var(--gold);
    background: var(--bg-elevated);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform .6s var(--ease-out);
}
.service-card:hover .service-card__icon {
    transform: rotateY(360deg) scale(1.1);
}

.service-card__title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--text);
}
.service-card__desc {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.service-card__price {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    width: 100%;
}

/* ===============================================================
   GALLERY
   =============================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}
.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-elevated);
    transition: transform .4s var(--ease-out);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-out);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity .4s var(--ease-out);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}
.gallery-item__cat {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.gallery-item__zoom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: all .4s var(--ease-out);
}
.gallery-item:hover .gallery-item__zoom {
    opacity: 1;
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.97);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 2rem;
}
.lightbox.active {
    display: flex;
    animation: fadeIn .3s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 1px solid var(--gold);
}
.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: var(--gold);
    color: var(--ink);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 1.3rem;
    transition: background .3s;
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold-bright); }

.gallery-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-mute);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
}

/* ===============================================================
   CONTACT
   =============================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info__item {
    display: flex;
    gap: 1.2rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: flex-start;
}
.contact-info__item:last-child { border-bottom: none; }
.contact-info__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-elevated);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all .4s var(--ease-out);
}
.contact-info__item:hover .contact-info__icon {
    background: var(--gold);
    color: var(--ink);
}
.contact-info__label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.contact-info__value {
    font-size: 1.05rem;
    color: var(--text);
}

.contact-form {
    background: var(--bg-card);
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--line-soft);
}
.form-row { margin-bottom: 1.3rem; }
.form-row label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.form-row input,
.form-row textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 0;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color .3s;
}
.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}
.form-row textarea { resize: vertical; min-height: 100px; }

.map-wrap {
    border: 1px solid var(--line);
    overflow: hidden;
    height: 400px;
    margin-top: 4rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.5) brightness(0.85); }

/* ===============================================================
   CTA BANNER
   =============================================================== */
.cta-banner {
    padding: var(--section-pad) 0;
    background:
        linear-gradient(135deg, var(--void) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before {
    content: 'HT';
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(15rem, 30vw, 30rem);
    color: rgba(201,168,118,0.04);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
}
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text);
}
.cta-banner__title em { color: var(--gold); font-style: italic; }
.cta-banner__sub {
    color: var(--text-soft);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* ===============================================================
   PAGE HEADER (alt sayfalar)
   =============================================================== */
.page-hero {
    position: relative;
    padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 6rem);
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line-soft);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(201,168,118,0.08), transparent 60%);
    z-index: 0;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 1rem;
    color: var(--text);
}
.page-hero__sub {
    color: var(--text-soft);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.page-hero__crumbs {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-mute);
    margin-top: 1.5rem;
}
.page-hero__crumbs a { color: var(--gold); }

/* ===============================================================
   FOOTER
   =============================================================== */
.site-footer {
    background: var(--void);
    border-top: 1px solid var(--line-soft);
    padding: clamp(4rem, 8vw, 6rem) 0 2rem;
    position: relative;
    overflow: hidden;
}
.footer-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(201,168,118,0.06), transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img { margin-bottom: 1.5rem; }
.footer-text { color: var(--text-soft); font-size: 0.95rem; line-height: 1.8; }

.footer-title {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links li, .footer-info li {
    margin-bottom: 0.9rem;
    color: var(--text-soft);
    font-size: 0.92rem;
}
.footer-links a:hover, .footer-info a:hover { color: var(--gold); }
.footer-info li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
}
.footer-info li svg { color: var(--gold); flex-shrink: 0; margin-top: 4px; }

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-soft);
    transition: all .3s var(--ease-out);
}
.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-soft);
    text-align: center;
    color: var(--text-mute);
    font-size: 0.82rem;
}
.footer-keywords {
    margin-top: 0.6rem;
    font-size: 0.72rem;
    color: var(--text-mute);
    opacity: 0.6;
}

/* ===============================================================
   FLOATING WHATSAPP
   =============================================================== */
.floating-wa {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: waPulse 2.5s ease-in-out infinite;
}
.floating-wa:hover { transform: scale(1.1); }
@keyframes waPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 50px rgba(37, 211, 102, 0.7); }
}

/* ===============================================================
   ALERTS / FLASH
   =============================================================== */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid;
    font-size: 0.92rem;
}
.alert--success { background: rgba(52,168,83,0.1); border-color: #34a853; color: #b9efc6; }
.alert--error { background: rgba(234,67,53,0.1); border-color: #ea4335; color: #f8c5c1; }
.alert--info { background: rgba(201,168,118,0.1); border-color: var(--gold); color: var(--text); }

/* ===============================================================
   REVEAL ANIMATIONS
   =============================================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ===============================================================
   UTILITIES
   =============================================================== */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }

/* ===============================================================
   PRINT
   =============================================================== */
@media print {
    .site-header, .site-footer, .top-bar, .floating-wa, #bg-canvas { display: none; }
    body { color: #000; background: #fff; }
}

/* ===============================================================
   İLETİŞİM SAYFASI
   =============================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.contact-card {
    background: linear-gradient(180deg, rgba(201,168,118,.04), rgba(201,168,118,.01));
    border: 1px solid rgba(201,168,118,.15);
    padding: 36px 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform .5s ease, border-color .4s, background .4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,168,118,.45);
    background: linear-gradient(180deg, rgba(201,168,118,.08), rgba(201,168,118,.02));
}
.contact-card-icon {
    width: 56px; height: 56px;
    color: var(--gold);
    margin-bottom: 8px;
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .04em;
    margin: 4px 0;
    color: #fff;
}
.contact-card p {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.contact-card-action {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Contact form layout */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}
.contact-intro h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
    margin: 18px 0 18px;
    color: #fff;
}
.contact-intro .lead {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 36px;
}
.contact-extra {
    border-top: 1px solid rgba(201,168,118,.15);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-extra-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-extra-label {
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
}
.contact-extra-item a {
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: .02em;
    transition: color .3s;
}
.contact-extra-item a:hover { color: #fff; }

/* Form */
.contact-form {
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(201,168,118,.15);
    padding: 44px 40px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: rgba(0,0,0,.4);
    border: 1px solid rgba(201,168,118,.2);
    color: #fff;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color .3s, background .3s;
    border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0,0,0,.6);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-block { width: 100%; }
.form-note {
    color: rgba(255,255,255,.4);
    font-size: 12px;
    margin-top: 18px;
    text-align: center;
}

/* Map */
.map-wrap {
    border: 1px solid rgba(201,168,118,.2);
    overflow: hidden;
    filter: grayscale(.5) contrast(.95);
    transition: filter .6s;
}
.map-wrap:hover { filter: grayscale(0) contrast(1); }
.map-wrap iframe { display: block; width: 100%; }

/* ===============================================================
   404 SAYFASI
   =============================================================== */
.error-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}
.error-wrap {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 180px;
    font-weight: 300;
    line-height: 1;
    color: var(--gold);
    opacity: .9;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}
.error-wrap h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin: 14px 0 18px;
}
.error-wrap .lead {
    color: rgba(255,255,255,.65);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 32px;
}
.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===============================================================
   RESPONSIVE (iletişim & 404)
   =============================================================== */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .contact-intro h2 { font-size: 34px; }
    .contact-form { padding: 30px 24px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .error-code { font-size: 120px; }
    .error-wrap h1 { font-size: 30px; }
}
@media (max-width: 560px) {
    .contact-grid { grid-template-columns: 1fr; }
    .error-code { font-size: 90px; }
}
