:root {
    --paper: #FAF8F5; /* Travertine light off-white background */
    --muted-paper: #F3ECE1; /* Warm sand/beige background for sections */
    --white: #ffffff;
    --ink: #0C1E2B; /* Deep Aegean Indigo for high-end text and contrast */
    --muted: #5C6B73; /* Soft coastal slate */
    --gold: #C09E6B; /* Warm Mediterranean gold */
    --olive: #566D5B; /* Sage/olive green for highlights and secondary accents */
    --line: #E3DCD0; /* Delicate travertine/clay line separator */
    --shadow: 0 16px 40px rgba(12, 30, 43, 0.04); /* Soft premium shadow */
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Manrope", sans-serif;
    
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--paper);
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, opacity 0.25s ease;
}

button, input, select, textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.section {
    padding: 100px 0;
}

.muted {
    background: var(--muted-paper);
}

h1, h2, h3, h4, p {
    margin-top: 0;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-weight: 500;
}

h2 {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

p {
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--olive);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.eyebrow.inverse {
    color: var(--gold);
}

/* Buttons and Links */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.button svg {
    width: 16px;
    transition: transform 0.3s ease;
}

.button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.button:hover svg {
    transform: translateX(4px);
}

.button.dark {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.button.light {
    background: var(--white);
    border-color: var(--line);
    color: var(--ink);
}

.button.light:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

.text-link svg {
    width: 16px;
    transition: transform 0.25s ease;
}

.text-link:hover {
    color: var(--gold);
}

.text-link:hover svg {
    transform: translateX(4px);
}

.text-link.inverse {
    color: var(--ink);
}

.text-link.inverse:hover {
    color: var(--gold);
}

.section-title {
    max-width: 750px;
    margin-bottom: 50px;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title p {
    max-width: 650px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section-title.light h2 {
    color: var(--ink);
}

.section-title.light p {
    color: var(--muted);
}

/* Site Header */
.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.8);
    border-bottom: 1px solid rgba(192, 158, 107, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
}

.nav-shell {
    width: min(1380px, calc(100% - 48px));
    height: 104px;
    margin: auto;
    display: flex;
    align-items: center;
}

.brand {
    height: 82px;
    display: grid;
    place-items: center;
}

.brand img {
    height: 76px;
    object-fit: contain;
    /* Convert white logo to dark Aegean indigo (matching --ink) */
    filter: brightness(0) saturate(100%) invert(10%) sepia(30%) saturate(1200%) hue-rotate(170deg) brightness(90%) contrast(95%);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.main-nav > a, .nav-group > a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 30px 0;
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--gold);
}

.main-nav > a::after, .nav-group > a::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.main-nav > a:hover::after, .main-nav > a.active::after, .nav-group > a.active::after {
    width: 100%;
}

.main-nav .mobile-contact {
    display: none;
}

.nav-group {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% - 2px);
    left: -20px;
    z-index: 140;
    display: block;
    min-width: 200px;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    animation: fadeIn 0.2s ease-out;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 18px;
}

.nav-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 500;
}

.nav-dropdown a:hover {
    background: var(--paper);
    color: var(--gold);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.language-switcher {
    position: relative;
    margin-left: 22px;
    z-index: 130;
}

.language-trigger {
    height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(12, 30, 43, .18);
    border-radius: 6px;
    background: rgba(255, 255, 255, .72);
    color: var(--ink);
    padding: 0 12px;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(12, 30, 43, .04);
    transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.language-trigger:hover,
.language-switcher.open .language-trigger {
    border-color: var(--gold);
    background: var(--white);
    color: var(--gold);
}

.language-trigger svg {
    width: 17px;
    height: 17px;
}

.language-trigger .icon-chevron {
    width: 14px;
    height: 14px;
    transition: transform .25s ease;
}

.language-switcher.open .icon-chevron {
    transform: rotate(180deg);
}

.language-current {
    min-width: 48px;
    text-align: center;
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: 300px;
    max-height: min(520px, calc(100vh - 140px));
    overflow: auto;
    padding: 10px;
    background: rgba(255, 255, 255, .98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(12, 30, 43, .14);
}

.language-switcher.open .language-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.language-option {
    width: 100%;
    min-height: 56px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--ink);
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 8px;
    text-align: left;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.language-option:hover,
.language-option.active {
    background: var(--paper);
    border-color: var(--line);
}

.language-code {
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--white);
    font-size: .62rem;
    font-weight: 900;
    line-height: 1;
}

.language-flag {
    font-size: .95rem;
    line-height: 1;
    margin-bottom: 2px;
}

.language-option.active .language-code {
    background: var(--gold);
}

.language-option strong,
.language-option small {
    display: block;
    letter-spacing: 0;
    line-height: 1.2;
}

.language-option strong {
    color: var(--ink);
    font-size: .83rem;
    font-weight: 900;
}

.language-option small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
}

.google-translate-root,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-balloon-frame,
#goog-gt-tt {
    display: none !important;
}

body {
    top: 0 !important;
}

.skiptranslate iframe {
    display: none !important;
}

.nav-cta {
    margin-left: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--ink);
    padding: 10px 20px;
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-cta:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--white);
}

.menu-button {
    display: none;
    border: 0;
    background: none;
    color: var(--ink);
}

/* Home Hero */
.home-hero {
    height: 100vh;
    min-height: 750px;
    position: relative;
    overflow: hidden;
    background: var(--paper);
    color: var(--ink);
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url("/images/hero-izmir.png") center/cover no-repeat;
    animation: heroZoom 20s ease-out both;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(250, 248, 245, 0.98) 0%, rgba(250, 248, 245, 0.88) 45%, rgba(250, 248, 245, 0.25) 100%),
                linear-gradient(0deg, rgba(250, 248, 245, 0.95) 0%, transparent 45%);
}

.home-emblem {
    position: absolute;
    z-index: 1;
    top: 52%;
    right: clamp(24px, 7vw, 110px);
    width: clamp(220px, 24vw, 390px);
    transform: translateY(-50%);
    opacity: 0.62;
    filter: drop-shadow(0 20px 36px rgba(12, 30, 43, 0.14));
    pointer-events: none;
}

.home-emblem img {
    width: 100%;
    height: auto;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-inner {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
}

.hero-copy {
    width: min(720px, 65%);
}

.hero-copy h1 {
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    font-weight: 400;
    margin: 0 0 24px;
    line-height: 1.1;
}

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

.hero-copy p {
    color: var(--muted);
    font-size: 1.15rem;
    max-width: 580px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.hero-monogram {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--line);
    padding-top: 30px;
    max-width: 850px;
}

.hero-monogram > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-monogram strong {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--gold);
    font-weight: 600;
    line-height: 1;
}

