/* =========================================================================
   AKGÜL PERDE — Stylesheet
   "Sıcak ev" • Editöryel sıcaklık tasarım sistemi
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root {
    /* Colors - Sıcak ev palette */
    --bg:           #FAF6F0;   /* warm white - body */
    --bg-cream:     #F4ECDC;   /* cream surface - section bg */
    --bg-deep:      #EFE5D2;   /* deeper cream for emphasis */

    --terracotta:        #C66B3D;
    --terracotta-dark:   #9F4F26;
    --terracotta-light:  #E89A75;
    --terracotta-soft:   rgba(198, 107, 61, 0.08);

    --sage:        #87977C;
    --sage-dark:   #5E6E54;
    --sage-light:  #B5C2AC;
    --sage-soft:   rgba(135, 151, 124, 0.10);

    --ink:         #2A2823;        /* deep warm dark - headings */
    --text:        #3D3833;        /* body text */
    --text-muted:  #6B6259;        /* secondary text */
    --text-subtle: #8E867D;        /* tertiary - captions */

    --border:        rgba(42, 40, 35, 0.10);
    --border-strong: rgba(42, 40, 35, 0.20);
    --border-cream:  rgba(212, 192, 159, 0.50);

    --white:  #FFFFFF;
    --black:  #1A1814;

    /* Spacing scale */
    --space-1:  4px;
    --space-2:  8px;
    --space-3:  12px;
    --space-4:  16px;
    --space-5:  24px;
    --space-6:  32px;
    --space-7:  48px;
    --space-8:  64px;
    --space-9:  96px;
    --space-10: 128px;

    /* Typography */
    --font-display: 'Fraunces', 'Georgia', 'Times New Roman', serif;
    --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Container */
    --container:       1240px;
    --container-narrow: 880px;
    --container-text:   720px;

    /* Radius */
    --radius-sm: 4px;
    --radius:    8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    /* Shadow - subtle warm */
    --shadow-xs:  0 1px 2px rgba(42, 40, 35, 0.04);
    --shadow-sm:  0 2px 8px rgba(42, 40, 35, 0.06);
    --shadow-md:  0 8px 24px rgba(42, 40, 35, 0.08);
    --shadow-lg:  0 16px 48px rgba(42, 40, 35, 0.12);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-index */
    --z-header:    100;
    --z-fab:       200;
    --z-modal:     1000;
}

/* -------------------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img, picture, video, svg { max-width: 100%; height: auto; display: block; }

a {
    color: var(--terracotta-dark);
    text-decoration: none;
    transition: color 180ms var(--ease);
}
a:hover { color: var(--terracotta); }

button { font-family: inherit; cursor: pointer; }

::selection {
    background: var(--terracotta);
    color: var(--white);
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--ink);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
}
.skip-link:focus { top: 0; }

/* -------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-4);
    font-feature-settings: "ss01", "kern";
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.03em; font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 400;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede {
    font-size: 1.25rem;
    line-height: 1.55;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 56ch;
}

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta-dark);
}
.label--sage { color: var(--sage-dark); }
.label--muted { color: var(--text-subtle); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--terracotta);
    margin-bottom: var(--space-3);
}
.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--terracotta);
}

/* Decorative serif quotation mark */
.serif-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 6rem;
    line-height: 0.7;
    color: var(--terracotta);
    display: inline-block;
}

