/* 
   THECHOSENLENS.CO
   Custom Luxury Design System (Creme, Gold, Black)
*/

/* --- Custom Properties / CSS Variables --- */
:root {
    --bg-creme: #FDFBF7;
    --bg-soft: #F6F3EB;
    --bg-dark: #0B0B0B;
    --bg-charcoal: #1C1C1C;
    
    --color-gold: #D4AF37;
    --color-gold-hover: #AA841C;
    --color-champagne: #C5A880;
    --color-gold-glow: rgba(212, 175, 55, 0.15);
    
    --text-dark: #1F1F1F;
    --text-muted: #5C5850;
    --text-light: #FDFBF7;
    --text-light-muted: #AFAAA0;
    
    --border-light: #EBE5D8;
    --border-dark: #333029;
    
    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --max-width: 1200px;
    --header-height: 80px;
}

/* --- Reset & Core Setup --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-creme);
    color: var(--text-dark);
    font-family: var(--ff-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-creme);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-charcoal);
    border: 2px solid var(--bg-creme);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* --- Common Components & Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-serif);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
}

.bg-soft {
    background-color: var(--bg-soft);
}

.text-center {
    text-align: center;
}

.font-italic {
    font-style: italic;
    font-family: var(--ff-serif);
}

.mt-15 {
    margin-top: 15px;
}

/* Typography Accent Styles */
.accent-gold {
    color: var(--color-gold);
}

.text-black {
    color: var(--bg-dark);
    font-weight: 500;
}

/* Section Header Layout */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--bg-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    font-family: var(--ff-serif);
    color: var(--text-muted);
    margin-top: 15px;
    font-weight: 300;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
    margin: 20px auto 0;
}

.gold-divider.left-aligned {
    margin: 20px 0 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--ff-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: 1px solid var(--bg-dark);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--bg-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--bg-dark);
    border: 1px solid var(--color-gold);
    font-weight: 600;
}

.btn-gold:hover {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn.full-width {
    width: 100%;
}

/* --- Main Header / Nav Bar --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

/* Header scrolled state via JS */
.main-header.scrolled {
    background-color: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--bg-dark);
}

/* Nav Menu */
.nav-list {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--bg-dark);
    padding: 8px 0;
    position: relative;
    opacity: 0.85;
}

.nav-item:hover,
.nav-item.active {
    opacity: 1;
    color: var(--color-gold);
}

/* Underline Animation */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

/* Hamburger mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--bg-dark);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('assets/images/couple-columns.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
    padding-top: var(--header-height);
}

/* Overlay for visual readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(11, 11, 11, 0.45) 0%, 
        rgba(11, 11, 11, 0.6) 50%, 
        rgba(11, 11, 11, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-family: var(--ff-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-champagne);
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-description {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    color: var(--text-light-muted);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Scroll down indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

/* --- Gallery & Filters Section --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--border-light);
    padding: 10px 24px;
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-muted);
}

.filter-btn:hover {
    border-color: var(--color-gold);
    color: var(--bg-dark);
}

.filter-btn.active {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hiding state for filters */
.gallery-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--bg-soft);
}

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

/* Overlay element */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 11, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 24px;
    text-align: center;
    cursor: pointer;
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.item-category {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
}

.item-title {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 300;
}

.view-btn {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 1px solid var(--color-gold);
    padding-bottom: 4px;
    display: inline-block;
}

/* Hover effects */
.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

/* --- Lightbox Modal --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.96);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-light-muted);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2002;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-light-muted);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 16px;
    transition: var(--transition-fast);
    z-index: 2001;
}

.lightbox-nav:hover {
    color: var(--color-gold);
}

.lightbox-nav.prev {
    left: 24px;
}

.lightbox-nav.next {
    right: 24px;
}

.lightbox-content-wrapper {
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border: 1px solid var(--border-dark);
}

.lightbox-caption-panel {
    margin-top: 20px;
    text-align: center;
    color: var(--text-light);
}

.lightbox-category {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 5px;
}

.lightbox-title {
    font-size: 1.6rem;
    font-weight: 300;
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    width: 100%;
}

.art-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gold-accent-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--color-gold);
    z-index: -1;
    pointer-events: none;
}

.camera-graphic {
    width: 70%;
    height: 70%;
}

.visual-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--color-gold);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-paragraph {
    font-size: 1.05rem;
    margin-top: 30px;
    line-height: 1.7;
}

.about-attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 30px 0;
}

.attribute-item {
    text-align: center;
}

.attribute-number {
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    color: var(--color-gold);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.attribute-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* --- Services & Pricing --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-creme);
    border: 1px solid var(--border-light);
    padding: 48px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-champagne);
    box-shadow: 0 16px 30px rgba(92, 88, 80, 0.08);
}

/* Card badges */
.card-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: var(--color-gold);
}

/* Featured card highlight */
.pricing-card.featured {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--color-gold);
}

.pricing-card.featured .section-title,
.pricing-card.featured .package-name,
.pricing-card.featured .package-price {
    color: var(--text-light);
}

.pricing-card.featured p {
    color: var(--text-light-muted);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12);
}

.card-header {
    margin-bottom: 30px;
    text-align: center;
}

.package-name {
    font-size: 1.6rem;
    color: var(--bg-dark);
    margin-bottom: 15px;
}