.hero-monogram span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--ink);
}

.hero-monogram p {
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
    color: var(--muted);
}

.hero-foot {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

/* Search Panel */
.search-panel-wrap {
    position: relative;
    margin-top: -50px;
    z-index: 5;
}

.search-panel {
    min-height: 100px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)) auto;
    align-items: center;
    padding: 16px 24px;
}

.search-panel > div {
    min-width: 0;
    padding: 0 16px;
    border-right: 1px solid var(--line);
}

.search-panel label {
    display: block;
    color: var(--olive);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.search-panel select {
    border: 0;
    background: none;
    width: 100%;
    padding: 6px 20px 0 0;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
    outline: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C09E6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px;
}

.search-panel select:disabled {
    color: var(--muted);
    cursor: not-allowed;
    opacity: 0.72;
}

.search-button {
    margin-left: 20px;
    min-height: 56px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--white);
    border: 0;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: var(--gold);
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
}

.intro-grid h2 {
    margin-bottom: 0;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.75;
}

.stat-block {
    border-left: 1px solid var(--line);
    padding-left: 36px;
}

.stat-block strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    font-weight: 500;
}

.stat-block span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 700;
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card-link {
    display: block;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.property-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.property-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12, 30, 43, 0.4) 0%, transparent 50%);
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover .property-image img {
    transform: scale(1.06);
}

.property-image > span {
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 20px;
    background: var(--white);
    color: var(--ink);
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--line);
}

.property-image b {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 15px;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

.property-content {
    padding: 24px;
}

.property-content small {
    color: var(--olive);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.7rem;
}

.property-content h3 {
    font-size: 1.35rem;
    margin: 10px 0;
    font-weight: 500;
    color: var(--ink);
}

.property-content p {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.property-content p svg {
    width: 14px;
    color: var(--gold);
}

.property-content > div {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-content > div svg {
    width: 16px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.property-card:hover .property-content > div svg {
    transform: translateX(4px);
}

.section-action {
    margin-top: 50px;
    text-align: center;
}

/* Expertise Grid */
.expertise {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    margin-top: 40px;
}

.expertise-grid article {
    min-height: 320px;
    padding: 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    background: var(--white);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.expertise-grid article:hover {
    background: var(--muted-paper);
}

.expertise-grid article > span {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.4rem;
}

.expertise-grid h3 {
    font-size: 1.4rem;
    margin-top: 50px;
    margin-bottom: 12px;
}

.expertise-grid p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.expertise-grid a {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: var(--ink);
}

.expertise-grid a svg {
    width: 18px;
    transition: transform 0.25s ease;
}

.expertise-grid article:hover a svg {
    transform: translateX(4px);
    color: var(--gold);
}

/* Advisors Preview */
.advisors-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

.advisor-image-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px;
    gap: 12px;
    position: relative;
}

.advisor-image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--line);
}

.advisor-image-stack img:first-child {
    grid-row: span 2;
}

.advisor-image-stack span {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
}

.advisors-preview p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* CTA Section */
.cta-section {
    background: var(--olive);
    color: var(--white);
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-inner h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 0;
    color: var(--white);
}

.cta-inner .eyebrow {
    color: var(--gold);
}

.cta-inner .button.light {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
}

.cta-inner .button.light:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Subpage Page Hero */
.page-hero {
    height: 480px;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: var(--ink);
    background: var(--muted-paper);
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--page-image) center/cover no-repeat;
    opacity: 0.18;
    filter: grayscale(30%);
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--paper) 15%, rgba(250,248,245,0.8) 50%, transparent 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    padding-bottom: 60px;
}

.page-hero h1 {
    max-width: 800px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-hero p {
    max-width: 600px;
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Editorial Structure */
.editorial {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 60px;
}

.editorial-aside {
    border-right: 1px solid var(--line);
}

.editorial-aside span {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 500;
}

.editorial-aside p {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0;
    color: var(--olive);
}

.editorial-body {
    max-width: 850px;
}

.editorial-body h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 24px;
}

.editorial-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-visual {
    background: var(--muted-paper);
}

.split-image {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.image-panel {
    height: 550px;
}

.image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--line);
}

.content-panel {
    background: var(--white);
    margin-left: -60px;
    padding: 60px;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.content-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content-panel ul {
    list-style: none;
    padding: 15px 0 0;
    margin: 0;
}

.content-panel li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600;
}

.content-panel li svg {
    width: 18px;
    color: var(--olive);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.values-grid article {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.values-grid article:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.values-grid span {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.8rem;
    display: block;
    margin-bottom: 30px;
}

.values-grid h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

/* Vision Page */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-grid article {
    background: var(--white);
    padding: 60px;
    border: 1px solid var(--line);
}

.vision-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    background: var(--muted-paper);
    margin-bottom: 35px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    border: 1px solid var(--line);
}

.vision-grid h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.principles > div {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--line);
}

.principles h3 {
    font-size: 1.05rem;
    margin: 0;
    font-family: var(--font-sans);
    font-weight: 600;
}

.principles svg {
    flex: none;
    width: 18px;
    color: var(--olive);
}

/* Consultants Directory */
.directory-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}

.directory-head h2 {
    margin: 0;
}

.directory-search {
    width: 320px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--ink);
    padding: 10px 0;
    margin-bottom: -21px; /* Overlap header border line */
    background: transparent;
    transition: border-color 0.25s ease;
}

.directory-search svg {
    width: 18px;
    color: var(--gold);
}

.directory-search input {
    border: 0;
    outline: 0;
    width: 100%;
    background: transparent;
    color: var(--ink);
    font-weight: 500;
    font-size: 0.95rem;
}

.consultant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.consultant-card {
    background: var(--white);
    border: 1px solid var(--line);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.consultant-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.consultant-photo {
    height: 340px;
    position: relative;
    overflow: hidden;
}

.consultant-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.consultant-card:hover .consultant-photo img {
    transform: scale(1.04);
}

.consultant-photo span {
    position: absolute;
    right: 20px;
    bottom: 15px;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.6rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.consultant-card > div:last-child {
    padding: 24px;
    position: relative;
}

.consultant-card small {
    color: var(--olive);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.consultant-card h3 {
    font-size: 1.25rem;
    margin: 0 0 12px;
    font-family: var(--font-serif);
}

.consultant-card a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
}

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

.consultant-card a svg {
    width: 16px;
    color: var(--gold);
}

.consultant-card .whatsapp {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--olive);
    transition: all 0.3s ease;
}

.consultant-card .whatsapp:hover {
    background: var(--olive);
    border-color: var(--olive);
    color: var(--white);
}

/* Portfolio Listing filter */
.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--line);
}