/* -------------------------------------------------------------------------
   4. LAYOUT
   ------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-5);
}
.container--narrow { max-width: var(--container-narrow); }
.container--text   { max-width: var(--container-text); }

.section {
    padding: var(--space-9) 0;
}
.section--sm { padding: var(--space-7) 0; }
.section--lg { padding: var(--space-10) 0; }

@media (max-width: 768px) {
    .section { padding: var(--space-7) 0; }
    .section--lg { padding: var(--space-8) 0; }
}

.section-header {
    max-width: 640px;
    margin: 0 auto var(--space-7);
    text-align: center;
}
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 { margin-bottom: var(--space-3); }
.section-header p { color: var(--text-muted); font-size: 1.0625rem; }

/* Section variants */
.section--cream { background: var(--bg-cream); }
.section--ink   { background: var(--ink); color: rgba(255, 255, 255, 0.85); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--terracotta { background: var(--terracotta); color: var(--white); }
.section--terracotta h1, .section--terracotta h2, .section--terracotta h3 { color: var(--white); }

/* -------------------------------------------------------------------------
   5. BUTTONS
   ------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    border: 1.5px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: all 180ms var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.btn--primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn--whatsapp:hover {
    background: #1EBE5B;
    border-color: #1EBE5B;
    color: var(--white);
}

.btn--lg { padding: 18px 36px; font-size: 1rem; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

/* Link with arrow */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    color: var(--terracotta-dark);
    border-bottom: 1px solid transparent;
    transition: all 180ms var(--ease);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform 180ms var(--ease); }
.link-arrow:hover { color: var(--terracotta); }
.link-arrow:hover svg { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   6. HEADER
   ------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background: rgba(250, 246, 240, 0.9);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    gap: var(--space-5);
}

.brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
}
.brand-mark {
    width: 40px;
    height: 40px;
    background: var(--ink);
    color: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.brand-tag {
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}
.nav a {
    color: var(--ink);
    font-size: 0.9375rem;
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
    transition: color 180ms var(--ease);
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 1.5px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms var(--ease-out);
}
.nav a:hover, .nav a.is-active { color: var(--terracotta-dark); }
.nav a.is-active::after, .nav a:hover::after { transform: scaleX(1); }

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--ink);
    font-weight: 600;
    font-size: 0.9375rem;
}
.header-phone svg { width: 18px; height: 18px; color: var(--terracotta); }

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--ink);
    align-items: center;
    justify-content: center;
}

@media (max-width: 960px) {
    .nav { display: none; }
    .header-cta .header-phone { display: none; }
    .menu-toggle { display: inline-flex; }

    .nav.is-open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        background: var(--bg);
        padding: var(--space-5);
        gap: var(--space-4);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }
}

/* -------------------------------------------------------------------------
   7. HERO
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: var(--space-9) 0 var(--space-10);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 90% 10%, rgba(198, 107, 61, 0.06), transparent 40%),
        radial-gradient(circle at 5% 80%, rgba(135, 151, 124, 0.06), transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-8);
    align-items: center;
    position: relative;
}

.hero-content { max-width: 580px; }

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    margin-bottom: var(--space-5);
    font-weight: 400;
    color: var(--ink);
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: var(--space-6);
    max-width: 52ch;
    font-weight: 300;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-top: var(--space-6);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
}
.hero-trust .stars { color: var(--terracotta); letter-spacing: 0.1em; font-size: 0.875rem; }

/* Hero visual / image card */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-cream);
    box-shadow: var(--shadow-lg);
}
.hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-visual-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-deep) 100%);
    color: var(--terracotta);
}

.hero-ribbon {
    position: absolute;
    top: var(--space-5);
    right: -12px;
    background: var(--terracotta);
    color: var(--white);
    padding: var(--space-2) var(--space-5);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.hero-ribbon::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    border: 6px solid transparent;
    border-top-color: var(--terracotta-dark);
    border-right-color: var(--terracotta-dark);
}

.hero-card {
    position: absolute;
    bottom: var(--space-5);
    left: var(--space-5);
    background: var(--white);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    max-width: 280px;
}
.hero-card-num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--terracotta);
    line-height: 1;
}
.hero-card-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero { padding: var(--space-7) 0 var(--space-8); }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-7);
    }
    .hero-visual { aspect-ratio: 4 / 3; max-height: 520px; }
}

/* -------------------------------------------------------------------------
   8. TRUST STRIP (stats)
   ------------------------------------------------------------------------- */
