/* ========================================
   KAIROS LUTHERIE — Design System
   ======================================== */

:root {
    /* Warm earth palette */
    --cream: #F5F0E8;
    --cream-dark: #EBE4D6;
    --warm-white: #FDFBF7;
    --sand: #D4C5A9;
    --walnut: #5C4033;
    --walnut-light: #7A5C4F;
    --walnut-dark: #3D2B22;
    --spruce: #C8B88A;
    --rosewood: #3E1F14;
    --cedar: #A0522D;
    --charcoal: #2A2420;
    --text: #3A302A;
    --text-light: #7A6E64;
    --gold-accent: #B8953E;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --section-pad: clamp(4rem, 10vw, 8rem);
    --content-max: 1280px;
}

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

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

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

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

/* ========================================
   SHARED ELEMENTS
   ======================================== */

.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    color: var(--walnut-dark);
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border: 1px solid var(--walnut);
    color: var(--walnut);
    transition: all 0.4s ease;
    margin-top: 1.5rem;
    font-weight: 400;
}

.btn-outline:hover {
    background: var(--walnut);
    color: var(--cream);
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem clamp(1.5rem, 4vw, 3rem);
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(92, 64, 51, 0.08);
    padding: 0.8rem clamp(1.5rem, 4vw, 3rem);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--warm-white);
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.nav.scrolled .nav__logo {
    color: var(--walnut-dark);
}

.nav__links {
    display: flex;
    gap: 2rem;
}

.nav__links a {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav.scrolled .nav__links a {
    color: var(--text-light);
}

.nav__links a:hover {
    color: var(--gold-accent);
}

.nav__lang {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    color: rgba(255,255,255,0.8);
    padding: 0.35rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.nav.scrolled .nav__lang {
    border-color: var(--sand);
    color: var(--text-light);
}

.nav__lang:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.nav__menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__menu span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.nav.scrolled .nav__menu span {
    background: var(--walnut);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--walnut-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    font-weight: 300;
    letter-spacing: 0.05em;
}

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

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(42, 36, 32, 0.3) 0%,
        rgba(42, 36, 32, 0.1) 40%,
        rgba(42, 36, 32, 0.5) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    padding: 0 2rem;
}

.hero__pre {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero__title span {
    font-size: 0.35em;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: rgba(245, 240, 232, 0.7);
}

.hero__sub {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.6;
    font-weight: 300;
    font-style: italic;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.hero__cta {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.3);
    padding: 1rem 2.2rem;
    transition: all 0.4s ease;
    font-weight: 400;
}

.hero__cta:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 1;
}

.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

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

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.about__image-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
}

.about__image {
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: auto;
    transition: transform 0.8s ease;
}

.about__image:hover img {
    transform: scale(1.03);
}

.about__image--second {
    max-width: 75%;
}

.about__text-col {
    padding-top: 2rem;
}

.about__body p {
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
}

.about__body em {
    font-family: var(--font-display);
    font-size: 1.05em;
}

/* ========================================
   PHILOSOPHY
   ======================================== */

.philosophy {
    background: var(--walnut-dark);
    padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
}

.philosophy__grid {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.philosophy__item {
    padding: 2rem 1.5rem;
    border-left: 1px solid rgba(245, 240, 232, 0.1);
}

.philosophy__number {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 1.2rem;
}

.philosophy__item h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.philosophy__item p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.55);
    line-height: 1.7;
}

/* ========================================
   GUITARS
   ======================================== */

.guitars {
    padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
    max-width: var(--content-max);
    margin: 0 auto;
}

.guitars__header {
    max-width: 600px;
    margin-bottom: 4rem;
}

.guitars__intro {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Guitar Card */
.guitar-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: 5rem;
    align-items: start;
}

.guitar-card--reverse {
    direction: rtl;
}

.guitar-card--reverse > * {
    direction: ltr;
}

.guitar-card__main-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream);
}

.guitar-card__main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.guitar-card__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.guitar-card__thumb {
    width: 56px;
    height: 56px;
    border: 1.5px solid transparent;
    background: none;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.3s ease;
    opacity: 0.6;
}

.guitar-card__thumb.active,
.guitar-card__thumb:hover {
    border-color: var(--walnut);
    opacity: 1;
}

.guitar-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guitar-card__info {
    padding-top: 1rem;
}

.guitar-card__info h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--walnut-dark);
    margin-bottom: 0.3rem;
}