.filter-row button {
    border: 0;
    background: none;
    padding: 18px 24px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s ease;
}

.filter-row button.active {
    color: var(--gold);
}

.filter-row button.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.filter-row > span {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}

.portfolio-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.portfolio-note svg {
    width: 16px;
    color: var(--olive);
}

/* Academy Styling */
.academy-intro {
    background: var(--muted-paper);
    border-bottom: 1px solid var(--line);
}

.academy-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 0;
}

.academy-numbers > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-right: 1px solid var(--line);
}

.academy-numbers > div:last-child {
    border: 0;
}

.academy-numbers strong {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 500;
}

.academy-numbers span {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.4;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 36px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.program-grid article:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.program-grid article > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.program-symbol {
    color: var(--olive);
    font-size: 1.5rem;
}

.program-grid article > div span:last-child {
    font-size: 0.8rem;
    color: var(--gold);
    font-family: var(--font-serif);
}

.program-grid h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.program-grid p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
}

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

.program-grid a svg {
    width: 14px;
    color: var(--gold);
    transition: transform 0.2s ease;
}

.program-grid a:hover svg {
    transform: translateX(4px);
}

.academy-banner {
    background: linear-gradient(90deg, rgba(250,248,245,0.95), rgba(250,248,245,0.8)), url("/images/hero-izmir.png") center/cover;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.academy-banner > .container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 50px;
}

.academy-mark {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 600;
}

.academy-banner h2 {
    margin: 0;
    font-size: 2.5rem;
}

/* Projects template styling */
.project-intro {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.project-intro h2 {
    margin: 0;
}

.project-intro > p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.project-process {
    background: var(--muted-paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-grid article {
    border-top: 1px solid var(--line);
    padding-top: 24px;
}

.process-grid span {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.3rem;
}

.process-grid h3 {
    font-size: 1.3rem;
    margin: 0 0 12px;
}

.process-grid p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.project-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-service-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 24px;
    font-weight: 600;
}

.project-service-grid svg {
    color: var(--olive);
    width: 18px;
}

/* Project showcase page */
.project-showcase-hero {
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    position: relative;
    color: var(--white);
    background: var(--ink);
    overflow: hidden;
}

.project-showcase-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--project-image) center/cover no-repeat;
    opacity: 0.58;
}

.project-showcase-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 30, 43, 0.92) 0%, rgba(12, 30, 43, 0.72) 44%, rgba(12, 30, 43, 0.2) 100%),
                linear-gradient(0deg, rgba(12, 30, 43, 0.88) 0%, transparent 52%);
}

.project-showcase-hero-inner {
    position: relative;
    z-index: 1;
    padding: 160px 0 70px;
}

.project-showcase-hero .eyebrow {
    color: var(--gold);
}

.project-showcase-hero h1 {
    max-width: 820px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: 4.6rem;
    letter-spacing: 0;
}

.project-showcase-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.project-hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.project-hero-actions .text-link {
    color: var(--white);
}

.project-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: 28px;
}

