/* ========================================
   FUTURE-PROOF CSS SYSTEM v2
   ======================================== */

/* ========================================
   FONT FACE DECLARATIONS
   ======================================== */

/* Cormorant Font Family - Only load weights actually used */
@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/Cormorant-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Cormorant';
    src: url('../fonts/Cormorant-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Mulish Font Family - Only load weights actually used */
@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* CSS Custom Properties (Variables) */
:root {
    /* Colors */
    --primary-gold: #ae8f70;
    --primary-gold-light: #c4a882;
    --primary-gold-dark: #9a7d5e;
    --primary-white: #fff;
    --text-black: #141414;
    --text-dark: #606060;
    --text-medium-gray: #606060;
    --text-light-gray: #828282;
    --text-light: #999;
    --background-white: #fff;
    --background-light: #fffbf8;
    --background-light-blue: #ebf3f5;
    --background-dark: #333;
    
    /* Typography */
    --font-heading: 'Cormorant', serif;
    --font-body: 'Mulish', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 900;
    
    /* Spacing Scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
    --space-4xl: 6rem;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 14.5px;
    --text-medium: 1rem;
    --text-lg: 16.3px;
    --text-xl: 27px;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3.45rem;
    --text-6xl: 3.75rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --container-max-width: 1200px;
    --container-padding: 1.25rem;
    --section-padding: var(--space-3xl) 0;
    --section-padding-mobile: var(--space-2xl) 0;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: var(--font-weight-regular);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    line-height: 1.6;
    letter-spacing: .01em;
    color: var(--text-dark);
    background: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

* {
    box-sizing: border-box;
}

/* ========================================
   LAYOUT SYSTEM (Generic & Reusable)
   ======================================== */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding);
    width: 100%;
    overflow-x: hidden;
}

.section--light {
    background: var(--background-light);
}

.section--dark {
    background: var(--background-dark);
    color: var(--background-white);
}

.section--gold {
    background: var(--primary-gold);
    color: var(--background-white);
}

/* Two Column Section (Generic) */
.section-two-col {
    padding: var(--space-4xl) 0;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: stretch;
    min-height: 60vh;
}

/* Full Bleed Section (Edge to Edge) */
.section-full-bleed {
    padding: 0;
    width: 100%;
}

.section-two-col .section-grid,
.section-full-bleed .section-grid {
    gap: 0;
}

.section-two-col .content-block,
.section-full-bleed .content-block {
    padding: var(--space-4xl);
    max-width: 600px;
    margin: 0 auto;
}

.section-full-bleed .media-block {
    padding: 0;
}

.section-full-bleed .media-block img {
    border-radius: 0;
    box-shadow: none;
}

/* Content Block (Text Container) */
.content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-xl);
}

.content-block h2 {
    margin-bottom: var(--space-lg);
}

.content-block p {
    margin-bottom: var(--space-md);
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Media Block (Image/Video Container) */
.media-block {
    display: flex;
    align-items: stretch;
    justify-content: end;
    height: 100%;
    width: 100%;
}

.media-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Media Card (for portfolio items) */
.media-card {
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    aspect-ratio: 1;
    position: relative;
}

.media-card:hover {
    transform: translateY(0px);
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    box-shadow: none;
}

.media-card--portrait {
    aspect-ratio: 3 / 4; /* Portrait ratio */
    display: block;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.media-card--tall {
    aspect-ratio: 2 / 3; /* Taller portrait */
    display: block;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    text-decoration: none;
}

.media-card:hover img,
.media-card--portrait:hover img,
.media-card--tall:hover img {
    transform: scale(1.05);
}

.media-card--portrait img,
.media-card--tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    box-shadow: none;
}

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */

.heading-1 {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-light);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.heading-2 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-medium);
    letter-spacing: .05em;
    line-height: 1.12;
    color: var(--text-light-gray);
    margin-bottom: var(--space-lg);
}

.heading-2--left {
    justify-content: flex-start;
}

.heading-2--white {
    color: var(--background-white);
}

