:root {
    --bg: #faf8f5;
    --bg-alt: #f3ede6;
    --ink: #2a2220;
    --muted: #6b5e58;
    --gold: #b8956b;
    --gold-light: #d4b896;
    --gold-dark: #8a6d4a;
    --rose: #c9a09a;
    --card: #ffffff;
    --shadow: 0 12px 40px rgba(42, 34, 32, 0.08);
    --radius: 16px;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
    --header-h: 4.5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
}

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

a {
    color: var(--gold-dark);
    text-decoration: none;
}

a:hover {
    color: var(--gold);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 149, 107, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: inherit;
}

.logo-mark {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
}

.logo-text small {
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav a:not(.btn) {
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
}

.nav a:not(.btn):hover {
    color: var(--gold-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid transparent;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(184, 149, 107, 0.35);
}

.btn-gold:hover {
    box-shadow: 0 6px 28px rgba(184, 149, 107, 0.45);
    color: #fff;
}

.btn-outline {
    border-color: var(--gold);
    color: var(--gold-dark) !important;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(184, 149, 107, 0.1);
}

.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 1.05rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 90% 10%, rgba(201, 160, 154, 0.25), transparent),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(184, 149, 107, 0.2), transparent),
        linear-gradient(180deg, #fff 0%, var(--bg) 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(184, 149, 107, 0.15);
    color: var(--gold-dark);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-dark);
}

.hero-lead {
    max-width: 32rem;
    margin: 0 0 1.75rem;
    color: var(--muted);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(184, 149, 107, 0.2);
    padding-top: 1.75rem;
}

.hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--gold-dark);
    line-height: 1.2;
}

.hero-stats li {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

.section-head.align-left {
    text-align: left;
    margin-left: 0;
}

.eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-head h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 600;
}

.section-desc {
    margin: 0;
    color: var(--muted);
}

.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Services */
.grid.services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service {
    padding: 1.75rem;
    transition: transform 0.2s;
}

.service:hover {
    transform: translateY(-4px);
}

.service-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.75rem;
}

.service h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.service p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    padding: 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    background: var(--bg-alt);
}

.gallery-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(42, 34, 32, 0.72));
    pointer-events: none;
}

.gallery-item figcaption {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
}

.gallery-item--wide img {
    object-position: center center;
}

/* Prices */
.price-table {
    max-width: 520px;
    margin: 0 auto;
    padding: 0.5rem 0;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(184, 149, 107, 0.12);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row strong {
    color: var(--gold-dark);
    white-space: nowrap;
}

.price-note {
    text-align: center;
    margin: 1rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

/* Randevu */
.randevu-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
    overflow: hidden;
}

.randevu-form {
    padding: 2rem;
}

.randevu-info {
    padding: 2rem;
    background: linear-gradient(160deg, rgba(184, 149, 107, 0.12), rgba(201, 160, 154, 0.18));
    border-left: 1px solid rgba(184, 149, 107, 0.15);
}

.randevu-info h3 {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.randevu-info ol {
    margin: 0 0 1.25rem;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.randevu-info li + li {
    margin-top: 0.45rem;
}

.randevu-info-note {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.form-row {
    margin-bottom: 1.25rem;
}

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

.form-row label,
.form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--muted);
}

.randevu-form input,
.randevu-form select,
.randevu-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(184, 149, 107, 0.35);
    border-radius: 12px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.randevu-form input:focus,
.randevu-form select:focus,
.randevu-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 149, 107, 0.18);
}

.slot-aciklama {
    margin: 0 0 0.5rem;
    font-size: 0.82rem;
    color: var(--muted);
}

.slot-mesaj {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr));
    gap: 0.5rem;
}

.slot-btn {
    padding: 0.55rem 0.35rem;
    border: 1px solid rgba(184, 149, 107, 0.35);
    border-radius: 10px;
    background: #fff;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.slot-btn:hover:not(:disabled) {
    border-color: var(--gold);
    background: rgba(184, 149, 107, 0.08);
}

.slot-btn.is-selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: #fff;
}

.slot-btn.is-dolu {
    background: rgba(192, 57, 43, 0.12);
    color: #a93226;
    border-color: rgba(192, 57, 43, 0.35);
    cursor: not-allowed;
    position: relative;
}

.slot-btn.is-dolu::after {
    content: "Dolu";
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    margin-top: 0.15rem;
    text-decoration: none;
}

.randevu-sonuc {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.92rem;
}

.randevu-sonuc--ok {
    background: rgba(39, 174, 96, 0.12);
    color: #1e6b42;
    border: 1px solid rgba(39, 174, 96, 0.25);
}

.randevu-sonuc--hata {
    background: rgba(192, 57, 43, 0.1);
    color: #922b21;
    border: 1px solid rgba(192, 57, 43, 0.2);
}

/* CTA */
.section-cta {
    padding: 3rem 0;
}

.cta-box {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--ink), #4a3f3c);
    color: #fff;
}

.cta-box h2 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
}

.cta-box p {
    margin: 0 0 1.5rem;
    opacity: 0.85;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.contact-list li {
    margin-bottom: 1.25rem;
}

.contact-list strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.map-wrap {
    overflow: hidden;
    padding: 0;
}

.map-wrap iframe {
    width: 100%;
    height: 320px;
    border: 0;
    display: block;
}

.map-fallback {
    margin: 0;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.88rem;
    background: var(--bg-alt);
}

/* Footer */
.site-footer {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(184, 149, 107, 0.15);
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.88rem;
}

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

/* Float call */
.float-call {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 24px rgba(39, 174, 96, 0.45);
    animation: pulse-call 2.5s ease infinite;
}

@keyframes pulse-call {
    0%, 100% { box-shadow: 0 6px 24px rgba(39, 174, 96, 0.45); }
    50% { box-shadow: 0 6px 32px rgba(39, 174, 96, 0.65); }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: var(--bg);
        border-bottom: 1px solid rgba(184, 149, 107, 0.15);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.25s, opacity 0.25s;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta {
        text-align: center;
    }

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

    .gallery-item--tall {
        grid-row: span 1;
    }

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

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

    .randevu-layout {
        grid-template-columns: 1fr;
    }

    .randevu-info {
        border-left: none;
        border-top: 1px solid rgba(184, 149, 107, 0.15);
    }

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

    .hero-stats {
        gap: 1.25rem;
    }
}
