/* ═══════════════════════════════════════════════════════════════
   Mraović Psihoterapija — main.css  v1.1
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Custom Properties ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --cream:        #FAF6EF;
    --parchment:    #F2EBD8;
    --sage:         #7A9E8E;
    --sage-deep:    #3D6B58;
    --sage-muted:   #B5CFC5;
    --espresso:     #1C1208;
    --espresso-mid: #3B2A1E;
    --muted:        #7A6B60;
    --warm-accent:  #B87049;
    --warm-light:   #E8D5C4;
    --ease-spring:  cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--cream);
    color: var(--espresso);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Film grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Layout ── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad    { padding-top: 7rem; padding-bottom: 7rem; }
.section-pad-lg { padding-top: 8rem; padding-bottom: 8rem; }

/* ── Eyebrow tag ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage-deep);
    background: rgba(122, 158, 142, 0.1);
    border: 1px solid rgba(122, 158, 142, 0.22);
    border-radius: 9999px;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1.5rem;
}
.eyebrow-dark {
    color: var(--sage-muted);
    background: rgba(181, 207, 197, 0.1);
    border-color: rgba(181, 207, 197, 0.2);
}
.eyebrow-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.7;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--espresso);
    color: var(--cream);
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.6s var(--ease-spring);
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-1px); }
.btn-icon { font-size: 1rem; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--espresso);
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    border: 1px solid rgba(28, 18, 8, 0.18);
    transition: all 0.4s var(--ease-spring);
    cursor: pointer;
}
.btn-ghost:hover { border-color: var(--espresso); background: rgba(28, 18, 8, 0.04); }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
    transition: opacity 0.75s var(--ease-spring),
                transform 0.75s var(--ease-spring),
                filter 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.32s; }
.d4 { transition-delay: 0.44s; }

/* ── Mobile Menu Overlay ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(250, 246, 239, 0.96);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 400;
    color: var(--espresso);
    letter-spacing: -0.02em;
    transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--sage-deep); }

/* ── Floating Pill Nav ── */
.nav-wrapper {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 950;
    width: calc(100% - 2rem);
    max-width: 860px;
}
.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(250, 246, 239, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(28, 18, 8, 0.08);
    border-radius: 9999px;
    padding: 0.625rem 0.75rem 0.625rem 1.25rem;
    box-shadow: 0 4px 24px rgba(28, 18, 8, 0.06);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--espresso);
    letter-spacing: -0.01em;
    white-space: nowrap;
    margin-right: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--muted);
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--espresso); background: rgba(28, 18, 8, 0.05); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: var(--espresso);
    color: var(--cream);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1.125rem;
    border-radius: 9999px;
    transition: background 0.4s var(--ease-spring);
    white-space: nowrap;
}
.nav-cta:hover { background: var(--sage-deep); }
.nav-cta-icon { font-size: 0.875rem; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0.375rem;
    border-radius: 9999px;
    transition: background 0.3s;
}
.nav-hamburger:hover { background: rgba(28, 18, 8, 0.06); }
.ham-line {
    display: block;
    height: 1.5px;
    background: var(--espresso);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-spring), opacity 0.25s;
    transform-origin: center;
}
.nav-hamburger.open .ham-line:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-hamburger.open .ham-line:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 7rem 1.5rem 5rem;
}
.hero-glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: min(700px, 90vw);
    height: min(700px, 90vw);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(122, 158, 142, 0.14) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--sage-deep); }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 2.5rem;
    background: linear-gradient(to bottom, transparent, var(--muted));
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50%       { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
    align-items: center;
}
.photo-shell {
    background: rgba(122, 158, 142, 0.08);
    border: 1px solid rgba(122, 158, 142, 0.18);
    border-radius: 2.5rem;
    padding: 8px;
    aspect-ratio: 3/4;
    max-width: 360px;
    width: 100%;
}
.photo-core {
    border-radius: calc(2.5rem - 8px);
    overflow: hidden;
    height: 100%;
    background: var(--parchment);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}