.heading-3 {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-light);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.heading-4 {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-weight-light);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.heading-5 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-weight-light);
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.heading-6 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-light);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.text-medium {
    font-size: var(--text-medium);
    font-weight: var(--font-weight-medium);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.text-large {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-medium);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.text-extra-large {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-extra-bold);
    line-height: 1.33;
    margin-bottom: var(--space-md);
}

.text-base {
    font-size: var(--text-base);
    font-weight: var(--font-weight-regular);
    line-height: 1.4705882353;
    margin-bottom: var(--space-sm);
}

.text-small {
    font-size: var(--text-sm);
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-gold { color: var(--primary-gold); }
.text-dark { color: var(--text-dark); }
.text-medium-gray { color: var(--text-medium-gray); }
.text-light { color: var(--text-light); }
.text-white { color: var(--background-white); }

/* ========================================
   COMPONENT SYSTEM
   ======================================== */

/* Button System */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    text-align: center;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    line-height: 1;
}

.btn--primary {
    background: var(--primary-white);
    color: var(--text-dark);
    border-color: var(--primary-white);
}

.btn--primary:hover {
    background: transparent;
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn--secondary:hover {
    background: var(--primary-gold);
    color: var(--background-white);
    transform: translateY(-2px);
}

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

.btn--dark:hover {
    background: transparent;
    color: var(--background-dark);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--background-white);
    color: var(--primary-gold);
    border-color: var(--background-white);
}

.btn--white:hover {
    background: transparent;
    color: var(--background-white);
    transform: translateY(-2px);
}

/* Card System */
.card {
    background: var(--background-white);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.card img {
    width: 100%;
    margin-bottom: var(--space-md);
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-xs);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-normal);
    overflow: hidden;
}

.navbar--scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    padding: var(--space-sm) 0;
}

.navbar--scrolled .nav-links a {
    color: var(--text-black);
}

.navbar--scrolled .mobile-menu-toggle span {
    background: var(--text-black);
}

.navbar--scrolled .logo-img {
    filter: none;
}

.navbar--fixed-white {
    position: fixed;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.navbar--fixed-white .nav-links a {
    color: var(--text-black) !important;
}

.navbar--fixed-white .mobile-menu-toggle span {
    background: var(--text-black) !important;
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--transition-normal);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-white);
    font-size: var(--text-xs);
    font-weight: var(--font-weight-regular);
    text-transform: uppercase;
    transition: color var(--transition-normal);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    margin: 3px 0;
    transition: var(--transition-normal);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.section-hero {
    height: 100vh;
    width: 100%;
    max-width: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('/assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-white);
    position: relative;
    padding: var(--space-lg);
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    padding: 0 var(--space-md);
}

.hero-subtitle {
    font-size: var(--text-base);
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
    color: var(--primary-gold);
    font-weight: var(--font-weight-medium);
    word-wrap: break-word;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-6xl);
    font-weight: var(--font-weight-light);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-description {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    margin-bottom: var(--space-xl);
    font-style: italic;
    font-weight: var(--font-weight-regular);
    word-wrap: break-word;
}

/* ========================================
   SECTION UTILITIES
   ======================================== */

.section-subtitle {
    font-size: var(--text-base);
    letter-spacing: 2px;
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: var(--space-sm);
    font-weight: var(--font-weight-medium);
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    color: var(--text-medium-gray);
}

.section-subtitle--white {
    color: var(--background-white);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--background-dark);
    color: var(--background-white);
    text-align: center;
    padding: var(--space-lg) 0;
}

