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

:root {
    --primary: #DCD7C9;
    --primary-light: #E8E4D9;
    --secondary: #DCD7C9;
    --background: #1E120F;
    --background-alt: #2A1D19;
    --text-main: #F7F4F2;
    --text-muted: #CFC9C4;
    --border-light: #3D2E28;
    --error: #C0392B;
    --success: #DCD7C9;
    --link: #DCD7C9;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background);
    padding-top: 70px;
    width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    body {
        padding-top: 80px;
    }
}

h1, h2, h3 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1.2;
    color: #C9A961;
}

h1 {
    font-size: clamp(1.5rem, 2vw, 1.8rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* Header */
#header {
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070');
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

#header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 18, 15, 0.85) 0%, rgba(30, 18, 15, 0.85) 100%);
    z-index: -1;
}

#header.hidden {
    transform: translateY(-100%);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-content {
        padding: 1rem 0;
        gap: 2rem;
    }
}

.logo {
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .header-content {
        justify-content: flex-start;
    }
    
    .logo {
        margin-right: auto;
        padding-right: 3rem;
    }
}

.logo h1 {
    color: #C9A961;
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.logo p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.85rem;
    }
}

#nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

#nav ul {
    display: none;
    list-style: none;
    gap: 1.5rem;
}

#nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
    display: block;
}

#nav ul li a:hover {
    color: #C9A961;
}