.trust-strip {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.85);
    padding: var(--space-6) 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    text-align: center;
}
.trust-item {
    padding: var(--space-3) var(--space-4);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-item:last-child { border-right: none; }

.trust-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--terracotta-light);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-2);
}
.trust-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: var(--space-4); }
    .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* -------------------------------------------------------------------------
   9. SERVICE CARDS (hand-numbered)
   ------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-5);
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all 240ms var(--ease);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 280ms var(--ease-out);
}
.service-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--terracotta);
    margin-bottom: var(--space-3);
    letter-spacing: 0.04em;
}

.service-card-image {
    width: calc(100% + var(--space-6) * 2);
    margin: calc(var(--space-6) * -1) calc(var(--space-6) * -1) var(--space-4);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--bg-cream);
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 320ms var(--ease);
}
.service-card:hover .service-card-image img { transform: scale(1.04); }

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-3);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-5);
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--terracotta-dark);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
}
.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 180ms var(--ease);
}
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   10. PROCESS STEPS
   ------------------------------------------------------------------------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    counter-reset: step;
}
.process-step {
    position: relative;
    padding: var(--space-5) var(--space-4);
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--border);
}
.process-step::before {
    counter-increment: step;
    content: "0" counter(step);
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 2.25rem;
    line-height: 1;
    color: var(--terracotta);
    margin-bottom: var(--space-3);
    opacity: 0.85;
}
.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-2);
    color: var(--ink);
}
.process-step p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
}
@media (max-width: 480px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   11. TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-5);
}
.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    position: relative;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-3);
    right: var(--space-5);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 5rem;
    line-height: 1;
    color: var(--terracotta);
    opacity: 0.18;
}
.testimonial-content {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: var(--space-4);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 300;
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--terracotta-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.125rem;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
    line-height: 1.2;
}
.testimonial-location {
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.testimonial-stars {
    color: var(--terracotta);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
    font-size: 0.875rem;
}

/* -------------------------------------------------------------------------
   12. SIVAS COVERAGE / NEIGHBORHOOD CHIPS
   ------------------------------------------------------------------------- */
.neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
    max-width: 760px;
    margin: 0 auto;
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    color: var(--text);
    font-weight: 500;
    transition: all 160ms var(--ease);
}
.chip:hover {
    border-color: var(--terracotta);
    color: var(--terracotta-dark);
    transform: translateY(-1px);
}
.chip svg { width: 14px; height: 14px; color: var(--terracotta); }

/* Public gallery grid */
.public-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-4);
}
.public-gallery-item {
    margin: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 240ms var(--ease);
}
.public-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.public-gallery-item a {
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--bg-cream);
    overflow: hidden;
}
.public-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms var(--ease);
}
.public-gallery-item:hover img { transform: scale(1.04); }
.public-gallery-item figcaption {
    padding: var(--space-3) var(--space-4);
    line-height: 1.3;
}
.public-gallery-item figcaption strong {
    display: block;
    color: var(--ink);
    font-size: 0.9375rem;
    margin-bottom: 2px;
}
.public-gallery-item figcaption small {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

/* -------------------------------------------------------------------------
   13. CTA SECTION
   ------------------------------------------------------------------------- */
.cta {
    background: var(--terracotta);
    color: var(--white);
    text-align: center;
    padding: var(--space-9) var(--space-5);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08), transparent 50%);
    pointer-events: none;
}
.cta-content { position: relative; max-width: 720px; margin: 0 auto; }
.cta h2 { color: var(--white); margin-bottom: var(--space-4); font-weight: 400; }
.cta p { color: rgba(255, 255, 255, 0.92); margin-bottom: var(--space-6); font-size: 1.125rem; }

.cta-phone {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: var(--space-6);
    display: inline-block;
    letter-spacing: 0.02em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: var(--space-2);
    transition: border-color 180ms var(--ease);
}
.cta-phone:hover { color: var(--white); border-bottom-color: var(--white); }

.cta .btn--primary {
    background: var(--white);
    color: var(--terracotta-dark);
    border-color: var(--white);
}
.cta .btn--primary:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.cta .btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, 0.4); }
.cta .btn--ghost:hover { background: var(--white); color: var(--terracotta-dark); border-color: var(--white); }