.project-hero-facts span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-switcher-section {
    padding: 52px 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.project-switcher-head {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 42px;
    align-items: end;
    margin-bottom: 28px;
}

.project-switcher-head .eyebrow {
    margin-bottom: 0;
}

.project-switcher-head h2 {
    max-width: 760px;
    margin: 0;
    font-size: 2rem;
    letter-spacing: 0;
}

.project-switcher {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.project-switch-card {
    position: relative;
    display: grid;
    grid-template-rows: 150px auto auto auto;
    min-height: 300px;
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.project-switch-card:hover,
.project-switch-card.active {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.project-switch-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.project-switch-card span {
    width: fit-content;
    margin: 16px 16px 10px;
    background: var(--ink);
    color: var(--white);
    padding: 5px 9px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-switch-card.active span {
    background: var(--gold);
}

.project-switch-card strong {
    padding: 0 16px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.project-switch-card small {
    align-self: end;
    padding: 12px 16px 18px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.45;
}

.project-showcase-menu {
    position: sticky;
    top: 112px;
    z-index: 8;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(12, 30, 43, 0.04);
}

.project-showcase-menu > div {
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.project-showcase-menu > div::-webkit-scrollbar {
    display: none;
}

.project-showcase-menu a {
    flex: none;
    padding: 18px 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.project-showcase-menu a:hover {
    color: var(--gold);
}

.project-showcase-overview {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 34px;
    align-items: stretch;
}

.project-overview-media img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.project-overview-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-overview-copy h2,
.project-showcase-section-head h2,
.project-location-layout h2,
.project-payment-layout h2,
.project-status-layout h2,
.project-tour-section h2 {
    letter-spacing: 0;
}

.project-overview-copy h2 {
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.project-overview-copy p {
    font-size: 1rem;
    line-height: 1.8;
}

.project-meta-list {
    display: grid;
    align-content: stretch;
    gap: 0;
    margin: 0;
    background: var(--white);
    border: 1px solid var(--line);
}

.project-meta-list div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    min-height: 72px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}

.project-meta-list div:last-child {
    border-bottom: 0;
}

.project-meta-list dt {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-meta-list dd {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
    line-height: 1.35;
}

.project-meta-list.compact {
    margin-top: 28px;
}

.project-showcase-section-head {
    max-width: 760px;
    margin-bottom: 36px;
}

.project-showcase-section-head h2 {
    margin-bottom: 0;
    font-size: 2.6rem;
}

.project-amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.project-amenity-grid div,
.project-location-grid div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 18px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.5;
}

.project-amenity-grid svg,
.project-location-grid svg,
.project-payment-list svg {
    width: 17px;
    color: var(--olive);
    margin-top: 3px;
}

.project-plan-grid,
.project-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.project-plan-grid article,
.project-catalog-grid article {
    min-height: 210px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 28px;
}

.project-plan-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    background: var(--muted-paper);
    color: var(--olive);
    border: 1px solid var(--line);
}

.project-plan-icon svg {
    width: 18px;
}

.project-plan-grid h3,
.project-catalog-grid h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.project-plan-grid p,
.project-catalog-grid p {
    margin-bottom: 20px;
    font-size: 0.92rem;
    line-height: 1.65;
}

.project-gallery-section {
    background: var(--ink);
    color: var(--white);
}

.project-gallery-section .eyebrow {
    color: var(--gold);
}

.project-gallery-section h2 {
    color: var(--white);
}

.project-gallery-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 22px;
}

.project-gallery-filters span {
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.project-gallery-grid a {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.project-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-gallery-grid a:hover img {
    transform: scale(1.04);
}

.project-video-panel,
.project-tour-section > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.project-video-panel {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.project-video-panel h2,
.project-tour-section h2 {
    max-width: 680px;
    margin-bottom: 14px;
    font-size: 2.5rem;
}

.project-video-panel p {
    max-width: 680px;
    margin-bottom: 0;
}

.project-location-layout,
.project-payment-layout,
.project-status-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
    align-items: start;
}

.project-location-layout h2,
.project-payment-layout h2 {
    font-size: 2.5rem;
}

.project-location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.project-payment-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
}

.project-payment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 20px;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.55;
}

.project-status-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.project-status-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.project-status-images img:first-child {
    grid-column: 1 / -1;
    height: 300px;
}

.project-tour-section {
    background: var(--ink);
    color: var(--white);
}

.project-tour-section .eyebrow {
    color: var(--gold);
}

.project-tour-section h2 {
    margin-bottom: 0;
    color: var(--white);
}

.project-tour-section .button {
    background: var(--white);
    border-color: var(--white);
    color: var(--ink);
}

.project-tour-section .button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Hizmetlerimiz Page styling */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-grid article {
    padding: 40px;
    background: var(--white);
    border: 1px solid var(--line);
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-grid article:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-grid article > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.service-grid svg {
    color: var(--olive);
    width: 32px;
    height: 32px;
}

.service-grid span {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.service-grid h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-process {
    background: var(--muted-paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}

.split-heading h2 {
    margin: 0;
}

.steps > div {
    display: grid;
    grid-template-columns: 60px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.steps > div:last-child {
    border-bottom: 0;
}

.steps span {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.steps p {
    margin: 0;
    font-weight: 600;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.contact-item > svg {
    color: var(--gold);
    width: 22px;
}

.contact-item small {
    display: block;
    color: var(--olive);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--ink);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    transition: all 0.25s ease;
}

.contact-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 50px;
}

.contact-form h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    margin-bottom: 24px;
    color: var(--olive);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input, .contact-form select, .contact-form textarea {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 10px 0;
    outline: 0;
    color: var(--ink);
    font-weight: 500;
    transition: border-color 0.25s ease;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form > small {
    display: block;
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.72rem;
}

.map-placeholder {
    height: 400px;
    display: grid;
    place-items: center;
    background-color: #ECE5D8;
    background-image: linear-gradient(30deg,#DFD7C7 12%,transparent 12.5%,transparent 87%,#DFD7C7 87.5%),linear-gradient(150deg,#DFD7C7 12%,transparent 12.5%,transparent 87%,#DFD7C7 87.5%),linear-gradient(30deg,#DFD7C7 12%,transparent 12.5%,transparent 87%,#DFD7C7 87.5%),linear-gradient(150deg,#DFD7C7 12%,transparent 12.5%,transparent 87%,#DFD7C7 87.5%);
    background-size: 80px 140px;
}

.map-placeholder > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 24px 36px;
    box-shadow: var(--shadow);
}

.map-placeholder svg {
    color: var(--gold);
    margin-bottom: 8px;
}

.map-placeholder span {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 4px;
}

/* Site Footer */
.footer {
    background: var(--muted-paper);
    color: var(--ink);
    border-top: 1px solid var(--line);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 80px;
    padding-top: 80px;
    padding-bottom: 60px;
}

.footer-brand img {
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(30%) saturate(1200%) hue-rotate(170deg) brightness(90%) contrast(95%);
}

.footer-brand p {
    color: var(--muted);
    max-width: 300px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.socials a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer h4 {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--olive);
    font-weight: 700;
}

.footer-top > div:not(:first-child) > a {
    display: block;
    color: var(--ink);
    font-size: 0.85rem;
    padding: 6px 0;
    font-weight: 500;
}

.footer-top > div:not(:first-child) > a:hover {
    color: var(--gold);
}

.footer-contact p, .footer-contact a {
    color: var(--ink);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact p {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact svg {
    width: 16px;
    color: var(--gold);
    flex: none;
    margin-top: 4px;
}

.footer-contact > a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 4px 0 !important;
}

.footer-contact > a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-credit strong {
    color: var(--ink);
}

.site-contact-bar {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 120;
    display: grid;
    justify-items: end;
    gap: 10px;
}

.site-contact-toggle {
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(12, 30, 43, .94);
    color: var(--white);
    box-shadow: 0 16px 44px rgba(12, 30, 43, .22);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-contact-toggle:hover,
.site-contact-bar.open .site-contact-toggle {
    transform: translateY(-3px);
    box-shadow: 0 22px 54px rgba(12, 30, 43, .28);
    background: #102431;
}

.site-contact-combo-icon {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
}

.site-contact-combo-phone,
.site-contact-combo-whatsapp {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.site-contact-combo-phone {
    top: 3px;
    left: 1px;
    width: 27px;
    height: 27px;
    background: rgba(255, 255, 255, .16);
}

.site-contact-combo-whatsapp {
    right: 0;
    bottom: 0;
    width: 31px;
    height: 31px;
    background: #1f8f5f;
    border: 2px solid #102431;
}

.site-contact-combo-phone svg {
    width: 15px;
    height: 15px;
}

.site-contact-combo-whatsapp svg {
    width: 18px;
    height: 18px;
}

.site-contact-menu {
    position: absolute;
    right: 0;
    bottom: 78px;
    display: grid;
    gap: 8px;
    min-width: 172px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 8px;
    background: rgba(12, 30, 43, .96);
    box-shadow: 0 18px 48px rgba(12, 30, 43, .24);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.site-contact-bar.open .site-contact-menu,
.site-contact-bar:focus-within .site-contact-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-contact-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 11px;
    border-radius: 6px;
    color: var(--white);
    text-decoration: none;
    font-size: .84rem;
    font-weight: 800;
}

.site-contact-menu a:hover {
    background: rgba(255, 255, 255, .11);
}

.site-contact-menu svg {
    width: 18px;
    height: 18px;
}

/* Portfolio Details Page Style definitions */
.portfolio-details {
    padding-top: 144px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 30px;
}

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

.breadcrumbs span {
    color: var(--line);
}

.portfolio-detail-heading {
    max-width: 920px;
    margin-bottom: 36px;
}

.portfolio-detail-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.portfolio-detail-kicker span {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--olive);
    background: var(--white);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.portfolio-detail-heading h1 {
    margin: 0 0 12px;
    font-family: var(--font-serif);
    font-size: 2.65rem;
    line-height: 1.12;
}

.portfolio-detail-heading p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: .92rem;
}

.portfolio-detail-heading p svg {
    width: 17px;
    color: var(--gold);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 50px;
    align-items: start;
}

.gallery-container {
    margin-bottom: 40px;
}

.main-gallery-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border: 1px solid var(--line);
    margin-bottom: 12px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border: 1px solid var(--line);
    cursor: pointer;
    transition: border-color 0.25s ease, opacity 0.25s ease;
}

.gallery-thumbnails img:hover, .gallery-thumbnails img.active {
    border-color: var(--gold);
    opacity: 0.85;
}

.details-section-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}

.details-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 40px;
}

.details-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-bottom: 45px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    font-size: 0.95rem;
}

.spec-item label {
    color: var(--muted);
    font-weight: 500;
}

.spec-item span {
    font-weight: 700;
    color: var(--ink);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-item svg {
    color: var(--olive);
    width: 18px;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.project-detail-grid.compact {
    grid-template-columns: repeat(3, 1fr);
}

.project-detail-panel,
.project-detail-pill {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 26px;
}

.project-detail-panel.wide {
    margin-bottom: 40px;
}

.project-detail-panel h3 {
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.project-detail-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.project-detail-panel li,
.project-detail-pill {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.55;
}

.project-detail-panel svg,
.project-detail-pill svg {
    width: 17px;
    color: var(--olive);
    margin-top: 3px;
}

.sidebar-sticky {
    position: sticky;
    top: 110px;
}

.price-box {
    background: var(--white);
    border: 1px solid var(--line);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.price-box h4 {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: 10px;
    font-weight: 700;
}

.price-box .price-amount {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 2.2rem);
    color: var(--ink);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 24px;
}

.consultant-mini-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding-top: 24px;
    margin-bottom: 24px;
}

.consultant-mini-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--line);
}

.consultant-mini-card .info small {
    color: var(--olive);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

.consultant-mini-card .info h5 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin: 4px 0 0;
    font-weight: 600;
}

.details-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.details-action-buttons .button {
    width: 100%;
}

.details-action-buttons .button.whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.details-action-buttons .button.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: #fff;
}

.sidebar-contact-form {
    background: var(--muted-paper);
    border: 1px solid var(--line);
    padding: 30px;
}

.sidebar-contact-form h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 18px;
    font-weight: 500;
}

.sidebar-contact-form input, .sidebar-contact-form textarea {
    border-bottom-color: var(--line);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sidebar-contact-form button {
    width: 100%;
    margin-top: 10px;
}

.similar-properties {
    margin-top: 80px;
    border-top: 1px solid var(--line);
    padding-top: 60px;
}

/* Helpers & Resets */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: none;
    vertical-align: middle;
}

.form-success, .form-error {
    padding: 14px 16px;
    margin-bottom: 22px;
    font-size: 0.85rem;
    font-weight: 600;
}

.form-success {
    background: #e8f4ed;
    color: #205d38;
    border-left: 3px solid var(--olive);
}

.form-error {
    background: #f8e9e7;
    color: #8b3028;
    border-left: 3px solid #8b3028;
}

[hidden] {
    display: none !important;
}

body.menu-open {
    overflow: hidden;
}

/* Media Queries (Responsive Style adjustments) */
@media (max-width: 1050px) {
    .search-panel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 18px;
        padding: 22px;
    }
    .search-panel > div:nth-of-type(3n) {
        border-right: 0;
    }
    .search-button {
        grid-column: 1 / -1;
        width: 100%;
        margin: 2px 0 0;
        justify-content: center;
    }
    .main-nav {
        gap: 18px;
    }
    .main-nav > a, .nav-group > a {
        font-size: 0.8rem;
    }
    .language-switcher {
        margin-left: 18px;
    }
    .language-trigger-text {
        display: none;
    }
    .nav-cta {
        display: none;
    }
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro-grid {
        gap: 35px;
    }
    .consultant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 40px;
    }
    .footer-contact {
        grid-column: 2 / 4;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
    .project-showcase-overview {
        grid-template-columns: 1fr 1fr;
    }
    .project-switcher {
        grid-template-columns: repeat(3, 1fr);
    }
    .project-meta-list {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
    }
    .project-meta-list div {
        border-right: 1px solid var(--line);
    }
    .project-meta-list div:nth-child(3n),
    .project-meta-list div:last-child {
        border-right: 0;
    }
    .project-amenity-grid,
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-plan-grid,
    .project-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .project-location-layout,
    .project-payment-layout,
    .project-status-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    body {
        padding-bottom: 82px;
    }
    .container {
        width: min(100% - 32px, 1200px);
    }
    .section {
        padding: 70px 0;
    }

    .portfolio-details {
        padding-top: 124px;
    }

    .portfolio-detail-heading h1 {
        font-size: 2rem;
    }
    .nav-shell {
        height: 94px;
        width: calc(100% - 32px);
    }
    .brand {
        height: 76px;
    }
    .brand img {
        height: 70px;
    }
    .menu-button {
        display: block;
        margin-left: 0;
    }
    .language-switcher {
        margin-left: auto;
        margin-right: 10px;
    }
    .language-trigger {
        height: 40px;
        padding: 0 10px;
        gap: 7px;
    }
    .language-menu {
        right: -52px;
        width: min(300px, calc(100vw - 32px));
        max-height: min(520px, calc(100vh - 130px));
    }
    .main-nav {
        position: fixed;
        top: 94px;
        left: 0;
        width: 100%;
        height: calc(100vh - 94px);
        padding: 35px 24px;
        background: var(--paper);
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow: auto;
        border-top: 1px solid var(--line);
    }
    .main-nav.open {
        display: flex;
    }
    .main-nav > a, .nav-group > a {
        font-size: 1.05rem;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink);
    }
    .main-nav .mobile-contact {
        display: flex;
        color: var(--gold);
    }
    .main-nav > a::after, .nav-group > a::after {
        display: none;
    }
    .nav-dropdown {
        display: block;
        position: static;
        background: transparent;
        box-shadow: none;
        border: 0;
        padding: 5px 0 5px 18px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
    .nav-dropdown a {
        color: var(--muted);
        padding: 8px 0;
    }
    .home-hero {
        height: auto;
        min-height: 0;
    }
    .home-emblem {
        top: 165px;
        right: 18px;
        width: 155px;
        transform: none;
        opacity: 0.14;
    }
    .project-showcase-hero {
        min-height: 560px;
    }
    .project-showcase-hero-inner {
        padding: 130px 0 52px;
    }
    .project-showcase-hero h1 {
        font-size: 3.2rem;
    }
    .project-switcher-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .project-switcher {
        display: flex;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: thin;
    }
    .project-switch-card {
        flex: 0 0 260px;
    }
    .project-showcase-menu {
        top: 94px;
    }
    .project-showcase-menu > div {
        width: min(100% - 32px, 1200px);
        gap: 20px;
    }
    .project-showcase-overview {
        grid-template-columns: 1fr;
    }
    .project-overview-media img {
        min-height: 320px;
    }
    .project-meta-list {
        grid-template-columns: 1fr;
    }
    .project-meta-list div,
    .project-meta-list div:nth-child(3n) {
        border-right: 0;
    }
    .project-amenity-grid,
    .project-plan-grid,
    .project-catalog-grid,
    .project-location-grid {
        grid-template-columns: 1fr;
    }
    .project-video-panel,
    .project-tour-section > .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-inner {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        padding-bottom: 40px;
    }
    .hero-copy {
        width: 100%;
    }
    .hero-copy h1 {
        font-size: 3rem;
    }
    .hero-monogram {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 50px;
        gap: 30px;
    }
    .hero-monogram > div {
        border-bottom: 1px solid var(--line);
        padding-bottom: 20px;
    }
    .hero-monogram > div:last-child {
        border-bottom: 0;
    }
    .hero-foot {
        display: none;
    }
    .search-panel-wrap {
        margin-top: 0;
    }
    .search-panel {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 16px;
    }
    .search-panel > div {
        padding: 12px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .search-button {
        margin: 10px 0 0;
        width: 100%;
        justify-content: center;
    }
    .intro-grid, .advisors-preview, .editorial, .split-image, .vision-grid, .project-intro, .split-heading, .contact-grid {
        grid-template-columns: 1fr;
    }
    .stat-block {
        border-left: 0;
        padding: 20px 0 0;
        border-top: 1px solid var(--line);
    }
    .property-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .property-image {
        height: 320px;
    }
    .advisors-preview {
        gap: 40px;
    }
    .editorial-aside {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 16px;
    }
    .image-panel {
        height: 400px;
    }
    .content-panel {
        margin: -40px 16px 0;
        padding: 35px;
    }
    .values-grid, .principles, .project-service-grid, .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .directory-head {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }
    .directory-search {
        width: 100%;
    }
    .academy-numbers {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .academy-numbers > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 16px 0;
        justify-content: flex-start;
    }
    .academy-numbers > div:last-child {
        border-bottom: 0;
    }
    .program-grid {
        grid-template-columns: 1fr;
    }
    .academy-banner > .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .academy-mark {
        font-size: 2.2rem;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-brand, .footer-contact {
        grid-column: auto;
    }
    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .main-gallery-image {
        height: 340px;
    }
    .gallery-thumbnails img {
        height: 64px;
    }
    .site-contact-bar {
        left: auto;
        right: 16px;
        bottom: 16px;
    }
    .site-contact-toggle {
        width: 60px;
        height: 60px;
    }
    .site-contact-combo-icon {
        width: 38px;
        height: 38px;
    }
    .site-contact-menu {
        bottom: 72px;
        min-width: 164px;
    }
}

@media (max-width: 540px) {
    .hero-copy h1 {
        font-size: 2.6rem;
    }
    .hero-copy p {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .project-showcase-hero h1 {
        font-size: 2.7rem;
    }
    .project-showcase-hero p {
        font-size: 0.98rem;
    }
    .project-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .project-hero-facts {
        flex-direction: column;
        align-items: flex-start;
    }
    .project-switcher-section {
        padding: 40px 0;
    }
    .project-switcher-head h2 {
        font-size: 1.55rem;
    }
    .project-hero-actions .button {
        width: 100%;
    }
    .project-hero-actions .text-link {
        justify-content: center;
        padding: 10px 0;
    }
    .project-showcase-section-head h2,
    .project-overview-copy h2,
    .project-location-layout h2,
    .project-payment-layout h2,
    .project-status-layout h2,
    .project-video-panel h2,
    .project-tour-section h2 {
        font-size: 2rem;
    }
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }
    .project-gallery-filters {
        flex-direction: column;
    }
    .project-status-images {
        grid-template-columns: 1fr;
    }
    .project-status-images img,
    .project-status-images img:first-child {
        grid-column: auto;
        height: 230px;
    }
    .hero-actions .button {
        width: 100%;
    }
    .hero-actions .text-link {
        justify-content: center;
        padding: 10px 0;
    }
    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .page-hero {
        height: 380px;
    }
    .details-specs-grid, .project-detail-grid, .project-detail-grid.compact {
        grid-template-columns: 1fr;
    }
    .details-specs-grid {
        padding: 20px;
    }
    .project-detail-panel, .project-detail-pill {
        padding: 20px;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .site-contact-toggle {
        width: 56px;
        height: 56px;
    }
    .site-contact-combo-icon {
        width: 36px;
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}


/* ==========================================================================
   PROJELER
   ========================================================================== */
.fa {
    --fa-gold: #BDA588;
    --fa-navy: #173E62;
    --fa-text: #66717A;
    --fa-divider: #e1e1e1;
    font-family: 'Outfit', sans-serif;
    color: var(--fa-text);
    background: #fff;
    line-height: 1.6;
}
.fa h1, .fa h2, .fa h3, .fa h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--fa-navy);
    margin: 0;
}
.fa p { color: var(--fa-text); margin: 0; }
.fa a { transition: color .25s ease; }

/* ---------- Sayfa hero (page title banner) ---------- */
.fa-pagehero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--fa-navy) center/cover no-repeat;
    background-image: var(--fa-hero);
}
.fa-pagehero::before { content: ""; position: absolute; inset: 0; background: rgba(23, 62, 98, .58); }
.fa-pagehero-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 48px));
    padding: 120px 0 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    gap: 48px;
    align-items: center;
}
.fa-pagehero h1 { color: #fff; font-size: clamp(2.4rem, 4.5vw, 3.4rem); font-weight: 500; margin-bottom: 16px; }
.fa-pagehero-copy p {
    max-width: 660px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}
.fa-pagehero-mark {
    justify-self: end;
    width: min(100%, 230px);
    opacity: .78;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .18));
}
.fa-pagehero-mark img {
    width: 100%;
    height: auto;
}

/* ---------- İçerik ---------- */
.fa-wrap { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.fa-intro { text-align: center; padding: 80px 0 50px; }
.fa-intro h2 { font-size: clamp(2rem, 3.6vw, 2.66rem); margin-bottom: 16px; }
.fa-intro p { max-width: 760px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Overlay kart ızgarası ---------- */
.fa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fa-grid.bottom { padding-bottom: 100px; }
.fa-card { position: relative; }
.fa-card-link { position: relative; display: block; overflow: hidden; border-radius: 3px; }
.fa-thumb { position: relative; padding-top: 80.95%; overflow: hidden; }
.fa-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.fa-card-link:hover .fa-thumb img { transform: scale(1.06); }
.fa-thumb::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 110%; background: linear-gradient(transparent, rgba(23, 62, 98, .75)); z-index: 2; }
.fa-card-number { position: absolute; right: 24px; bottom: 8px; z-index: 3; font-size: 82px; line-height: 1; font-weight: 500; color: #fff; opacity: .2; transition: opacity 1s ease; pointer-events: none; }
.fa-card-link:hover .fa-card-number { opacity: 1; }
.fa-card-content { position: absolute; left: 0; bottom: 0; z-index: 4; width: 100%; padding: 30px; }
.fa .fa-card-title { color: #fff; font-size: 22px; font-weight: 500; line-height: 1.3; margin: 0 0 4px; }
.fa-card-loc { color: #b4bbc2; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.fa-card-loc svg { width: 14px; height: 14px; color: var(--fa-gold); }

/* ---------- İç sayfa hero ---------- */
.fa-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: var(--fa-navy) center/cover no-repeat;
    background-image: var(--fa-hero);
}
/* Tam ekran proje hero'su (referans: faplusprojects.com/portfolio) */
.fa-hero-full { min-height: 100vh; min-height: 100svh; }
.fa-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(23, 62, 98, .25), rgba(23, 62, 98, .62)); }
.fa-hero-inner { position: relative; z-index: 2; display: grid; justify-items: center; padding: 110px 24px 60px; }
.fa-status { display: inline-block; background: var(--fa-gold); color: #fff; font-size: 0.72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: 7px 18px; border-radius: 999px; margin-bottom: 20px; }
.fa-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 500; margin-bottom: 10px; letter-spacing: -0.01em; }
.fa-hero-loc {
    display: inline-flex; align-items: center; gap: 6px; justify-content: center;
    color: rgba(255, 255, 255, .86); font-size: .82rem; font-weight: 500;
    letter-spacing: .04em; line-height: 1.35;
}
.fa-hero-loc svg { width: 14px; height: 14px; color: var(--fa-gold); }
.fa-hero-cta {
    display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
    padding: 14px 30px; border: 1px solid rgba(255, 255, 255, .6); border-radius: 3px;
    color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.fa-hero-cta svg { width: 18px; height: 18px; }
.fa-hero-cta:hover { background: var(--fa-gold); border-color: var(--fa-gold); color: #fff; }
.fa-hero-scroll {
    position: absolute; left: 50%; bottom: 96px; transform: translateX(-50%) rotate(90deg);
    z-index: 2; color: rgba(255, 255, 255, .85); animation: faHeroBounce 2s ease-in-out infinite;
}
.fa-hero-scroll svg { width: 26px; height: 26px; }
@keyframes faHeroBounce { 0%,100% { transform: translateX(-50%) rotate(90deg) translateX(0); } 50% { transform: translateX(-50%) rotate(90deg) translateX(8px); } }

/* Şeffaf üst menü + beyaz amblem (hero üzerinde, referans görünümü) */
body:has(.fa-hero-full) .site-header:not(.scrolled) {
    background: transparent;
    border-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
body:has(.fa-hero-full) .site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
body:has(.fa-hero-full) .site-header:not(.scrolled) .main-nav > a,
body:has(.fa-hero-full) .site-header:not(.scrolled) .nav-group > a,
body:has(.fa-hero-full) .site-header:not(.scrolled) .language-trigger,
body:has(.fa-hero-full) .site-header:not(.scrolled) .menu-button { color: #fff; }
body:has(.fa-hero-full) .site-header:not(.scrolled) .menu-button svg,
body:has(.fa-hero-full) .site-header:not(.scrolled) .language-trigger svg { color: #fff; }

/* ---------- Sticky bölüm menüsü ---------- */
.fa-menu {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    width: max-content;
    max-width: calc(100% - 32px);
    margin: -33px auto 60px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 7px 35px 0 rgba(0, 0, 0, .07);
    position: sticky;
    top: 112px;
    z-index: 40;
    overflow-x: auto;
    text-transform: uppercase;
}
.fa-menu li { flex: 0 0 auto; padding: 5px 10px; margin: 0 12px; }
.fa-menu a { white-space: nowrap; font-size: 0.78rem; font-weight: 500; letter-spacing: .04em; color: var(--fa-navy); }
.fa-menu a:hover, .fa-menu a.active { color: var(--fa-gold); }

/* ---------- Bölümler ---------- */
.fa-sect { padding: 45px 0; scroll-margin-top: 180px; }
.fa-sect-title { text-align: center; font-size: clamp(2rem, 3.6vw, 2.66rem); margin: 40px 0 55px; }

/* Detaylar (overview-style-) */
.fa-overview { display: grid; grid-template-columns: minmax(0, 3fr) minmax(220px, 1fr); }
.fa-overview-left { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.fa-overview-left img { width: 100%; border-radius: 3px; aspect-ratio: 3 / 2; object-fit: cover; }
.fa-overview-left p { font-size: 1rem; }
.fa-meta { list-style: none; margin: 0 0 0 40px; padding: 0; position: relative; }
.fa-meta::before { content: ""; position: absolute; left: -30px; top: 10px; width: 1px; height: 100%; background: var(--fa-divider); }
.fa-meta li { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 7px 0; }
.fa-meta .mt { font-weight: 600; color: #000; }
.fa-meta .mv { text-align: right; }

/* Tesisler / portfolio-list */
.fa-list { list-style: none; margin: 20px 0 0; padding: 0; }
.fa-list.cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 60px; }
.fa-list li { display: flex; justify-content: space-between; align-items: center; gap: 16px; border-bottom: 1px solid rgba(0, 0, 0, .05); padding: 12px 0; }
.fa-list li:last-child { border-bottom: none; }
.fa-list .li-label { font-weight: 600; color: #000; display: flex; align-items: center; gap: 10px; }
.fa-list .li-label svg { width: 18px; height: 18px; color: var(--fa-gold); flex: 0 0 auto; }
.fa-list .li-val { color: var(--fa-text); text-align: right; }
.fa-list.stack li { justify-content: flex-start; }

.fa-amenities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.fa-amenity {
    display: grid;
    gap: 14px;
    align-content: start;
    min-height: 138px;
    padding: 24px;
    border: 1px solid #ececec;
    border-radius: 4px;
    background: #fff;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.fa-amenity:hover {
    border-color: rgba(189, 165, 136, .55);
    box-shadow: 0 14px 34px rgba(23, 62, 98, .07);
    transform: translateY(-2px);
}

.fa-amenity-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(189, 165, 136, .14);
    color: var(--fa-gold);
}

.fa-amenity-icon svg {
    width: 24px;
    height: 24px;
}

.fa-amenity h3 {
    font-size: .98rem;
    line-height: 1.35;
    color: var(--fa-navy);
}

/* Plan */
.fa-plan { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fa-plan-card { border: 1px solid #ececec; border-radius: 4px; padding: 30px; text-align: center; transition: box-shadow .3s ease; }
.fa-plan-card:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, .06); }
.fa-plan-ic { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 50%; background: rgba(189, 165, 136, .14); color: var(--fa-gold); margin-bottom: 18px; }
.fa-plan-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.fa-plan-card p { font-size: 0.92rem; }

/* Galeri */
.fa-gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 24px;
}
.fa-gallery-tabs span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    border: 1px solid var(--fa-gold);
    border-radius: 999px;
    color: var(--fa-navy);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.fa-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fa-gallery a { position: relative; display: block; overflow: hidden; border-radius: 3px; aspect-ratio: 3 / 2; }
.fa-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.fa-gallery a:hover img { transform: scale(1.08); }
.fa-gallery a::after { content: ""; position: absolute; inset: 0; background: rgba(23, 62, 98, .35); opacity: 0; transition: opacity .3s ease; }
.fa-gallery a:hover::after { opacity: 1; }

/* Plan görselleri (kat planları tam gösterilir, kırpılmaz) */
.fa-plan-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.fa-plan-gallery a { display: block; border: 1px solid #ececec; border-radius: 4px; overflow: hidden; background: #fff; transition: box-shadow .3s ease; }
.fa-plan-gallery a:hover { box-shadow: 0 10px 30px rgba(23, 62, 98, .12); }
.fa-plan-gallery img { width: 100%; height: auto; display: block; }
@media (max-width: 720px) { .fa-plan-gallery { grid-template-columns: 1fr; } }

/* CTA bandı (video / sanal tur) */
.fa-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; background: #f6f4f1; border-radius: 4px; padding: 48px; }
.fa-band.center { flex-direction: column; text-align: center; }
.fa-band h3 { font-size: 1.5rem; margin-bottom: 8px; }
.fa-band p { max-width: 640px; }
.fa-actions-inline { display: inline-flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Konum / fiyat */
.fa-loc-head { text-align: center; font-size: 1.25rem; font-weight: 500; color: var(--fa-navy); margin: 0 0 28px; display: flex; gap: 10px; align-items: center; justify-content: center; }
.fa-loc-head svg { width: 22px; height: 22px; color: var(--fa-gold); }
.fa-map {
    margin: 34px auto 0;
    max-width: 980px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ececec;
    background: #f6f4f1;
}
.fa-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}
.fa-price { text-align: center; font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--fa-navy); font-weight: 500; margin: 0 0 26px; }
.fa-narrow { max-width: 860px; margin-inline: auto; }

.fa-catalog-empty {
    display: flex;
    justify-content: center;
}

.fa-catalog-empty .fa-btn[aria-disabled="true"] {
    pointer-events: none;
    opacity: .78;
}

/* İnşaat durumu */
.fa-status-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.fa-status-grid p { margin-bottom: 16px; }
.fa-status-media { display: grid; grid-template-columns: 2fr 1fr; grid-auto-rows: 1fr; gap: 12px; }
.fa-status-media img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.fa-status-media img:first-child { grid-row: 1 / 3; }
.fa-status-placeholder {
    min-height: 220px;
    display: grid;
    place-items: center;
    padding: 28px;
    border: 1px dashed var(--fa-divider);
    border-radius: 4px;
    background: #fff;
    color: var(--fa-text);
    text-align: center;
}

/* Gold buton */
.fa-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--fa-gold); color: #fff; font-weight: 500; padding: 15px 32px; border-radius: 3px; transition: background .25s ease, transform .25s ease; }
.fa-btn:hover { background: #a98f6f; transform: translateY(-2px); }
.fa-btn svg { width: 18px; height: 18px; }
.fa-btn.outline { background: transparent; border: 1px solid var(--fa-gold); color: var(--fa-gold); }
.fa-btn.outline:hover { background: var(--fa-gold); color: #fff; }

/* Diğer projeler */
.fa-more { background: #f6f4f1; padding: 90px 0; margin-top: 50px; }
.fa-more .fa-sect-title { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1050px) {
    .fa-grid { grid-template-columns: repeat(2, 1fr); }
    .fa-overview { grid-template-columns: 1fr; }
    .fa-meta { margin-left: 0; margin-top: 30px; }
    .fa-meta::before { display: none; }
    .fa-plan,
    .fa-amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
    .fa-pagehero, .fa-hero { min-height: 400px; }
    .fa-pagehero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 26px;
        padding: 112px 0 44px;
    }
    .fa-pagehero-copy p {
        margin-inline: auto;
    }
    .fa-pagehero-mark {
        justify-self: center;
        width: 145px;
    }
    .fa-menu { top: 104px; margin-top: -28px; }
    .fa-overview-left { grid-template-columns: 1fr; }
    .fa-list.cols { grid-template-columns: 1fr; gap: 0; }
    .fa-status-grid { grid-template-columns: 1fr; }
    .fa-gallery { grid-template-columns: repeat(2, 1fr); }
    .fa-band { padding: 32px; }
    .fa-map iframe { min-height: 330px; }
}
@media (max-width: 540px) {
    .fa-grid { grid-template-columns: 1fr; }
    .fa-plan,
    .fa-amenities { grid-template-columns: 1fr; }
    .fa-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
    .fa-list .li-val { text-align: left; }
    .fa-status-media { grid-template-columns: 1fr 1fr; }
    .fa-status-media img:first-child { grid-row: auto; grid-column: 1 / 3; }
}