.mobile-menu {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

@media (min-width: 1024px) {
    #nav ul {
        display: flex;
    }
    
    .mobile-menu {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #C9A961;
    color: #1E120F;
    padding: 14px 28px;
}

.btn-primary:hover {
    background-color: #D4B76E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #C9A961;
    border: 1px solid #C9A961;
    padding: 12px 24px;
}

.btn-secondary:hover {
    background-color: rgba(201, 169, 97, 0.1);
}

/* Hero Section */
.hero {
    padding: 2.5rem 0;
    background-color: var(--background);
    background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

@media (min-width: 768px) {
    .hero {
        padding: 3.5rem 0;
        background-attachment: fixed;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 18, 15, 0.85) 0%, rgba(30, 18, 15, 0.85) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .two-columns {
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .two-columns {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.hero .subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .hero .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

.bullets {
    list-style: none;
    margin: 1.5rem 0;
}

.bullets li {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .bullets {
        margin: 2rem 0;
    }
}

.bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .cta-group {
        gap: 1rem;
        margin: 2rem 0;
    }
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.badges span {
    background-color: var(--background-alt);
    padding: 0.5rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--secondary);
    border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .badges {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .badges span {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
    font-weight: 600;
    min-height: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem;
}

@media (min-width: 768px) {
    .image-placeholder {
        min-height: 350px;
        border-radius: 20px;
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .image-placeholder {
        min-height: 400px;
        border-radius: 24px;
    }
}

.image-placeholder.portrait {
    min-height: 350px;
}

@media (min-width: 768px) {
    .image-placeholder.portrait {
        min-height: 450px;
    }
}

@media (min-width: 1024px) {
    .image-placeholder.portrait {
        min-height: 500px;
    }
}

.two-columns .image {
    width: 100%;
}

.two-columns .content {
    width: 100%;
}

/* For Whom Section */
.for-whom {
    padding: 2.5rem 0;
    background-color: var(--background-alt);
}

@media (min-width: 768px) {
    .for-whom {
        padding: 3.5rem 0;
    }
}

@media (min-width: 1024px) {
    .for-whom {
        padding: 5rem 0;
    }
}

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

.intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.check-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.check-list li {
    padding: 1rem 1rem 1rem 2.5rem;
    margin-bottom: 0.75rem;
    background-color: var(--background-alt);
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    line-height: 1.6;
    font-size: 0.95rem;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0.875rem;
    color: var(--success);
    font-weight: bold;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .check-list {
        margin: 2rem 0;
    }
    
    .check-list li {
        padding: 1rem 1rem 1rem 3rem;
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .check-list li::before {
        left: 1rem;
        font-size: 1.2rem;
    }
}

/* Practice Areas */
.practice-areas {
    padding: 2.5rem 0;
    background-color: var(--background);
    background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.practice-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 18, 15, 0.75) 0%, rgba(30, 18, 15, 0.7) 100%);
    z-index: 1;
}

.practice-areas .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .practice-areas {
        padding: 3.5rem 0;
        background-attachment: fixed;
    }
}

@media (min-width: 1024px) {
    .practice-areas {
        padding: 5rem 0;
    }
}

.practice-areas h2 {
    text-align: center;
}

.practice-areas .subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .practice-areas .subtitle {
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
    }
}

@media (min-width: 1024px) {
    .practice-areas .subtitle {
        margin-bottom: 3rem;
        font-size: 1.1rem;
    }
}

.practice-areas .container {
    max-width: 100%;
    padding: 0;
}

.practice-areas h2,
.practice-areas .subtitle {
    padding: 0 24px;
}

@media (min-width: 768px) {
    .practice-areas h2,
    .practice-areas .subtitle {
        padding: 0 32px;
    }
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0;
}

@media (min-width: 768px) {
    .carousel-wrapper {
        padding: 0 70px;
    }
}

@media (min-width: 1024px) {
    .carousel-wrapper {
        padding: 0 80px;
    }
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
    will-change: transform;
    padding-left: 24px;
}

@media (min-width: 768px) {
    .carousel-track {
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .carousel-track {
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .carousel-track {
        gap: 2rem;
    }
}

.carousel-track .card {
    flex-shrink: 0;
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
}

@media (max-width: 767px) {
    .carousel-track .card {
        min-width: 72%;
        max-width: 72%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .carousel-track .card {
        min-width: calc((100% - 1.5rem) / 2);
        max-width: calc((100% - 1.5rem) / 2);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #C9A961;
    color: #1E120F;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .carousel-btn {
        display: none;
    }
}

@media (min-width: 768px) {
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}

.carousel-btn:hover {
    background: #D4B76E;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 5px;
}

.carousel-btn.next {
    right: 5px;
}

@media (min-width: 768px) {
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .carousel-dots {
        display: none;
    }
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    transition: all 0.3s;
    cursor: pointer;
}

.carousel-dot.active {
    background: #C9A961;
    width: 24px;
    border-radius: 4px;
}

.card {
    background-color: var(--background-alt);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 768px) {
    .card {
        padding: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .card {
        padding: 2rem;
    }
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(220, 215, 201, 0.3);
}

.card .icon {
    display: none;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .card p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }
}

.card ul {
    list-style: none;
    margin: 1.25rem 0;
}

.card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .card ul {
        margin: 1.5rem 0;
    }
    
    .card ul li {
        font-size: 0.95rem;
    }
}

.card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.card .btn {
    margin-top: 1.25rem;
    width: 100%;
    font-size: 0.85rem;
    padding: 12px 20px;
}

@media (min-width: 768px) {
    .card .btn {
        margin-top: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .card .btn {
        font-size: 0.95rem;
    }
}

/* How It Works */
.how-it-works {
    padding: 2.5rem 0;
    background-color: var(--background-alt);
}

@media (min-width: 768px) {
    .how-it-works {
        padding: 3.5rem 0;
    }
}

@media (min-width: 1024px) {
    .how-it-works {
        padding: 5rem 0;
    }
}

.how-it-works h2 {
    text-align: center;
}

.how-it-works .intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .how-it-works .intro {
        margin: 0 auto 2.5rem;
    }
}

@media (min-width: 1024px) {
    .how-it-works .intro {
        margin: 0 auto 3rem;
    }
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin: 2.5rem 0;
    }
}

@media (min-width: 1024px) {
    .steps {
        gap: 2rem;
        margin: 3rem 0;
    }
}

.step {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .step {
        padding: 1.75rem;
        align-items: flex-start;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .step {
        padding: 2rem;
    }
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #C9A961;
    color: #1E120F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .step p {
        font-size: 1rem;
    }
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .cta-center {
        margin-top: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-center {
        margin-top: 3rem;
    }
}

.highlight {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--secondary);
}

/* FAQ */
.faq {
    padding: 2.5rem 0;
    background-color: var(--background-alt);
}

@media (min-width: 768px) {
    .faq {
        padding: 3.5rem 0;
    }
}

@media (min-width: 1024px) {
    .faq {
        padding: 5rem 0;
    }
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .faq h2 {
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .faq h2 {
        margin-bottom: 3rem;
    }
}

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

.accordion-item {
    background-color: var(--background-alt);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .accordion-item {
        margin-bottom: 1rem;
    }
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    transition: background-color 0.3s;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .accordion-header {
        padding: 1.5rem;
        font-size: 1.05rem;
    }
}

.accordion-header:hover {
    background-color: rgba(220, 215, 201, 0.1);
}

.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .accordion-content p {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
    }
}

/* Final CTA */
.final-cta {
    padding: 2.5rem 0;
    background-color: var(--background);
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=2069');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 18, 15, 0.75) 0%, rgba(30, 18, 15, 0.7) 100%);
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 3.5rem 0;
        background-attachment: fixed;
    }
}

@media (min-width: 1024px) {
    .final-cta {
        padding: 5rem 0;
    }
}

.final-cta h2 {
    text-align: center;
}

.final-cta p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .final-cta p {
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }
}

.final-cta .cta-group {
    justify-content: center;
}

/* Footer */
#footer {
    background-color: #0F0A08;
    color: var(--text-main);
    padding: 2.5rem 0 1rem;
}

@media (min-width: 768px) {
    #footer {
        padding: 3rem 0 1rem;
    }
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem;
    }
}