/* -------------------------------------------------------------------------
   14. FOOTER
   ------------------------------------------------------------------------- */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.75);
    padding: var(--space-9) 0 var(--space-5);
    font-size: 0.9375rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-7);
    margin-bottom: var(--space-7);
}

.footer-brand .brand-mark {
    background: var(--terracotta);
    color: var(--white);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: rgba(255, 255, 255, 0.5); }

.footer-about {
    margin-top: var(--space-4);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    font-size: 0.9375rem;
    max-width: 320px;
}

.footer-col h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col li { margin-bottom: var(--space-3); }
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 160ms var(--ease);
    text-decoration: none;
}
.footer-col a:hover { color: var(--terracotta-light); }

.footer-contact-item {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    align-items: flex-start;
}
.footer-contact-item svg {
    width: 16px; height: 16px;
    color: var(--terracotta-light);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-social {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 180ms var(--ease);
}
.footer-social a:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------------------------
   15. WHATSAPP / PHONE FAB
   ------------------------------------------------------------------------- */
.fab-stack {
    position: fixed;
    bottom: var(--space-5);
    right: var(--space-5);
    z-index: var(--z-fab);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform 200ms var(--ease-spring);
    text-decoration: none;
    position: relative;
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.08); }
.fab--whatsapp { background: #25D366; }
.fab--whatsapp:hover { background: #1EBE5B; color: var(--white); }
.fab--phone { background: var(--terracotta); }
.fab--phone:hover { background: var(--terracotta-dark); color: var(--white); }

.fab-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: fab-pulse 2s infinite;
}
@keyframes fab-pulse {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.5); }
}

@media (max-width: 600px) {
    .fab { width: 52px; height: 52px; }
    .fab svg { width: 24px; height: 24px; }
}

/* -------------------------------------------------------------------------
   16. FORMS
   ------------------------------------------------------------------------- */
.form-group {
    margin-bottom: var(--space-4);
}
.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ink);
}
.form-label .req { color: var(--terracotta); }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--ink);
    transition: border-color 160ms var(--ease);
}
.form-control:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px var(--terracotta-soft);
}
textarea.form-control { min-height: 140px; resize: vertical; }

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
}

.alert {
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius);
    margin-bottom: var(--space-5);
    font-size: 0.9375rem;
    border: 1px solid;
}
.alert--success { background: var(--sage-soft); color: var(--sage-dark); border-color: var(--sage); }
.alert--error   { background: rgba(220, 53, 69, 0.08); color: #B00020; border-color: rgba(220, 53, 69, 0.3); }

/* -------------------------------------------------------------------------
   17. BREADCRUMBS
   ------------------------------------------------------------------------- */
.breadcrumbs {
    padding: var(--space-4) 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.breadcrumbs ol {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}
.breadcrumbs li { display: flex; align-items: center; gap: var(--space-2); }
.breadcrumbs li:not(:last-child)::after {
    content: '/';
    color: var(--text-subtle);
    margin-left: var(--space-2);
}
.breadcrumbs a { color: var(--text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta-dark); }
.breadcrumbs li:last-child { color: var(--ink); font-weight: 500; }

/* -------------------------------------------------------------------------
   18. CONTENT (article/prose styling)
   ------------------------------------------------------------------------- */
.prose { max-width: 65ch; }
.prose h2 { margin-top: var(--space-7); }
.prose h3 { margin-top: var(--space-6); }
.prose p, .prose ul, .prose ol { font-size: 1.0625rem; line-height: 1.75; color: var(--text); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: var(--space-4); }
.prose li { margin-bottom: var(--space-2); }

/* -------------------------------------------------------------------------
   19. CONTACT PAGE
   ------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-7);
    align-items: start;
}
@media (max-width: 800px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
    display: flex;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item svg {
    width: 24px; height: 24px;
    color: var(--terracotta);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-item h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}
.contact-info-item p { color: var(--ink); margin: 0; font-weight: 500; }
.contact-info-item a { color: var(--ink); }
.contact-info-item a:hover { color: var(--terracotta-dark); }

.map-embed {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-cream);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* -------------------------------------------------------------------------
   20. SERVICE DETAIL
   ------------------------------------------------------------------------- */
.service-hero {
    background: var(--bg-cream);
    padding: var(--space-7) 0 var(--space-8);
    position: relative;
}
.service-hero h1 { max-width: 16ch; margin-bottom: var(--space-4); }
.service-hero .lede { max-width: 56ch; }

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-5);
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0 0;
}
.feature {
    padding: var(--space-5);
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.feature-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--terracotta-soft);
    color: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
}
.feature h4 { margin-bottom: var(--space-2); font-size: 1.0625rem; }
.feature p { color: var(--text-muted); margin: 0; font-size: 0.9375rem; }