.photo-silhouette-wrap {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.sil-head {
    width: 4rem; height: 4rem;
    border-radius: 50%;
    background: var(--warm-light);
}
.sil-body {
    width: 7rem; height: 5rem;
    border-radius: 3rem 3rem 0 0;
    background: var(--warm-light);
    margin-top: -0.5rem;
}
.photo-label {
    position: absolute;
    bottom: 1.25rem;
    left: 0; right: 0;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.06em;
}
.about-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--espresso);
    margin-bottom: 1.5rem;
}
.about-text h2 em { font-style: italic; color: var(--sage-deep); }
.about-text p {
    font-size: 1.0625rem;
    color: var(--espresso-mid);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1rem;
}
.cred-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}
.cred {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--espresso-mid);
    background: rgba(28, 18, 8, 0.05);
    border: 1px solid rgba(28, 18, 8, 0.08);
    border-radius: 9999px;
    padding: 0.375rem 0.875rem;
}

/* ── Method ── */
.method-wrap {
    background: var(--espresso);
    color: var(--cream);
}
.method-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 4rem;
}
.method-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 1rem;
}
.method-header h2 em { font-style: italic; color: var(--sage-muted); }
.method-header p {
    font-size: 1.0625rem;
    color: rgba(250, 246, 239, 0.6);
    font-weight: 300;
    line-height: 1.7;
}
.bento {
    display: grid;
    grid-template-columns: 5fr 7fr 7fr 5fr;
    gap: 1rem;
}
.b-5 { grid-column: span 2; }
.b-7 { grid-column: span 2; }
.mcard-shell {
    background: rgba(250, 246, 239, 0.04);
    border: 1px solid rgba(250, 246, 239, 0.1);
    border-radius: 2rem;
    padding: 6px;
    height: 100%;
    transition: all 0.55s var(--ease-spring);
}
.mcard-shell:hover {
    background: rgba(250, 246, 239, 0.07);
    border-color: rgba(181, 207, 197, 0.22);
    transform: translateY(-3px);
}
.mcard-core {
    border-radius: calc(2rem - 6px);
    background: rgba(28, 18, 8, 0.35);
    padding: 2rem 1.75rem 2.25rem;
    height: 100%;
}
.mcard-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(250, 246, 239, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}
.mcard-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 0.875rem;
}
.mcard-text {
    font-size: 0.9rem;
    color: rgba(250, 246, 239, 0.55);
    line-height: 1.75;
    font-weight: 300;
}

/* ── Process ── */
.process-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 4rem;
}
.process-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 1rem;
}
.process-header h2 em { font-style: italic; color: var(--sage-deep); }
.process-header p {
    font-size: 1.0625rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
}
.steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.step-shell {
    background: rgba(28, 18, 8, 0.03);
    border: 1px solid rgba(28, 18, 8, 0.07);
    border-radius: 2rem;
    padding: 6px;
    transition: all 0.5s var(--ease-spring);
}
.step-shell:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(28, 18, 8, 0.06);
    border-color: rgba(122, 158, 142, 0.2);
}
.step-core {
    border-radius: calc(2rem - 6px);
    background: var(--cream);
    padding: 2.25rem 2rem 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 300;
    color: rgba(28, 18, 8, 0.12);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2.5rem;
}
.step-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--espresso);
    line-height: 1.3;
    margin-bottom: 0.625rem;
}
.step-body p {
    font-size: 0.9375rem;
    color: var(--muted);
    line-height: 1.75;
    font-weight: 300;
}

/* ── Quote ── */
.quote-section {
    padding: 6rem 1.5rem;
    display: flex;
    justify-content: center;
    background: var(--parchment);
}
.quote-shell {
    background: rgba(28, 18, 8, 0.04);
    border: 1px solid rgba(28, 18, 8, 0.08);
    border-radius: 2.5rem;
    padding: 8px;
    max-width: 720px;
    width: 100%;
}
.quote-core {
    border-radius: calc(2.5rem - 8px);
    background: var(--cream);
    padding: 3.5rem 3rem;
    text-align: center;
    position: relative;
}
.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(28, 18, 8, 0.08);
    line-height: 0.6;
    display: block;
    margin-bottom: 1.5rem;
}
.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    font-style: italic;
    color: var(--espresso);
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}
.quote-attr {
    font-size: 0.875rem;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ── Contact ── */
.contact-wrap { background: var(--parchment); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}
.contact-left h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--espresso);
    margin-bottom: 1.25rem;
}
.contact-left h2 em { font-style: italic; color: var(--sage-deep); }
.contact-left > p {
    font-size: 1.0625rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.contact-items { display: flex; flex-direction: column; gap: 0.875rem; }
.c-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.9375rem;
    color: var(--espresso-mid);
    font-weight: 400;
}
.c-icon {
    width: 2.25rem; height: 2.25rem;
    border-radius: 50%;
    background: rgba(28, 18, 8, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.form-shell {
    background: rgba(28, 18, 8, 0.04);
    border: 1px solid rgba(28, 18, 8, 0.08);
    border-radius: 2rem;
    padding: 6px;
}
.form-core {
    border-radius: calc(2rem - 6px);
    background: var(--cream);
    padding: 2.25rem 2rem 2.5rem;
}

/* ── Footer ── */
footer { border-top: 1px solid rgba(28, 18, 8, 0.07); }
.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    max-width: 1160px;
    margin: 0 auto;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--espresso);
    letter-spacing: -0.01em;
}
.footer-copy {
    font-size: 0.8125rem;
    color: var(--muted);
    font-weight: 300;
}