.package-price {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    color: var(--bg-dark);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 300;
}

.package-price .currency {
    font-size: 1.6rem;
    vertical-align: super;
}

.package-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-features li {
    font-size: 0.9rem;
    font-weight: 300;
    position: relative;
    padding-left: 20px;
}

/* Elegant gold bullet point */
.package-features li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
    top: -2px;
}

.package-growth-note {
    margin-top: 24px;
    padding: 16px;
    background-color: var(--bg-soft);
    border-left: 2px solid var(--color-gold);
}

.pricing-card.featured .package-growth-note {
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-gold);
}

.growth-label {
    display: block;
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 6px;
}

.growth-text {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    color: var(--text-dark);
}

.pricing-card.featured .growth-text {
    color: var(--text-light-muted);
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-creme);
    border: 1px solid var(--border-light);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--color-gold);
}

.stars {
    color: var(--color-gold);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--bg-dark);
    font-weight: 300;
    margin-bottom: 30px;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.client-name {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-dark);
}

.client-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* --- Write a Review Form --- */
.write-review-container {
    margin-top: 60px;
    text-align: center;
}

.review-toggle-btn {
    padding: 12px 24px;
}

.review-form-wrapper {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: var(--bg-creme);
    border: 1px solid var(--border-light);
    padding: 40px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(92, 88, 80, 0.05);
    animation: fadeIn 0.4s ease;
}

.review-form-title {
    font-size: 2rem;
    color: var(--bg-dark);
    text-align: center;
}

.client-review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

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

@media (max-width: 768px) {
    .review-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.review-form-row:last-of-type {
    grid-template-columns: 1fr;
}

.review-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-form-label {
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-dark);
}

.review-form-input {
    width: 100%;
    background-color: var(--bg-soft);
    border: 1px solid var(--border-light);
    padding: 12px 16px;
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    color: var(--bg-dark);
    transition: var(--transition-fast);
}

.review-form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.star-rating-selector {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 6px;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.star-select-item {
    color: var(--text-light-muted);
    transition: var(--transition-fast);
}

.star-select-item:hover,
.star-select-item:hover ~ .star-select-item,
.star-select-item.selected,
.star-select-item.selected ~ .star-select-item {
    color: var(--color-gold);
}

.review-submit-wrapper {
    text-align: center;
    margin-top: 10px;
}

.submit-review-btn {
    padding: 12px 30px;
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    margin-top: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    background-color: var(--bg-soft);
}

.detail-label {
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--bg-dark);
    font-weight: 400;
}

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

/* Form Container and Fields */
.contact-form-container {
    background-color: var(--bg-soft);
    padding: 48px;
    border: 1px solid var(--border-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-dark);
}

.form-input {
    width: 100%;
    background-color: var(--bg-creme);
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    color: var(--bg-dark);
    transition: var(--transition-fast);
}

.form-input::placeholder {
    color: var(--text-light-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-glow);
}

/* Dropdown styling reset */
.select-input {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%231F1F1F' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.text-area {
    resize: vertical;
    min-height: 120px;
}

/* Contact Success State */
.contact-success-state {
    text-align: center;
    padding: 40px 20px;
    animation: fadeIn 0.6s ease;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
}

.success-checkmark {
    width: 100%;
    height: 100%;
}

.success-heading {
    font-size: 2.2rem;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.success-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-dark);
    color: var(--text-light-muted);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    border-bottom: 1px solid var(--border-dark);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-dark);
    border-radius: 0;
    color: var(--text-light-muted);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

/* Links column */
.footer-title {
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

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


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright-text {
    font-size: 0.8rem;
}

/* Back to top */
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-sans);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light-muted);
}

.back-to-top:hover {
    color: var(--color-gold);
}

/* --- Mobile Menu Drawer (JS activated) --- */
.main-header.nav-open {
    background-color: var(--bg-creme);
    height: 100vh;
}

.main-header.nav-open .mobile-toggle .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.main-header.nav-open .mobile-toggle .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.main-header.nav-open .mobile-toggle .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-header.nav-open .nav-menu {
    display: flex;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-creme);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 80px;
    animation: fadeIn 0.4s ease;
}

.main-header.nav-open .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.main-header.nav-open .nav-item {
    font-size: 1.2rem;
}

/* --- Keyframe Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-8px) translateX(-50%);
    }
    60% {
        transform: translateY(-4px) translateX(-50%);
    }
}

/* --- Responsive Media Queries --- */

/* Tablet (Laptop style widths) */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile & Small Tablets */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    /* Mobile Header Hamburger Toggle Display */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    /* Grid collapse to single columns */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-attributes {
        margin: 30px 0;
        padding: 20px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        padding: 36px 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .lightbox-nav {
        font-size: 1.8rem;
        padding: 10px;
    }
    
    .lightbox-nav.prev {
        left: 5px;
    }
    
    .lightbox-nav.next {
        right: 5px;
    }
}

/* Small Screens */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .attribute-number {
        font-size: 1.8rem;
    }
    
    .attribute-label {
        font-size: 0.65rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .success-heading {
        font-size: 1.8rem;
    }
}

/* --- Brand Logo Styling --- */
.nav-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-right: 12px;
    border-radius: 4px;
}

.about-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--border-dark);
}