/* FAQ accordion */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--space-5) 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    line-height: 1.3;
}
.faq-q::before {
    content: 'S.';
    color: var(--terracotta);
    font-style: italic;
    flex-shrink: 0;
    font-weight: 400;
}
.faq-a {
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    padding-left: 28px;
}

/* -------------------------------------------------------------------------
   21. UTILITIES & ANIMATIONS
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

.fade-up-delay-1 { transition-delay: 80ms; }
.fade-up-delay-2 { transition-delay: 160ms; }
.fade-up-delay-3 { transition-delay: 240ms; }
.fade-up-delay-4 { transition-delay: 320ms; }

/* -------------------------------------------------------------------------
   22. PRINT
   ------------------------------------------------------------------------- */
@media print {
    .site-header, .site-footer, .fab-stack, .cta { display: none; }
    body { background: white; color: black; }
    a { text-decoration: underline; color: black; }
}

/* =========================================================================
   LIGHTBOX (galeri görüntüleyici)
   ========================================================================= */

.public-gallery-item .lightbox-trigger {
    position: relative;
    display: block;
    cursor: zoom-in;
    overflow: hidden;
}
.public-gallery-item .lightbox-trigger img {
    transition: transform 320ms var(--ease);
    display: block;
    width: 100%;
}
.public-gallery-item .lightbox-trigger:hover img {
    transform: scale(1.04);
}

.lightbox-zoom-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 40, 35, 0.4);
    opacity: 0;
    transition: opacity 240ms var(--ease);
    color: var(--white);
    pointer-events: none;
}
.lightbox-zoom-icon svg {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 12px;
    backdrop-filter: blur(4px);
}
.public-gallery-item .lightbox-trigger:hover .lightbox-zoom-icon { opacity: 1; }

/* Lightbox modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 19, 17, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 240ms var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open {
    opacity: 1;
}

.lightbox-stage {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}
.lightbox-image {
    max-width: 100%;
    max-height: calc(100vh - 140px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 200ms var(--ease);
}
.lightbox-image.is-loaded { opacity: 1; }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 200ms var(--ease);
    backdrop-filter: blur(8px);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg {
    width: 22px;
    height: 22px;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: scale(1.05);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 24px;
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    max-width: calc(100% - 160px);
}
.lightbox-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    margin-bottom: 2px;
}
.lightbox-subtitle {
    display: block;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}
.lightbox-counter {
    display: inline-block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}

/* Body scroll lock when lightbox open */
body.lightbox-open {
    overflow: hidden;
}

/* Mobile */
@media (max-width: 600px) {
    .lightbox { padding: 12px; }
    .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
    .lightbox-prev  { left: 8px;  width: 40px; height: 40px; }
    .lightbox-next  { right: 8px; width: 40px; height: 40px; }
    .lightbox-caption { bottom: 16px; padding: 8px 16px; font-size: 0.8125rem; max-width: calc(100% - 100px); }
    .lightbox-stage { max-height: calc(100vh - 80px); }
    .lightbox-image { max-height: calc(100vh - 80px); }
}
