/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 20px);
    box-sizing: border-box;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    padding: clamp(0.5rem, 1.5vw, 1rem) 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(10px, 2vw, 30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 2rem);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.2vw, 12px);
    flex: 0 1 auto;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

/* Prevent image right-click and selection */
img {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.nav-logo-img {
    width: clamp(28px, 3vw, 40px);
    height: clamp(28px, 3vw, 40px);
    display: block;
    flex-shrink: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-logo h2 {
    color: #0066cc;
    font-weight: 600;
    font-size: clamp(0.75rem, 1.8vw, 1.5rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    margin: 0;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.5rem, 1.5vw, 2rem);
    flex: 0 1 auto;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.nav-item {
    flex-shrink: 1;
}

.nav-link {
    text-decoration: none;
    color: #0066cc;
    font-weight: 500;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    transition: color 0.3s ease;
    white-space: nowrap;
    display: block;
    padding: 0.25rem 0;
}

.nav-link:hover {
    color: #0052a3;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #0066cc;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0066cc;
    color: white;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 6rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #e2e8f0;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 5rem;
    line-height: 1.7;
    color: #cbd5e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 4rem;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #0066cc;
    color: white;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Sculpture Section */
.sculpture-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .sculpture-section {
        padding: 0;
        margin: 0;
    }
}

.sculpture-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .sculpture-container,
    .pillars-container,
    .violins-container,
    .fall-container,
    .winter-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        position: relative;
        left: 0;
        right: 0;
    }

    .sculpture-image-wrapper,
    .pillars-image-wrapper,
    .violins-image-wrapper,
    .fall-image-wrapper,
    .winter-image-wrapper {
        width: 100vw;
        max-width: 100vw;
    }
}

.sculpture-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    width: 100vw;
    max-width: 100vw;
}

.sculpture-image-wrapper:hover {
    transform: scale(1.02);
}

.sculpture-image {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.sculpture-image-wrapper:hover .sculpture-image {
    transform: scale(1.05);
}

/* Pillars Section */
.pillars-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .pillars-section {
        padding: 0;
        margin: 0;
    }
}

.pillars-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.pillars-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    width: 100vw;
    max-width: 100vw;
}

.pillars-image-wrapper:hover {
    transform: scale(1.02);
}

.pillars-image {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.pillars-image-wrapper:hover .pillars-image {
    transform: scale(1.05);
}

/* Violins Section */
.violins-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .violins-section {
        padding: 0;
        margin: 0;
    }
}

.violins-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.violins-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    width: 100vw;
    max-width: 100vw;
}

.violins-image-wrapper:hover {
    transform: scale(1.02);
}

.violins-image {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.violins-image-wrapper:hover .violins-image {
    transform: scale(1.05);
}

/* Fall Section */
.fall-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .fall-section {
        padding: 0;
        margin: 0;
    }
}

.fall-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.fall-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    width: 100vw;
    max-width: 100vw;
}

.fall-image-wrapper:hover {
    transform: scale(1.02);
}

.fall-image {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.fall-image-wrapper:hover .fall-image {
    transform: scale(1.05);
}

/* Winter Section */
.winter-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .winter-section {
        padding: 0;
        margin: 0;
    }
}

.winter-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.winter-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    width: 100vw;
    max-width: 100vw;
}

.winter-image-wrapper:hover {
    transform: scale(1.02);
}

.winter-image {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    max-width: 100%;
}

.winter-image-wrapper:hover .winter-image {
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header p {
    font-size: clamp(0.95rem, 2.8vw, 1.2rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #2c3e50;
}

.about-text h3:not(:first-child) {
    margin-top: 3rem;
}

.about-text p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 0;
    padding-top: calc(1.5rem + 1rem);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

/* Core Values Section */
.values {
    padding: 6rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}

.value-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #0066cc;
    cursor: pointer;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #0066cc;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.value-card h3 {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    font-weight: 600;
    margin-bottom: 0;
    color: #2c3e50;
}

.value-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #0066cc;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.8);
    pointer-events: none;
}

.value-card:hover .value-expand {
    opacity: 0.6;
}

