@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', 'Cormorant Garamond', serif;
    --ink: #b2a28e;
    --ink-muted: #856d55;
    --ink-soft: #856d55;
    --accent: #5a3e28;
    --bg: #24160e;
    --bg-deep: #24160e;
    --bg-card: #5a3e28;
    --bg-card-soft: #856d55;
    --border: rgba(178, 162, 142, 0.18);
    --section-dark: #24160e;
    --section-light: #b2a28e;
    --section-light-ink: #24160e;
    --section-light-muted: #5a3e28;
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow: 0 18px 40px rgba(36, 31, 26, 0.35);
    --nav-offset: 72px;
}

html, body {
    font-family: var(--font-body);
    color: var(--ink);
    background: linear-gradient(180deg, #24160e 0%, #5a3e28 40%, #856d55 70%, #b2a28e 100%);
    line-height: 1.6;
    scroll-snap-type: none;
    scroll-behavior: auto;
    overflow-y: scroll;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

header.hero,
.section,
.footer {
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

header.hero,
.section:nth-of-type(odd) {
    background: var(--section-dark);
}

.section:nth-of-type(even) {
    background: var(--section-light);
    color: var(--section-light-ink);
}

.section:nth-of-type(even) .eyebrow,
.section:nth-of-type(even) .subhead,
.section:nth-of-type(even) .bio .title,
.section:nth-of-type(even) .bio p,
.section:nth-of-type(even) .about-list,
.section:nth-of-type(even) .about-list li {
    color: var(--section-light-muted);
}

.section {
    min-height: 100vh;
    padding: 110px 0;
    display: flex;
    align-items: center;
}

.section.consultant {
    background: #b2a28e;
    color: #24160e;
}

.section.consultant .eyebrow,
.section.consultant .bio .title,
.section.consultant .bio p,
.section.consultant .about-list,
.section.consultant .about-list li {
    color: #3b2a1e;
}

.section.trust {
    background: #24160e;
    color: #5a3e28;
}

.section.trust h2 {
    color: #5a3e28;
}

.section.trust .eyebrow,
.section.trust .subhead,
.section.trust p,
.section.trust li,
.section.trust .about-list,
.section.trust .about-list li {
    color: #5a3e28;
}

.section.contact {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    justify-content: center;
}

header.hero,
.section,
.footer {
    scroll-margin-top: 120px;
}

.section-head {
    text-align: left;
    margin-bottom: 48px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    color: var(--ink-soft);
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.08em;
}

h1 {
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.2;
}

.subhead {
    margin-top: 16px;
    max-width: 560px;
    color: var(--ink-muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 16px 32px rgba(107, 42, 42, 0.25);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(107, 42, 42, 0.35);
}

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

.btn.ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.whatsapp-float {
    position: fixed;
    right: calc(24px + 1cm);
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #3a3531 0%, #1f1b17 55%, #0f0c09 100%);
    border: 1px solid #c6a24a;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(15, 12, 9, 0.4), 0 0 12px rgba(198, 162, 74, 0.25);
    z-index: 1000;
    animation: whatsapp-blink 1.4s ease-in-out infinite,
        whatsapp-bounce 2.8s ease-in-out infinite;
}

.whatsapp-float i {
    color: #ffffff;
    font-size: 1.2rem;
}

.whatsapp-float::after {
    content: "İletişime Geçin...";
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(28, 24, 20, 0.95);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #c6a24a;
    box-shadow: 0 8px 18px rgba(15, 12, 9, 0.35);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    animation: whatsapp-label-toggle 4.2s ease-in-out infinite;
}

@keyframes whatsapp-label-toggle {
    0%, 60%, 100% {
        opacity: 0;
        transform: translateY(-50%) translateX(6px);
    }
    70%, 94% {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.whatsapp-float:hover {
    box-shadow: 0 12px 28px rgba(15, 12, 9, 0.5), 0 0 18px rgba(198, 162, 74, 0.35);
    transform: translateY(-1px) scale(1.15);
}

@keyframes whatsapp-blink {
    0%, 100% {
        opacity: 0.7;
        box-shadow: 0 8px 20px rgba(15, 12, 9, 0.35), 0 0 8px rgba(198, 162, 74, 0.2);
    }
    50% {
        opacity: 1;
        box-shadow: 0 12px 30px rgba(15, 12, 9, 0.6), 0 0 20px rgba(198, 162, 74, 0.4);
    }
}

@keyframes whatsapp-bounce {
    0%, 78%, 100% {
        transform: translateY(0);
    }
    84% {
        transform: translateY(-6px);
    }
    90% {
        transform: translateY(0);
    }
    94% {
        transform: translateY(-3px);
    }
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: var(--nav-offset);
    box-sizing: border-box;
}

.hero-inner {
    display: flex;
    align-items: stretch;
    gap: 32px;
    width: 100%;
    padding: 0 6vw;
    min-height: calc(100vh - var(--nav-offset));
}

.hero-profile {
    height: calc(100vh - var(--nav-offset));
    width: auto;
    object-fit: cover;
    object-position: center top;
    background: radial-gradient(circle at 30% 20%, rgba(90, 76, 66, 0.8) 0%, rgba(60, 52, 46, 0.6) 45%, rgba(36, 31, 26, 0.5) 100%);
    padding: 10px;
    border-radius: 28px;
    box-shadow: var(--shadow), 0 0 26px rgba(36, 22, 14, 0.32);
}

.hero-side-logo {
    position: relative;
    height: calc(70vh - var(--nav-offset));
    width: auto;
    object-fit: contain;
    opacity: 0.35;
    background: transparent;
    mix-blend-mode: screen;
    pointer-events: none;
    margin-left: auto;
    align-self: center;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 6px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(133, 109, 85, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
}

body.nav-theme-dark .brand-name,
body.nav-theme-dark .brand-sub,
body.nav-theme-dark .brand-mark {
    color: #f5f0e9;
}

body.nav-theme-dark .brand-divider {
    background: #f5f0e9;
}

body.nav-theme-dark .nav-links a {
    color: #f5f0e9;
}

body.nav-theme-dark .nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

body.nav-theme-light .brand-name,
body.nav-theme-light .brand-sub,
body.nav-theme-light .brand-mark {
    color: #24160e;
}

body.nav-theme-light .brand-divider {
    background: #24160e;
}

body.nav-theme-light .nav-links a {
    color: #24160e;
}

body.nav-theme-light .nav-links a:hover {
    color: #5a3e28;
    text-shadow: 0 0 10px rgba(90, 62, 40, 0.35);
}

.section.contact {
    color: #b2a28e;
}

.section.contact .eyebrow,
.section.contact .subhead,
.section.contact p,
.section.contact h2,
.section.contact h3,
.section.contact li,
.section.contact .value-card,
.section.contact .contact-actions .btn {
    color: #b2a28e;
}

.nav-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-divider {
    width: 3px;
    height: 44px;
    background: #ffffff;
    border-radius: 999px;
}

.brand-mark {
    font-family: var(--font-display);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.6rem;
}

.brand-balloon {
    width: 72px;
    height: 96px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    opacity: 0.9;
}

.brand-remax-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.brand-sub {
    font-size: 0.75rem;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links a {
    color: #b2a28e;
    font-weight: 700;
    transition: color 0.2s ease, text-shadow 0.2s ease, font-weight 0.2s ease;
}

.nav-links a:hover {
    color: #E4002B;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(228, 0, 43, 0.6);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(36, 31, 26, 0.7);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease;
}

.nav-toggle span::before {
    transform: translateY(-6px);
}

.nav-toggle span::after {
    transform: translateY(6px);
}

.nav-toggle:hover {
    border-color: rgba(243, 239, 233, 0.25);
    box-shadow: 0 10px 20px rgba(36, 31, 26, 0.35);
    transform: translateY(-1px);
}

.hero-content {
    padding: 56px 36px 32px;
    max-width: none;
    width: fit-content;
    margin-left: -24px;
    background: rgba(36, 31, 26, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 16px;
}


.cta-row {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.consultant .two-col {
    display: grid;
    gap: 48px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.portrait img {
    width: min(100%, 420px);
    max-height: 70vh;
    height: auto;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 999px;
    box-shadow: var(--shadow), 0 0 24px rgba(36, 22, 14, 0.32);
    border: 1px solid var(--border);
}

.portrait-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #24160e;
    font-size: 1rem;
    font-weight: 600;
}

.bio .title {
    margin-top: 8px;
    color: var(--ink-soft);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.bio-name {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
    color: #24160e;
}

.bio-name span {
    display: inline-block;
    color: #24160e;
    animation: bio-name-letter 2.8s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.09s);
}

@keyframes bio-name-letter {
    0%, 100% {
        color: #24160e;
    }
    50% {
        color: #b2a28e;
    }
}

.bio p {
    margin-top: 12px;
    color: var(--ink-muted);
}

.portfolio .card-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.portfolio-more {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.portfolio-more .btn.ghost {
    background: #4a0f1d;
    border-color: #4a0f1d;
    color: #f8e9ee;
}

.portfolio-more .btn.ghost:hover {
    background: #3a0b16;
    border-color: #3a0b16;
    color: #fff;
}

.property-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 360px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
}

.property-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 9, 10, 0.1) 0%, rgba(9, 9, 10, 0.85) 80%);
}

.card-content,
.card-hover,
.card-action {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.card-content p {
    color: #ffffff;
    margin-top: 6px;
}

.card-hover {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.property-card:hover .card-hover {
    opacity: 1;
    transform: translateY(0);
}

.card-action {
    margin-top: 18px;
    align-self: flex-start;
    background: transparent;
    border: 1px solid var(--border);
    color: #ffffff;
    border-radius: 999px;
    padding: 10px 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.value-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.value-card h3 {
    font-size: 1.2rem;
}

.value-card p {
    color: var(--ink-muted);
    margin-top: 10px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
    background: #b2a28e;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(36, 22, 14, 0.2);
}

.trust-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 16px 0 24px;
}

.trust-btn.is-active {
    filter: brightness(1.08);
    box-shadow: 0 16px 34px rgba(36, 22, 14, 0.35);
}

.trust-panel {
    display: none;
}

.trust-panel.is-active {
    display: block;
}

#trust-about-content p {
    margin: 0 0 12px 0;
}

#trust-about-content ul,
#trust-about-content ol {
    margin: 10px 0 14px 0;
    padding-left: 22px;
    list-style-position: outside;
}

#trust-about-content ul {
    list-style-type: disc;
}

#trust-about-content ol {
    list-style-type: decimal;
}

#trust-about-content li {
    display: list-item;
    margin: 0 0 6px 0;
    line-height: 1.5;
}

.trust-panel.education-grid.is-active {
    display: grid;
}

.trust-panel h4 {
    margin-top: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.education-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px 24px;
}

.education-grid .edu-block h4 {
    margin-top: 0;
}

.education-grid .about-list {
    margin-top: 10px;
}

.slide-btn {
    background: linear-gradient(155deg, #5a3e28, #3b2a1e);
    color: #f5f0e9;
    border: 1px solid rgba(245, 240, 233, 0.3);
    box-shadow: 0 12px 28px rgba(36, 22, 14, 0.25);
    transform: translateX(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.slide-btn:hover,
.slide-btn:focus-visible {
    transform: translateX(12px);
    box-shadow: 0 16px 34px rgba(36, 22, 14, 0.35);
    filter: brightness(1.06);
}

.education-details {
    width: min(420px, 100%);
}

.education-details summary {
    list-style: none;
    cursor: pointer;
}

.education-details summary::-webkit-details-marker {
    display: none;
}

.education-panel {
    margin-top: 16px;
    background: rgba(245, 240, 233, 0.35);
    border: 1px solid rgba(36, 22, 14, 0.18);
    border-radius: 16px;
    padding: 18px 18px 8px;
    color: #5a3e28;
}

.education-panel h4 {
    margin-top: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.education-panel .about-list {
    margin: 10px 0 0;
    color: #5a3e28;
}

.trust-logo {
    width: 120px;
    opacity: 0.9;
}

.by-appointment {
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--accent);
}

.about-list {
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--ink-muted);
}

.about-list li {
    margin-bottom: 8px;
}

.contact-inner {
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.contact .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact .value-card {
    aspect-ratio: 1 / 0.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-actions {
    flex-direction: row;
    align-items: stretch;
}

.contact-actions .btn {
    width: auto;
    justify-content: center;
}

@media (max-width: 900px) {
    .contact .value-grid {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .contact .value-card {
        aspect-ratio: auto;
        padding: 16px 18px;
    }

    .contact .value-card h3 {
        font-size: 1rem;
    }

    .contact .value-card p {
        font-size: 0.85rem;
    }
}

.contact-actions .btn {
    border-color: rgba(243, 239, 233, 0.18);
    color: var(--ink);
    box-shadow: 0 12px 28px rgba(36, 31, 26, 0.28);
}

.contact-actions .btn:nth-child(1) {
    background: linear-gradient(155deg, #5f5a52, #3f3832);
}

.contact-actions .btn:nth-child(2) {
    background: linear-gradient(160deg, #7a3434, #5f2626);
    border-color: rgba(243, 239, 233, 0.2);
    box-shadow: 0 14px 32px rgba(107, 42, 42, 0.3);
}

.contact-actions .btn:nth-child(3) {
    background: linear-gradient(155deg, #4b3d36, #332a24);
}

.contact-actions .btn:nth-child(4) {
    background: linear-gradient(155deg, #6a3b45, #4a2a31);
}

.contact-actions .btn:nth-child(5) {
    background: linear-gradient(155deg, #4a4238, #302a24);
}

.contact-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(243, 239, 233, 0.12);
    filter: brightness(1.06);
}

.contact-actions .btn:nth-child(2):hover {
    box-shadow: 0 18px 38px rgba(107, 42, 42, 0.4);
}

.footer {
    text-align: center;
    padding: 40px 0 60px;
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.show {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 23, 19, 0.75);
}

.modal-dialog {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    width: min(900px, 92vw);
    max-height: 90vh;
    overflow: hidden;
    z-index: 2;
    padding: 32px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--ink);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.modal-body {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
}

.modal-main-image {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    max-height: min(56vh, 520px);
    min-height: 260px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.22);
}

.modal-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
}

.modal-thumbs img {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
    opacity: 0.7;
}

.modal-thumbs img.active {
    opacity: 1;
    border-color: var(--accent);
}

.modal-info h3 {
    margin-top: 10px;
}

.modal-sub {
    margin-top: 8px;
    color: var(--ink-soft);
}

.modal-specs {
    margin: 20px 0;
    display: grid;
    gap: 8px;
    list-style: none;
    color: var(--ink-muted);
}

.modal-note {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    :root {
        --nav-offset: 96px;
    }

    .nav {
        flex-direction: column;
        gap: 12px;
    }

    .nav-main {
        width: 100%;
    }

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

    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-bottom: 12px;
    }

    .nav.open .nav-links {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .hero-content {
        margin-left: 0;
        width: 100%;
        max-width: 560px;
        padding: 48px 24px 24px;
    }

    .hero-profile {
        width: min(92vw, 520px);
        height: auto;
        max-height: 60vh;
    }

    .hero-side-logo {
        width: min(70vw, 260px);
        height: auto;
        opacity: 0.5;
        align-self: center;
        margin-left: 0;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 600px) {
    :root {
        --nav-offset: 104px;
    }

    .section {
        padding: 90px 0;
    }

    .hero {
        background-position: center, center calc(60% + var(--nav-offset));
    }

    .contact-inner {
        padding: 32px;
    }
}