.guitar-card__date {
    font-size: 0.78rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.guitar-card__specs {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.guitar-card__specs tr {
    border-bottom: 1px solid rgba(212, 197, 169, 0.4);
}

.guitar-card__specs td {
    padding: 0.6rem 0;
    font-size: 0.85rem;
    vertical-align: top;
}

.guitar-card__specs td:first-child {
    font-weight: 500;
    color: var(--text-light);
    width: 35%;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.guitar-card__desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1rem;
}

.guitar-card__cta {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    border: 1px solid var(--walnut);
    color: var(--walnut);
    transition: all 0.4s ease;
    margin-top: 1.5rem;
    font-weight: 400;
}

.guitar-card__cta:hover {
    background: var(--walnut);
    color: var(--cream);
}

/* Commission */
.guitars__commission {
    text-align: center;
    max-width: 620px;
    margin: 3rem auto 0;
    padding: 3rem;
    border: 1px solid var(--sand);
    background: var(--cream);
}

.guitars__commission p {
    font-family: var(--font-display);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
}

/* ========================================
   TONEWOOD
   ======================================== */

.tonewood {
    background: var(--cream);
    padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
}

.tonewood__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.tonewood__intro {
    max-width: 620px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.tonewood__card {
    padding: 2.5rem 2rem;
    background: var(--warm-white);
    border: 1px solid rgba(212, 197, 169, 0.3);
    transition: border-color 0.3s ease;
}

.tonewood__card:hover {
    border-color: var(--walnut-light);
}

.tonewood__icon {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 1.2rem;
}

.tonewood__card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.3rem;
    color: var(--walnut-dark);
    margin-bottom: 0.8rem;
}

.tonewood__card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

.tonewood__cta-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ========================================
   REPAIRS
   ======================================== */

.repairs {
    padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
}

.repairs__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.repairs__text {
    max-width: 800px;
}

.repairs__text > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

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

.repairs__service {
    padding: 1.5rem;
    border-left: 2px solid var(--gold-accent);
}

.repairs__service h4 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--walnut-dark);
    margin-bottom: 0.4rem;
}

.repairs__service p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.repairs__note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    font-family: var(--font-display);
    margin-top: 1.5rem;
}

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

.contact {
    background: var(--walnut-dark);
    padding: var(--section-pad) clamp(1.5rem, 4vw, 3rem);
}

.contact__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact .section-label {
    color: var(--gold-accent);
}

.contact .section-title {
    color: var(--cream);
}

.contact__text p {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
}

.contact__item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact__label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35);
    font-weight: 500;
}

.contact__item a,
.contact__item span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.5;
}

.contact__item a {
    transition: color 0.3s ease;
}

.contact__item a:hover {
    color: var(--gold-accent);
}

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

.footer {
    background: var(--charcoal);
    padding: 2rem clamp(1.5rem, 4vw, 3rem) 1.5rem;
}

.footer__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.5);
}

.footer__copy {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.3);
    letter-spacing: 0.05em;
}

.footer__info {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
    width: 100%;
    text-align: center;
}

.footer__info span {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.45);
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.footer__info a {
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s ease;
}

.footer__info a:hover {
    color: var(--gold-accent);
}

.footer__links {
    padding-top: 0.5rem;
}

.footer__links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.35);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--gold-accent);
}

/* ========================================
   COOKIE BANNER
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--charcoal);
    border-top: 1px solid rgba(184, 149, 62, 0.3);
    padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner__text p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.7);
    line-height: 1.6;
    margin-bottom: 0.4rem;
}

.cookie-banner__link {
    font-size: 0.75rem;
    color: var(--gold-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.cookie-banner__link:hover {
    color: var(--cream);
}

.cookie-banner__buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__btn {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
    white-space: nowrap;
}

.cookie-banner__btn--accept {
    background: var(--walnut);
    color: var(--cream);
    border: 1px solid var(--walnut);
}

.cookie-banner__btn--accept:hover {
    background: var(--walnut-light);
    border-color: var(--walnut-light);
}

.cookie-banner__btn--reject {
    background: var(--charcoal);
    color: var(--cream);
    border: 1px solid var(--cream);
}

.cookie-banner__btn--reject:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--cream);
    color: var(--cream);
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */

.privacy-policy {
    padding: calc(var(--section-pad) + 3rem) clamp(1.5rem, 4vw, 3rem) var(--section-pad);
    max-width: 860px;
    margin: 0 auto;
}

.privacy-policy__title {
    margin-bottom: 0.5rem;
}

.privacy-policy__updated {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

.privacy-policy__content h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    color: var(--walnut-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 197, 169, 0.3);
}

.privacy-policy__content h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--walnut);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-policy__content p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-policy__content ul {
    margin: 0.75rem 0 1.25rem 1.5rem;
    list-style: disc;
}

.privacy-policy__content li {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0.4rem;
}

.privacy-policy__content a {
    color: var(--walnut);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.privacy-policy__content a:hover {
    color: var(--gold-accent);
}

.privacy-policy__table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.85rem;
}

.privacy-policy__table th,
.privacy-policy__table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(212, 197, 169, 0.3);
    color: var(--text);
    line-height: 1.6;
}

.privacy-policy__table th {
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    background: var(--cream);
}

.privacy-policy__back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 197, 169, 0.3);
}

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

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(42, 36, 32, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox__img {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.7);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.lightbox__close:hover {
    color: var(--cream);
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

@media (max-width: 1024px) {
    .philosophy__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__menu {
        display: flex;
    }

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

    .about__image-col {
        position: static;
        flex-direction: row;
    }

    .about__image--second {
        max-width: 100%;
    }

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

    .guitar-card,
    .guitar-card--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

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

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

    .footer__inner {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .footer__top {
        flex-direction: column;
        gap: 0.5rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .cookie-banner__buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner__btn {
        flex: 1;
        min-width: 0;
    }

    .privacy-policy__table {
        font-size: 0.78rem;
    }

    .privacy-policy__table th,
    .privacy-policy__table td {
        padding: 0.5rem 0.6rem;
    }

    .hero__title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }
}

@media (max-width: 480px) {
    .about__image-col {
        flex-direction: column;
    }

}