.value-card.active .value-expand {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

.value-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 0;
    display: block;
}

.value-card.active > .value-description {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.value-card:not(.active) > .value-description {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
}

.value-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background: #f8fafc;
}

.approach-container-full {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.approach-main-layout {
    max-width: 1400px;
    margin: 0 auto 5rem auto;
}

/* Left Column: Investment Criteria */
.approach-criteria-column {
    background: transparent;
    padding: 0;
}

.sourcing-strategy {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}

.sourcing-strategy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}

.sourcing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sourcing-list li {
    padding: 0.8rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    border-bottom: 1px solid #e8e8e8;
}

.sourcing-list li:last-child {
    border-bottom: none;
}

.sourcing-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1rem;
}

.sourcing-list li strong {
    color: #2c3e50;
    font-weight: 600;
}

.approach-criteria-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}

.criteria-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.criteria-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.criteria-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.criteria-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.5rem;
}

.criteria-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.criteria-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.criteria-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.criteria-card li:last-child {
    border-bottom: none;
}

.criteria-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
}

.criteria-card li strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Legacy support for old class names */
.criteria-grid-two-rows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.criteria-column-left,
.criteria-column-right {
    display: contents;
}

.criteria-pillar {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.criteria-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.criteria-pillar h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.criteria-pillar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-pillar li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.criteria-pillar li:last-child {
    border-bottom: none;
}

.criteria-pillar li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 600;
    font-size: 0.9rem;
}

.criteria-pillar li strong {
    color: #2c3e50;
    font-weight: 600;
}

.approach-read-more {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e8;
}

.approach-read-more p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

.read-more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

/* Investment Approach Page Styles */
.investment-approach-page {
    padding: 0;
    background: #f8fafc;
    margin-bottom: 0;
    padding-bottom: 3rem;
}

.investment-approach-page .container {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Hero Section for Investment Approach Page */
.approach-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.approach-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.approach-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block;
}

.portfolio-hero-image {
    animation: imageMovement 20s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes imageMovement {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(2%, 1%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.approach-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.approach-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.45) 0%, rgba(0, 102, 204, 0.35) 100%);
    z-index: 2;
}

.approach-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.approach-hero-content h1 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    border: none;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.approach-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.back-link-hero {
    position: absolute;
    top: 5.5rem;
    left: 2rem;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.back-link-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-5px);
}

.back-link-hero i {
    font-size: 0.9rem;
}

.approach-page-content {
    position: relative;
    z-index: 1;
    background: #f8fafc;
    padding-top: 4rem;
    padding-bottom: 0;
    margin-top: 3rem;
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
    box-sizing: border-box;
    width: 100%;
}

/* Contact Page Styles */
.contact-page {
    padding: 8rem 0 6rem;
    background: #f8fafc;
    min-height: 100vh;
}