/* ── CF7 Overrides ── */
.wpcf7-form .wpcf7-form-control-wrap { display: block; width: 100%; margin-bottom: 0.75rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.72);
    border: none;
    border-radius: calc(1rem - 3px);
    padding: 0.75rem 1.0625rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    color: var(--espresso);
    outline: none;
    line-height: 1.5;
}
.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form textarea::placeholder { color: rgba(122, 107, 96, 0.45); }
.wpcf7-form textarea { min-height: 118px; resize: vertical; }
.wpcf7-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.375rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--cream);
    background: var(--espresso);
    border: none;
    border-radius: 9999px;
    padding: 0.875rem 1.625rem;
    cursor: pointer;
    transition: all 0.6s var(--ease-spring);
}
.wpcf7-form .wpcf7-submit:hover { background: var(--sage-deep); }
.wpcf7-response-output { margin-top: 1rem; font-size: 0.875rem; color: var(--muted); border: none !important; }
.wpcf7-not-valid-tip { font-size: 0.8125rem; color: var(--warm-accent); margin-top: 0.25rem; }

/* ── Post Card ── */
.post-card-shell {
    background: rgba(28, 18, 8, 0.03);
    border: 1px solid rgba(28, 18, 8, 0.07);
    border-radius: 2rem;
    padding: 6px;
    transition: all 0.55s var(--ease-spring);
}
.post-card-shell:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(28, 18, 8, 0.08);
    border-color: rgba(122, 158, 142, 0.18);
}
.post-card-core {
    border-radius: calc(2rem - 6px);
    overflow: hidden;
    background: var(--cream);
}
.post-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--sage-muted);
    display: block;
}
.post-card-body { padding: 1.5rem 1.75rem 1.875rem; }
.post-card-cat {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 0.75rem;
}
.post-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--espresso);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.post-card-excerpt {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.25rem;
}
.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--muted);
}
.post-card-read {
    color: var(--sage-deep);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.post-card-read:hover { color: var(--espresso); }

/* ── Blog Preview ── */
.blog-preview { background: var(--cream); }
.blog-preview-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.blog-preview-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    color: var(--espresso);
}
.blog-preview-header h2 em { font-style: italic; color: var(--sage-deep); }
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ── Page Hero (Archive / Single) ── */
.page-hero {
    padding: 10rem 0 5rem;
    text-align: center;
}
.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: var(--espresso);
}

/* ── Single Post ── */
.single-hero {
    padding: 9rem 1.5rem 4rem;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.single-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--espresso);
}
.single-featured-shell {
    max-width: 820px;
    margin: 2rem auto 3rem;
    background: rgba(122, 158, 142, 0.06);
    border: 1px solid rgba(122, 158, 142, 0.14);
    border-radius: 2rem;
    padding: 6px;
}
.single-featured-core { border-radius: calc(2rem - 6px); overflow: hidden; }
.single-featured-core img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.single-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 1.5rem 6rem;
    font-size: 1.0625rem;
    color: var(--espresso-mid);
    line-height: 1.82;
    font-weight: 300;
}
.single-content h2, .single-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    margin: 2.5rem 0 1rem;
    color: var(--espresso);
}
.single-content h2 { font-size: clamp(1.75rem, 3vw, 2.375rem); }
.single-content h3 { font-size: 1.5rem; }
.single-content p { margin-bottom: 1.5rem; }
.single-content a { color: var(--sage-deep); }
.single-cta {
    text-align: center;
    padding: 4rem 1.5rem 6rem;
    border-top: 1px solid rgba(28, 18, 8, 0.07);
    max-width: 680px;
    margin: 0 auto;
}
.single-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--espresso);
}