.footer-column h4 {
    color: #C9A961;
    margin-bottom: 0.875rem;
    font-size: 1.05rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .footer-column h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    .footer-column p {
        font-size: 0.95rem;
    }
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-column ul li {
        font-size: 0.95rem;
    }
}

.footer-column ul li a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.footer-legal {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-legal {
        padding-top: 2rem;
    }
    
    .footer-legal p {
        font-size: 0.85rem;
    }
}

html {
    scroll-behavior: smooth;
}

html, body {
    max-width: 100%;
    position: relative;
}

@media (min-width: 768px) {
    html, body {
        overflow-x: hidden;
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    #nav .btn-primary {
        display: none;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .two-columns .image {
        order: -1;
    }
}

/* About Section */
.about-section {
    padding: 2.5rem 0;
    background-color: var(--background);
    background-image: url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 18, 15, 0.75) 0%, rgba(30, 18, 15, 0.7) 100%);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .about-section {
        padding: 3.5rem 0;
        background-attachment: fixed;
    }
}

@media (min-width: 1024px) {
    .about-section {
        padding: 5rem 0;
    }
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.about-image {
    order: -1;
}

@media (min-width: 1024px) {
    .about-image {
        order: 0;
    }
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .about-text p {
        font-size: 1rem;
    }
}

/* Real Photos */
.hero-photo,
.about-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-photo {
    object-fit: contain;
    min-height: 280px;
    max-height: 500px;
}

@media (min-width: 768px) {
    .hero-photo {
        min-height: 350px;
        max-height: 600px;
    }
}

@media (min-width: 1024px) {
    .hero-photo {
        min-height: 400px;
        max-height: 700px;
    }
}

.about-photo {
    min-height: 350px;
    max-height: 500px;
}

@media (min-width: 768px) {
    .about-photo {
        min-height: 450px;
        max-height: 550px;
    }
}

@media (min-width: 1024px) {
    .about-photo {
        min-height: 500px;
        max-height: 600px;
    }
}