.contact-page .contact {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

/* Portfolio Page Styles */
.portfolio-page {
    padding: 0;
    background: #f8fafc;
    margin-bottom: 0;
    padding-bottom: 3rem;
}

.portfolio-page .container {
    padding-top: 4rem;
}

.coming-soon-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.coming-soon-box {
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 600px;
}

.coming-soon-icon {
    font-size: 4rem;
    color: #0066cc;
    margin-bottom: 2rem;
}

.coming-soon-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.coming-soon-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.page-header {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #0052a3;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}


.approach-special-text {
    background: white;
    padding: 3rem 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 3rem -2rem;
    text-align: center;
    width: calc(100% + 4rem);
    max-width: 1500px;
}

.approach-special-text p {
    font-size: clamp(0.95rem, 2.8vw, 1.15rem);
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.approach-special-text p:first-child {
    margin-bottom: 1.5rem;
}

.approach-page-text {
    background: white;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2.5rem);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 0 0 3rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.approach-page-text p {
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.approach-page-text p:last-child {
    margin-bottom: 0;
}

.approach-page-criteria {
    background: white;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 2.5rem);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 0 0 3rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.approach-page-criteria h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
    padding-left: 0;
    padding-right: 0;
}

/* Override card styles for approach page - use old simple design */
.approach-page-criteria .criteria-pillar {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: none;
    transition: none;
}

.approach-page-criteria .criteria-pillar:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.approach-page-criteria .criteria-pillar h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.approach-page-criteria .criteria-pillar li {
    padding: 0.6rem 0;
    padding-left: 1.2rem;
    border-bottom: 1px solid #e8e8e8;
}

.approach-page-criteria .criteria-pillar li::before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    font-size: 1rem;
}

.approach-page-criteria .criteria-grid-two-rows {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .approach-page-criteria .criteria-grid-two-rows {
        flex-direction: row;
        gap: 3rem;
    }
}

.approach-page-criteria .criteria-column-left,
.approach-page-criteria .criteria-column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Full width corner to corner image */
.approach-full-width-image {
    margin: 4rem 0;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 0;
    right: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}

.approach-corner-image {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    transition: transform 0.5s ease;
    max-width: 100%;
}

.approach-corner-image-center {
    object-position: center 26%;
}

.approach-corner-image-top {
    object-position: center top;
}

.approach-corner-image-process {
    object-position: center 51%;
}

.approach-corner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    transition: background 0.3s ease;
}

.approach-full-width-image:hover .approach-corner-image {
    transform: scale(1.05);
}

.approach-full-width-image:hover .approach-corner-overlay {
    background: rgba(0, 0, 0, 0.1);
}

/* Image breaks for approach page */
.approach-page-image-break {
    margin: 4rem 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.approach-break-image {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.approach-break-image:hover {
    transform: scale(1.02);
}

.sourcing-strategy-page {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8e8e8;
}

.sourcing-strategy-page h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}

.approach-process-page {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.approach-process-page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}

.page-footer-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 0;
    padding-bottom: 0;
    flex-wrap: wrap;
}

.page-footer-actions .btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.page-footer-actions .btn-secondary:hover {
    background: #0066cc;
    color: white;
    transform: translateY(-2px);
}

/* Right Column: Description */
.approach-description-column {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.approach-description-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
}

.approach-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e50;
    font-weight: 500;
}

.approach-description-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Process Timeline */
.approach-process {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.approach-process h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #0066cc;
    min-width: 0;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: white;
}

.process-number {
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 0.8rem auto;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.process-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.process-content p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Investment Opportunities Section */
.opportunities {
    padding: 6rem 0;
    background: white;
}

.opportunity-section {
    margin-bottom: 4rem;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.opportunity-header {
    margin-bottom: 2rem;
}

.opportunity-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.opportunity-subtitle {
    font-size: 1.1rem;
    color: #0066cc;
    font-weight: 500;
    font-style: italic;
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.opportunity-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.opportunity-focus h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.opportunity-focus ul {
    list-style: none;
    padding-left: 0;
}

.opportunity-focus li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #4a5568;
}

.opportunity-focus li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.opportunity-focus strong {
    color: #2c3e50;
}

/* Risk Management Section */
.risk-management {
    padding: 6rem 0;
    background: #f8fafc;
}

.risk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.risk-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.risk-strategies {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategy-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0066cc;
}

.strategy-icon {
    font-size: 2rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.strategy-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.strategy-item p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: #f8fafc;
}

.team .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
}

.team-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.75rem;
    padding-bottom: 2.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: relative;
    min-height: fit-content;
}

