/* ========================================
   RESET
======================================== */

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

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

ul,
ol {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .02em;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   VARIABLES
======================================== */

:root {

    --bg: #ffffff;
    --text: #111111;
    --sub: #666666;
    --line: #e5e5e5;
    --accent: #18222f;

    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container: 1200px;

    --header-height: 80px;

    --section-space: 120px;

    --transition: .3s ease;
}

/* ========================================
   LAYOUT
======================================== */

.container {
    width: min(90%, var(--container));
    margin: 0 auto;
}

.section {
    padding: var(--section-space) 0;
    animation: fadeUp .6s ease;
}

.section-gray {
    background: #fafafa;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 1;
}

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

/* ========================================
   HEADER
======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    z-index: 1000;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 42px;
    width: auto;
}

/* NAV */

.desktop-nav {
    display: flex;
    gap: 36px;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    position: relative;
    transition: var(--transition);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--text);
}

.mobile-nav {
    display: none;
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(72px, 12vw, 160px);
    font-weight: 400;
    letter-spacing: .08em;
    line-height: .9;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: white;
    letter-spacing: .25em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-copy {
    color: white;
    font-size: 24px;
    margin-bottom: 24px;
}

.hero-price {
    color: white;
    font-size: 18px;
    margin-bottom: 40px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 58px;
    border: 1px solid rgba(255,255,255,.7);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2em;
    background: rgba(255,255,255,.15);
    transition: var(--transition);
}

.hero-button:hover {
    background: white;
    color: var(--text);
}

/* ========================================
   ABOUT
======================================== */

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

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;

}

.about-text p {
    font-size: 17px;
    line-height: 2;
}

.about-image {
    overflow: hidden;
    border-radius: 4px;

}

.about-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;

}


/* ========================================
   RECORDING ENVIRONMENT
======================================== */

.recording-environment {
    margin-top: 120px;
    padding-top: 80px;
    border-top: 1px solid var(--line);

}



.recording-environment h3 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    letter-spacing: .06em;
    margin-bottom: 40px;
}



.environment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;

}



.environment-image {
    overflow: hidden;
    border-radius: 4px;
}



.environment-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}



.environment-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.environment-text p {
    font-size: 16px;
    line-height: 2;
}

/* ========================================
   ABOUT ENGINEER
======================================== */

.engineer-card {
    max-width: 760px;
    margin: 0 auto;
}

.engineer-image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto 48px;
    overflow: hidden;
    border-radius: 4px;
}

.engineer-image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.engineer-name {
    font-family: var(--font-heading);
    font-size: 42px;
    letter-spacing: .06em;
    line-height: 1;
    margin-bottom: 12px;
}

.engineer-subtitle {
    margin-bottom: 36px;

    color: var(--sub);

    font-size: 13px;
    font-weight: 500;

    letter-spacing: .18em;
    text-transform: uppercase;

    line-height: 1.8;
}

.engineer-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.engineer-text p {
    font-size: 17px;
    line-height: 2;
}

/* ========================================
   EQUIPMENT
======================================== */

.equipment-image {

    margin-bottom: 80px;

    overflow: hidden;

    /* border-radius: 4px; */
}

.equipment-image img {

    aspect-ratio: 16 / 7;

    object-fit: cover;
}

.equipment-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 48px 80px;
}

.equipment-category {

    padding-bottom: 28px;

    border-bottom: 1px solid var(--line);
}

.equipment-category h3 {

    font-family: var(--font-heading);

    font-size: 32px;

    font-weight: 400;

    letter-spacing: .05em;

    margin-bottom: 14px;
}

.equipment-category p {

    color: var(--text);

    font-size: 15px;

    line-height: 1.9;
}

/* ========================================
   MUSIC
======================================== */

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

.music-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.music-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid var(--line);
    transition: var(--transition);
}

.music-card img:hover {
    transform: scale(1.02);
}

.listen-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border: 1px solid var(--text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    transition: var(--transition);
}

.listen-button:hover {
    background: var(--text);
    color: white;
}

/* ========================================
   MUSIC MORE BUTTON
======================================== */

.more-button {
    display: block;
    margin: 60px auto 0;
    min-width: 220px;
    height: 56px;
    border: 1px solid var(--text);
    font-weight: 600;
    letter-spacing: .12em;
    transition: var(--transition);
}

.more-button:hover {
    background: var(--text);
    color: white;
}

/* ========================================
   MODAL（LISTEN）
======================================== */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
}

.modal-content {
    position: relative;
    width: min(90%, 420px);
    background: #fff;
    padding: 40px 32px;
    text-align: center;
    z-index: 2;
    border-radius: 6px;
}

.modal-content img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
}

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.modal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border: 1px solid var(--line);
    transition: var(--transition);
}

.modal-link:hover {
    background: #f5f5f5;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    width: 36px;
    height: 36px;
}

/* ========================================
   NEWS
======================================== */

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

.news-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--line);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-date {
    font-size: 14px;
    color: var(--sub);
    margin-bottom: 14px;
}