/* ── Generic Page ── */
.generic-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 9rem 1.5rem 6rem;
}
.generic-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--espresso);
}
.generic-content p {
    font-size: 1.0625rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

/* ── 404 ── */
.not-found {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem;
}
.not-found h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    font-style: italic;
    color: var(--espresso);
}
.not-found p {
    font-size: 1.0625rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}
.not-found-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Pagination ── */
.archive-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0 5rem;
    flex-wrap: wrap;
}
.archive-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-decoration: none;
    border: 1px solid rgba(28, 18, 8, 0.1);
    color: var(--muted);
    transition: all 0.3s;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
    background: var(--espresso);
    color: var(--cream);
    border-color: var(--espresso);
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bento {
        grid-template-columns: 1fr 1fr;
    }
    .b-5, .b-7 { grid-column: span 1; }

    .about-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 3rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Container — horizontalni padding na mobilnom */
    .container { padding: 0 1.25rem; }

    /* Section padding */
    .section-pad    { padding-top: 4rem; padding-bottom: 4rem; }
    .section-pad-lg { padding-top: 4.5rem; padding-bottom: 4.5rem; }

    /* Nav */
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .nav-wrapper { width: calc(100% - 1.5rem); top: 0.875rem; }
    .nav-pill { padding: 0.5rem 0.625rem 0.5rem 1rem; }

    /* Hero */
    .hero { padding: 6rem 1.25rem 4.5rem; }
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn-primary,
    .hero-cta-row .btn-ghost { justify-content: center; }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .photo-shell {
        max-width: 280px;
        margin: 0 auto;
        aspect-ratio: 1/1;
    }
    .cred-row { justify-content: center; }
    .about-text .eyebrow { margin-left: auto; margin-right: auto; }

    /* Method */
    .bento {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    .b-5, .b-7 { grid-column: span 1; }
    .method-header { margin-bottom: 2.5rem; }

    /* Process */
    .steps { grid-template-columns: 1fr; gap: 0.875rem; }
    .process-header { margin-bottom: 2.5rem; }

    /* Quote */
    .quote-section { padding: 4rem 1.25rem; }
    .quote-core { padding: 2.5rem 1.75rem; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 2rem; padding-bottom: 2rem;}
    .contact-wrap .container { padding: 0 1.25rem; }

    /* Blog preview */
    .posts-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .blog-preview-header { margin-bottom: 2rem; }

    /* Footer */
    .footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 1.25rem;
        gap: 0.375rem;
    }
    footer { padding-top: 0.5rem; }
    .footer-copy { font-size: 0.75rem; }

    /* Archive */
    .page-hero { padding: 8rem 1.25rem 3rem; }
    .archive-pagination { padding: 1.5rem 0 3rem; }

    /* Single */
    .single-featured-shell { margin: 1.5rem 1.25rem 2rem; }

    /* Buttons */
    .btn-primary, .btn-ghost { padding: 0.8125rem 1.5rem; font-size: 0.9rem; }

    /* Not found */
    .not-found { padding: 6rem 1.25rem; }
    .not-found-btns { flex-direction: column; align-items: stretch; }
    .not-found-btns .btn-primary,
    .not-found-btns .btn-ghost { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .step-core { flex-direction: column; gap: 0.75rem; padding: 1.75rem 1.5rem; }
    .step-num { font-size: 2rem; min-width: auto; }
    .quote-core { padding: 2rem 1.25rem; }
    .quote-mark { font-size: 3.5rem; }
    .form-core { padding: 1.75rem 1.25rem 2rem; }
    .mcard-core { padding: 1.5rem 1.375rem 1.75rem; }
    .footer { padding: 1.25rem 1rem; }
    .hero { padding: 5.5rem 1rem 4rem; }
    .section-pad    { padding-top: 3rem; padding-bottom: 3rem; }
    .section-pad-lg { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