.team-expand-arrow {
    display: none;
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #0066cc;
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.team-expand-arrow:hover {
    background: #084f99;
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.team-expand-arrow.visible {
    display: flex;
}

.team-expand-arrow.expanded {
    transform: translateX(-50%) rotate(180deg);
}

.team-expand-arrow.expanded:hover {
    transform: translateX(-50%) rotate(180deg) scale(1.1);
}

.team-card-photo {
    width: 190px;
    height: 220px;
    min-width: 190px;
    min-height: 220px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    /* Image protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
    pointer-events: auto;
}

.team-card-photo:hover {
    transform: scale(1.05);
}

.placeholder-photo {
    object-fit: contain;
}

.team-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0.85rem 0 0.3rem 0;
}

.team-card-title {
    font-size: 1rem;
    color: #0066cc;
    font-weight: 600;
    margin: 0 0 0.6rem 0;
}

.team-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: #0a66c2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 8px 12px rgba(10, 102, 194, 0.15);
    margin-bottom: 1.5rem;
}

.team-card-link:hover {
    background: #084f99;
    transform: translateY(-1px);
}

.team-card-link:focus-visible {
    outline: 2px solid #0a66c2;
    outline-offset: 3px;
}

.team-card-content {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0;
    position: relative;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.team-card-content.collapsed {
    overflow: hidden;
    position: relative;
}

.team-card-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
    pointer-events: none;
}

.team-card-content.expanded {
    overflow: visible;
    margin-bottom: 0.5rem;
}

.team-card-content.expanded::after {
    display: none;
}

.team-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.7rem;
    width: 100%;
    text-align: left;
}

.team-card-list li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 1rem;
    line-height: 1.55;
    color: #4a5568;
}

.team-card-list li::before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.team-card .read-more-btn {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #cbd5e0;
    border-radius: 50%;
    color: #718096;
    font-size: 0.75rem;
    cursor: pointer;
    padding: 0;
    margin-top: 0.75rem;
    margin-bottom: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    overflow: hidden;
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.team-card .read-more-btn span {
    display: none;
}

.team-card .read-more-btn::before {
    content: '▼';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    line-height: 1;
}

.team-card .read-more-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #a0aec0;
    color: #4a5568;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.team-card .read-more-btn:active {
    transform: translateY(0);
}

.team-card .read-more-btn.visible {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: fadeInUp 0.4s ease-out;
}

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

.team-card .read-more-btn.expanded::before {
    content: '▲';
    transform: rotate(0deg);
}

.team-card .read-more-btn.expanded {
    background: rgba(255, 255, 255, 1);
    border-color: #a0aec0;
}

/* Board of Advisers Section */
.board-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.board-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    text-align: center;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.board-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.board-member-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.board-photo {
    width: 150px;
    height: auto;
    max-height: 200px;
    border-radius: 20px;
    object-fit: contain;
    /* Image protection */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-touch-callout: none;
}

.board-member-info h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.board-member-details {
    text-align: left;
    margin-top: 1rem;
}

.board-member-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.board-member-details li {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.board-member-details li::before {
    content: '•';
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: #0066cc;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #0052a3;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    justify-items: center;
    text-align: center;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 1072px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: clamp(60px, 8vw, 70px);
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        top: clamp(55px, 7vw, 65px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .hero-description {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h3 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }

    .about-text p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-criteria-column,
    .approach-description-column {
        padding: 1.5rem;
    }

    .approach-process {
        padding: 2rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .criteria-grid-two-rows,
    .criteria-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .criteria-card {
        padding: 1.5rem;
    }
    
    .criteria-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .criteria-card h4 {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .criteria-card li {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }

    .approach-full-width-image {
        margin: 2.5rem 0;
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        position: relative;
    }

    .approach-corner-image {
        height: 200px;
        width: 100vw;
        max-width: 100vw;
        object-fit: cover;
        display: block;
    }

    .approach-corner-image-top {
        object-position: center top;
    }

    .approach-corner-image-center {
        object-position: center center;
    }

    .approach-corner-image-process {
        object-position: center bottom;
    }

    .approach-page-image-break {
        margin: 2.5rem 0;
        border-radius: 8px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .approach-break-image {
        height: 400px;
        width: 100vw;
        max-width: 100vw;
        object-fit: cover;
    }

    .approach-special-text {
        padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
        margin: 2rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .approach-special-text p {
        font-size: clamp(0.95rem, 2.8vw, 1.15rem);
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .approach-page-text {
        padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
        margin: 0 0 3rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .approach-page-text p {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
        line-height: 1.7;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .approach-page-criteria {
        padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
        margin: 0 0 3rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .approach-page-criteria h2 {
        font-size: clamp(1.3rem, 4vw, 2rem);
    }

    .approach-page-criteria .criteria-pillar h4 {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }

    .approach-page-criteria .criteria-pillar li {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }

    .approach-process-page {
        padding: 2rem;
    }

    .approach-hero {
        height: 60vh;
        min-height: 400px;
    }

    .approach-hero-content {
        padding: 1rem;
    }

    .approach-hero-content h1 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
        letter-spacing: 1px;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
    }

    .back-link-hero {
        top: 4.5rem;
        left: 1rem;
        font-size: clamp(0.75rem, 2.2vw, 0.85rem);
        padding: 0.4rem 0.8rem;
    }

    .approach-hero-subtitle {
        font-size: clamp(0.95rem, 2.8vw, 1.1rem);
    }

    .page-header h1 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .approach-page-criteria h2,
    .approach-process-page h2 {
        font-size: clamp(1.3rem, 3.5vw, 1.5rem);
    }

    .process-step {
        padding: 1rem;
    }

    .process-content h4 {
        font-size: clamp(0.8rem, 2.2vw, 0.85rem);
    }

    .process-content p {
        font-size: clamp(0.7rem, 2vw, 0.75rem);
    }

    .risk-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .value-card {
        padding: clamp(1rem, 3vw, 1.5rem);
    }

    .value-icon {
        font-size: clamp(2rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: clamp(0.75rem, 2vw, 0.95rem);
    }

    .value-description p {
        font-size: clamp(0.85rem, 2.2vw, 0.95rem);
    }

    .opportunity-section {
        padding: 2rem;
    }

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

    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .team-card-photo {
        width: 170px;
        height: 190px;
        min-width: 170px;
        min-height: 190px;
        object-fit: cover;
        object-position: center top;
    }

    .team-card-list li {
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .section-header p {
        font-size: clamp(0.95rem, 2.8vw, 1.2rem);
    }

    .sculpture-image,
    .pillars-image,
    .violins-image,
    .fall-image,
    .winter-image {
        height: 200px;
        width: 100vw;
        max-width: 100vw;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: clamp(50px, 6vw, 60px);
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .hero-description {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }

    .btn {
        padding: 10px 20px;
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    }

    .approach-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: clamp(1rem, 4vw, 1.25rem);
    }

    .value-icon {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
        margin-bottom: 0.75rem;
    }

    .value-card h3 {
        font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    }

    .value-description p {
        font-size: clamp(0.8rem, 2.8vw, 0.9rem);
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 1.25rem;
    }

    .team-card-photo {
        width: 150px;
        height: 170px;
        min-width: 150px;
        min-height: 170px;
        object-fit: cover;
        object-position: center top;
    }

    .opportunity-header h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .approach-special-text {
        padding: clamp(1.25rem, 5vw, 2rem) clamp(0.75rem, 3vw, 1.5rem);
        margin: 1.5rem 0;
    }

    .approach-special-text p {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .approach-page-text {
        padding: clamp(1.25rem, 5vw, 2rem) clamp(0.75rem, 3vw, 1.5rem);
    }

    .approach-page-text p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
    }

    .approach-page-criteria {
        padding: clamp(1.25rem, 5vw, 2rem) clamp(0.75rem, 3vw, 1.5rem);
    }

    .approach-page-criteria h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .approach-hero {
        height: 50vh;
        min-height: 350px;
    }

    .approach-hero-content h1 {
        font-size: clamp(1.2rem, 6vw, 1.5rem);
        padding: 0.5rem;
    }

    .approach-corner-image {
        height: 200px;
        width: 100vw;
        max-width: 100vw;
    }

    .sculpture-image,
    .pillars-image,
    .violins-image,
    .fall-image,
    .winter-image {
        height: 200px;
        width: 100vw;
        max-width: 100vw;
        object-fit: cover;
        object-position: center;
        display: block;
    }
}

@media (max-width: 360px) {
    .nav-menu {
        top: clamp(45px, 5vw, 55px);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Honeypot - ascuns de utilizatori, vizibil pentru roboți care completează tot */
.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Form Message Styles */
.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Form Button Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Group Focus States */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}