.footer a {
    color: var(--primary-gold);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ========================================
   SPACING UTILITIES
   ======================================== */

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.image-decoration-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.decorative-bullet {
    display: block;
    margin: 0 auto var(--space-sm);
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    /* Navigation Mobile */
    .navbar {
        position: fixed;
        left: 0;
        right: 0;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        visibility: hidden;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    .nav-links li {
        margin: var(--space-md) 0;
    }
    
    .nav-links a {
        color: var(--text-black) !important;
        font-size: var(--text-xl);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Typography Mobile */
    .hero-title {
        font-size: var(--text-4xl);
    }

    .hero-description {
        font-size: var(--text-lg);
    }

    .heading-1 { font-size: var(--text-4xl); word-wrap: break-word; }
    .heading-2 {
        font-size: var(--text-3xl);
        word-wrap: break-word;
        flex-wrap: wrap;
    }
    .heading-3 { font-size: var(--text-2xl); word-wrap: break-word; }
    
    /* Grid Mobile */
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
    
    /* Two Column Sections Mobile */
    .section-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        min-height: auto;
    }
    
    .content-block {
        padding: var(--space-lg);
        text-align: center;
    }
    
    .media-block {
        order: -1;
    }
    
    .media-block img {
        width: 100%;
        height: auto;
    }
    
    /* Full Bleed Mobile */
    .section-full-bleed .content-block {
        padding: var(--space-xl);
        text-align: center;
    }
    
    .section-full-bleed .media-block img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-content {
        padding: var(--space-sm);
    }
    
    .card {
        padding: var(--space-lg);
    }
}



/* ========================================
   FORM SYSTEM
   ======================================== */

   .form-container {
    max-width: 600px;
    margin: 0 auto var(--space-4xl);
}

.contact-form {
    background: var(--background-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-weight-regular);
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-dark);
    background: var(--background-white);
    border: 1px solid var(--primary-gold);;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-gold);
    background: var(--background-white);
    box-shadow: 0 0 0 3px rgba(174, 143, 112, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    text-align: center;
    margin-top: var(--space-xl);
}

.btn--large {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

/* Form Validation States */
.form-input:invalid:not(:placeholder-shown),
.form-textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-input:valid:not(:placeholder-shown),
.form-textarea:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: var(--space-xl);
    }

    .form-container {
        margin-bottom: var(--space-2xl);
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    .btn {
        min-height: 44px; /* Touch-friendly size */
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: var(--space-lg);
    }

    .btn--large {
        width: 100%;
        padding: var(--space-md) var(--space-lg);
        min-height: 48px;
    }
}







/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

   .testimonial-carousel {
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
    position: relative;
    padding: 0 var(--space-3xl);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: var(--space-xl);
}

.testimonial-card {
    min-width: 100%;
    background: var(--background-white);
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 120px;
    line-height: 0.8;
    color: var(--primary-gold);
    opacity: 0.2;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: var(--text-base);
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--primary-gold);
}