.news-card h3 {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* ========================================
   RECORDING PRICES
======================================== */

.price-block {

    margin-bottom: 100px;
}

.price-block:last-child {

    margin-bottom: 0;
}

.price-block h3 {

    font-family: var(--font-heading);

    font-size: 42px;

    font-weight: 400;

    letter-spacing: .06em;

    margin-bottom: 32px;
}


/* ========================================
   TABLE
======================================== */

.table-wrapper {

    overflow-x: auto;
}

.price-table {

    width: 100%;

    border-collapse: collapse;

    background: white;
}

.price-table thead th {

    background: var(--accent);

    color: white;

    font-weight: 600;

    font-size: 14px;

    padding: 18px;

    text-align: center;

    letter-spacing: .04em;
}

.price-table tbody td {

    border-bottom: 1px solid var(--line);

    padding: 18px;

    text-align: center;

    font-size: 15px;
}

.price-table tbody tr:hover {

    background: #fafafa;
}

.price-table tbody td:first-child {

    font-weight: 600;
}

.price-notes {

    margin-top: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.price-notes p {

    font-size: 14px;

    color: var(--sub);

    line-height: 1.8;
}

/* ========================================
   FAQ
======================================== */

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding-bottom: 28px;
    color: var(--sub);
    line-height: 1.9;
}

/* ========================================
   CONTACT
======================================== */

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

.contact-copy {
    font-size: 18px;
    line-height: 2;
    margin-bottom: 50px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    height: 58px;
    border: 1px solid var(--text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .12em;
    transition: var(--transition);
}

.contact-button:hover {
    background: var(--text);
    color: #fff;
}

.contact-button.primary {
    background: var(--text);
    color: #fff;
}

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

.site-footer {
    background: #fafafa;
    border-top: 1px solid var(--line);
    padding: 80px 0 50px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 40px;
}

.footer-social a {
    font-size: 24px;
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    font-size: 14px;
    color: var(--sub);
}

/* ========================================
   PHOTOGRAPHER CARD
======================================== */

.photographer-card {
    max-width: 700px;
    padding: 40px;
    margin: 0 auto;

    border: 1px solid var(--line);
    background: white;

    display: flex;
    flex-direction: column;
    gap: 28px;

    transition: var(--transition);
    
}

.photographer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.photographer-name {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: .05em;
}

.photographer-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    border-bottom: 1px solid var(--line);
    padding-bottom: 12px;
}

.label {
    font-size: 13px;
    color: var(--sub);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.value {
    font-size: 15px;
    color: var(--text);
    text-align: right;
}

.value.link {
    text-decoration: underline;
    transition: var(--transition);
}

.value.link:hover {
    opacity: 0.6;
}

/* ========================================
   LIGHTBOX (PHOTO / GALLERY)
======================================== */

.gallery-grid {
    column-count: 3;
    column-gap: 16px;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
    break-inside: avoid;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform .3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ========================================
   LIGHTBOX POPUP
======================================== */

#gallery-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#gallery-popup.hidden {
    display: none;
}

#gallery-popup-img {
    max-width: 92%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

/* ========================================
   MODAL (LISTEN)
======================================== */

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.modal-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: 52px;
    border: 1px solid var(--line);

    font-size: 14px;
    font-weight: 600;
    letter-spacing: .05em;

    transition: var(--transition);
}

.modal-link.spotify {
    background: #1db954;
    color: white;
    border: none;
}

.modal-link.apple {
    background: #111;
    color: white;
    border: none;
}

.modal-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ========================================
   ANIMATION
======================================== */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(20px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}

.section {

    animation: fadeUp .6s ease;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1024px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .environment-grid {

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .equipment-list {

        grid-template-columns: 1fr;
    }

    .music-grid {

        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {

        font-size: clamp(64px, 10vw, 120px);
    }

    .gallery-grid {
    column-count: 2;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    :root {

        --section-space: 80px;
    }

    .desktop-nav {

        display: none;
    }

    .mobile-menu-btn {

        display: block;
    }

    .mobile-nav {

        position: absolute;

        top: 80px;

        left: 0;

        width: 100%;

        background: white;

        border-top: 1px solid var(--line);

        display: none;

        flex-direction: column;
    }

    .mobile-nav.active {

        display: flex;
    }

    .mobile-nav a {

        padding: 18px 24px;

        border-bottom: 1px solid var(--line);

        font-size: 14px;

        font-weight: 600;

        letter-spacing: .08em;
    }

    .hero {

        min-height: 700px;
    }

    .hero h1 {

        font-size: clamp(48px, 14vw, 72px);

        line-height: 1;
    }

    .hero-subtitle {

        font-size: 14px;

        letter-spacing: .12em;
    }

    .hero-copy {

        font-size: 12px;
    }

    .hero-price {

        font-size: 12px;
    }

    .section-heading h2 {

        font-size: 48px;
    }

    .recording-environment h3,
    .price-block h3,
    .equipment-category h3 {

        font-size: 32px;
    }

    .music-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 16px;
    }

    .music-card {

        gap: 10px;
    }

    .listen-button {

        height: 30px;

        font-size: 8px;

        letter-spacing: .04em;
    }

    .contact-buttons {

        flex-direction: column;

        align-items: center;
    }

    .contact-button {

        width: 100%;
    }

    .footer-social {

        gap: 20px;

        flex-wrap: wrap;
    }

    .news-card {

        padding: 28px;
    }

    .modal-content {

        padding: 40px 24px;
    }

    .gallery-grid {
    column-count: 2;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .container {

        width: 92%;
    }

    .hero h1 {

        font-size: 42px;
    }

    .hero-button {

        width: 100%;
    }

    .price-table {

        min-width: 600px;
    }

    .faq-question {

        font-size: 16px;
    }

    .contact-copy {

        font-size: 16px;
    }

    .gallery-grid {
    column-count: 2;
    }
}