/* ========================================
   Smiley's — Premium Dark Luxury Styles
   ======================================== */

/* ─── Reset & Base ─── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum-deep: #1a0a1e;
    --plum-dark: #2d1235;
    --plum-mid: #4a1f5c;
    --plum-light: #6b307c;
    --amber: #d4a04a;
    --amber-light: #e8c07a;
    --amber-glow: #f0d090;
    --cream: #f5f0e8;
    --cream-dim: #c8bfb0;
    --white: #ffffff;
    --black: #0a0a0a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --nav-height: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--plum-deep);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ─── Typography ─── */
.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 24px;
}

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

.section-title--light {
    color: var(--white);
}

.text-gold {
    color: var(--amber);
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    color: var(--plum-deep);
    border: 2px solid var(--amber);
}

.btn--gold:hover {
    background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber-glow) 100%);
    border-color: var(--amber-glow);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 160, 74, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(212, 160, 74, 0.5);
}

.btn--outline:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(26, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(212, 160, 74, 0.1);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav__logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--plum-deep);
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream-dim);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--amber);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(212, 160, 74, 0.4);
    border-radius: 4px;
    color: var(--amber);
    transition: all var(--transition);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: rgba(212, 160, 74, 0.1);
    border-color: var(--amber);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all var(--transition);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 10, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--cream);
    padding: 8px;
}

.mobile-menu__list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--cream);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--amber);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(74, 31, 92, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 160, 74, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(26, 10, 30, 1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(26, 10, 30, 0.4) 0%, rgba(26, 10, 30, 0.2) 40%, rgba(26, 10, 30, 0.6) 80%, rgba(26, 10, 30, 1) 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 5, 15, 0.3) 0%, transparent 30%, transparent 60%, rgba(26, 10, 30, 0.9) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    padding-top: var(--nav-height);
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__accent {
    color: var(--amber);
    font-style: italic;
}

.hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--cream-dim);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--amber);
    animation: float 2s ease-in-out infinite;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.hero__scroll:hover {
    opacity: 1;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--plum-deep);
}

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

.about__media {
    position: relative;
}

.about__img-wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.about__img-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about__img-wrap:hover img {
    transform: scale(1.03);
}

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--plum-dark);
}

.about__img-secondary img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about__text p {
    color: var(--cream-dim);
    margin-bottom: 20px;
    font-size: 1rem;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 160, 74, 0.15);
}

.stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.8rem;
    color: var(--cream-dim);
    letter-spacing: 0.05em;
}

/* ─── Menu ─── */
.menu {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 50%, var(--plum-deep) 100%);
}

.menu__tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0 40px;
    flex-wrap: wrap;
}

.menu__tab {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream-dim);
    border: 1px solid rgba(212, 160, 74, 0.2);
    border-radius: 100px;
    transition: all var(--transition);
}

.menu__tab:hover {
    color: var(--amber);
    border-color: rgba(212, 160, 74, 0.4);
}

.menu__tab.active {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
}

.menu__panels {
    position: relative;
    min-height: 300px;
}

.menu__panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu__panel.active {
    display: block;
}

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

.menu__item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 160, 74, 0.08);
}

.menu__item:last-child {
    border-bottom: none;
}

.menu__item-header {
    flex: 1;
    padding-right: 24px;
}

.menu__item-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 4px;
}

.menu__item-desc {
    font-size: 0.875rem;
    color: var(--cream-dim);
}

.menu__item-divider {
    padding: 16px 0 8px;
}

.menu__item-divider-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
}

.menu__column {
    max-width: 500px;
}

.menu__note {
    text-align: center;
    color: var(--cream-dim);
    font-size: 0.875rem;
    margin-top: 40px;
    font-style: italic;
}

.menu__columns-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

/* ─── Gallery ─── */
.gallery {
    padding: 120px 0 80px;
    background: var(--plum-deep);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 48px;
}

.gallery__item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--large {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
    min-height: 500px;
}

.gallery__item:not(.gallery__item--large) {
    min-height: 240px;
}

.gallery__item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
    min-height: 280px;
}

/* ─── Testimonials ─── */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 160, 74, 0.1);
    border-radius: 8px;
    padding: 40px 32px;
    transition: all var(--transition);
}

.testimonial:hover {
    border-color: rgba(212, 160, 74, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.testimonial__quote {
    color: var(--amber);
    opacity: 0.4;
    margin-bottom: 20px;
}

.testimonial p {
    color: var(--cream-dim);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial__source {
    font-size: 0.875rem !important;
    color: var(--amber) !important;
    font-style: italic;
    margin-bottom: 0 !important;
}

/* ─── CTA ─── */
.cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

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

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 30, 0.92) 0%, rgba(45, 18, 53, 0.88) 100%);
}

.cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta__text {
    color: var(--cream-dim);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 40px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: var(--plum-deep);
}

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

.contact__detail {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact__icon {
    flex-shrink: 0;
    color: var(--amber);
    margin-top: 4px;
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 4px;
}

.contact__detail-value {
    display: block;
    font-size: 1rem;
    color: var(--cream);
    line-height: 1.6;
}

.contact__link {
    transition: color var(--transition);
}

.contact__link:hover {
    color: var(--amber-light);
}

.contact__form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 160, 74, 0.12);
    border-radius: 12px;
    padding: 48px;
}

.contact__form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 24px;
}

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 8px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 160, 74, 0.2);
    border-radius: 6px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition);
    outline: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: rgba(200, 191, 176, 0.4);
}

.form__input:focus,
.form__textarea:focus {
    border-color: var(--amber);
    background: rgba(212, 160, 74, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 160, 74, 0.1);
}

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

.form__success {
    display: none;
    margin-top: 16px;
    padding: 16px;
    background: rgba(212, 160, 74, 0.1);
    border: 1px solid rgba(212, 160, 74, 0.3);
    border-radius: 6px;
    color: var(--amber-light);
    font-size: 0.9rem;
    text-align: center;
}

.form__success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ─── Footer ─── */
.footer {
    padding: 64px 0 32px;
    background: var(--black);
    border-top: 1px solid rgba(212, 160, 74, 0.1);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    margin-bottom: 48px;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--plum-deep);
}

.footer__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--cream);
}

.footer__tagline {
    font-size: 0.875rem;
    color: var(--cream-dim);
    max-width: 240px;
}

.footer__links {
    display: flex;
    gap: 32px;
}

.footer__links a {
    font-size: 0.875rem;
    color: var(--cream-dim);
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: var(--cream-dim);
    flex-wrap: wrap;
    gap: 12px;
}

.footer__link {
    color: var(--amber);
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--amber-light);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about__grid {
        gap: 48px;
    }

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

    .testimonials__grid .testimonial:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero__headline {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .about__img-secondary {
        right: 0;
        bottom: -24px;
    }

    .about__stats {
        gap: 24px;
    }

    .menu__columns-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .gallery__item--large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 300px;
    }

    .gallery__item--wide {
        grid-column: 1 / -1;
        min-height: 200px;
    }

    .gallery__item:not(.gallery__item--large) {
        min-height: 180px;
    }

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

    .testimonials__grid .testimonial:last-child {
        max-width: none;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrap {
        padding: 32px 24px;
    }

    .footer__top {
        flex-direction: column;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .about,
    .menu,
    .gallery,
    .testimonials,
    .cta,
    .contact {
        padding: 80px 0;
    }

    .about__stats {
        flex-direction: column;
        gap: 20px;
    }

    .menu__tabs {
        gap: 6px;
    }

    .menu__tab {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: 1;
    }
}