.author-name {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-regular);
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.author-detail {
    font-size: var(--text-xs);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    color: var(--background-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.testimonial-btn:hover {
    background: var(--primary-gold-dark);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: var(--space-sm);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-light);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-carousel {
        padding: 0 var(--space-xl);
    }
    
    .testimonial-card {
        padding: var(--space-2xl) var(--space-lg);
    }
    
    .testimonial-quote {
        font-size: 80px;
    }
    
    .testimonial-text {
        font-size: var(--text-base);
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel {
        padding: 0 var(--space-md);
    }
    
    .testimonial-card {
        padding: var(--space-xl) var(--space-md);
    }
    
    .testimonial-controls {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .testimonial-btn--prev,
    .testimonial-btn--next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .testimonial-btn--prev {
        left: 0;
    }
    
    .testimonial-btn--next {
        right: 0;
    }
}

/* ========================================
   PORTFOLIO ITEM PAGE
   ======================================== */

.portfolio-hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('/assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--background-white);
    position: relative;
    margin-top: 100px;
}

.portfolio-hero__content {
    max-width: 800px;
    padding: var(--space-lg);
}

.portfolio-intro {
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
}

.portfolio-gallery {
    width: 100%;
    max-width: 100%;
    margin-bottom: var(--space-2xl);
    overflow-x: hidden;
}

.portfolio-grid {
    display: grid;
    gap: var(--space-xs);
    width: 100%;
    max-width: 100%;
}

.portfolio-grid--two-col {
    grid-template-columns: repeat(2, 1fr);
}

.portfolio-grid--three-col {
    grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid--full {
    grid-template-columns: 1fr;
}

.portfolio-image {
    overflow: hidden;
    position: relative;
    background: var(--background-dark);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.portfolio-image:hover img {
    transform: scale(1.05);
}

.portfolio-image--tall {
    aspect-ratio: 2 / 3;
}

.portfolio-image--landscape {
    aspect-ratio: 16 / 9;
}

.portfolio-grid--two-col .portfolio-image {
    aspect-ratio: 4 / 5;
}

.portfolio-grid--three-col .portfolio-image {
    aspect-ratio: 3 / 4;
}

.portfolio-comment {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.portfolio-comment h3 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-lg);
    color: var(--text-light-gray);
}

.portfolio-comment p {
    margin-bottom: var(--space-md);
}

.portfolio-comment p:last-child {
    margin-bottom: 0;
}

.portfolio-testimonial {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-white);
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-hero {
        height: 60vh;
        min-height: 400px;
        margin-top: 80px;
    }

    .portfolio-grid--two-col,
    .portfolio-grid--three-col {
        grid-template-columns: 1fr;
    }

    .portfolio-image--tall {
        aspect-ratio: 4 / 5;
    }

    .portfolio-comment h3 {
        font-size: var(--text-3xl);
    }

    .portfolio-testimonial {
        padding: var(--space-2xl) var(--space-lg);
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        height: 50vh;
        min-height: 350px;
    }

    .portfolio-testimonial {
        padding: var(--space-xl) var(--space-md);
    }
}

/* ========================================
   SURVEY SYSTEM
   ======================================== */

.survey-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.survey-progress {
    max-width: 600px;
    margin: 0 auto var(--space-sm);
    height: 8px;
    background: var(--background-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.survey-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-light));
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
    width: 20%;
}

.survey-progress-text {
    text-align: center;
    font-size: var(--text-sm);
    color: var(--text-medium-gray);
    margin-bottom: var(--space-3xl);
    font-weight: var(--font-weight-medium);
}

.survey-container {
    max-width: 800px;
    margin: 0 auto;
}

.survey-form {
    background: var(--background-white);
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.survey-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.survey-step.active {
    display: block;
}

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

.survey-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.survey-option {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--background-light);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.survey-option:hover {
    background: var(--background-white);
    border-color: var(--primary-gold-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.survey-option input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-gold);
    flex-shrink: 0;
}

.survey-option input[type="checkbox"]:checked + .survey-option-label {
    color: var(--text-black);
}

.survey-option:has(input[type="checkbox"]:checked) {
    background: var(--background-white);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
}

.survey-option-label {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
}

.survey-option-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-weight-regular);
    color: var(--text-dark);
    line-height: 1.3;
}

.survey-option-description {
    font-size: var(--text-sm);
    color: var(--text-medium-gray);
    line-height: 1.5;
}

.survey-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--background-light);
}

.survey-navigation .btn {
    min-width: 120px;
}

.survey-navigation .btn:only-child {
    margin-left: auto;
}

.survey-success {
    text-align: center;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--background-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.survey-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: var(--primary-gold);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .survey-form {
        padding: var(--space-2xl) var(--space-lg);
    }

    .survey-option {
        padding: var(--space-md);
        gap: var(--space-sm);
    }

    .survey-option-title {
        font-size: var(--text-lg);
    }

    .survey-option-description {
        font-size: var(--text-xs);
    }

    .survey-navigation {
        flex-direction: column-reverse;
    }

    .survey-navigation .btn {
        width: 100%;
    }

    .survey-success {
        padding: var(--space-3xl) var(--space-lg);
    }

    .survey-success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .survey-form {
        padding: var(--space-xl) var(--space-md);
    }

    .survey-header h1 {
        font-size: var(--text-3xl);
    }

    .survey-option {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .survey-option input[type="checkbox"] {
        align-self: flex-start;
    }
}