/* Amaryn - Complete Stylesheet
   ============================= */

:root {
    --cream: #fefaf6;
    --cream-dark: #EAE6DF;
    --taupe: #9f746a;
    --taupe-dark: #8a635a;
    --charcoal: #3D3731;
    --warm-gray: #8B7F73;
    --gold: #C9A86C;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
nav, .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(254, 250, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(159, 116, 106, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 60px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.nav-logo {
    height: 45px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--charcoal);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--taupe);
}

.nav-cta {
    padding: 14px 28px;
    background: var(--taupe);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.nav-cta:hover {
    background: var(--taupe-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(159, 116, 106, 0.3);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: 1px solid rgba(159, 116, 106, 0.1);
    z-index: 100;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--charcoal) !important;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--taupe) !important;
    padding-left: 30px;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 120;
    position: relative;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 30px 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-bottom: 1px solid rgba(159, 116, 106, 0.1);
    background: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--taupe);
}

.mobile-has-arrow svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
}

.mobile-back {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 0;
    color: var(--taupe);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    background: none;
    cursor: pointer;
    margin-bottom: 10px;
}

.mobile-back svg {
    width: 20px;
    height: 20px;
}

.mobile-panel-sub {
    transform: translateX(100%);
}

.mobile-panel-sub.active {
    transform: translateX(0);
}

.mobile-panel.hidden {
    transform: translateX(-100%);
}

.mobile-panel-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(159, 116, 106, 0.15);
}

.mobile-cta {
    margin-top: auto;
    padding: 18px 30px !important;
    background: var(--taupe) !important;
    color: white !important;
    text-align: center;
    justify-content: center !important;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: none !important;
}

.mobile-cta:hover {
    background: var(--taupe-dark) !important;
}

/* Buttons */
.btn {
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--taupe);
    color: white;
}

.btn-primary:hover {
    background: var(--taupe-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(159, 116, 106, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 2px solid var(--charcoal);
}

.btn-secondary:hover {
    background: var(--charcoal);
    color: var(--cream);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 60px 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(159, 116, 106, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(159, 116, 106, 0.1);
    border: 1px solid var(--taupe);
    color: var(--taupe);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title span {
    font-style: italic;
    color: var(--taupe);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto 50px;
    line-height: 1.9;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--warm-gray);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--taupe), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Gift Banner */
.gift-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 25px 60px;
    background: linear-gradient(135deg, var(--taupe) 0%, var(--taupe-dark) 100%);
    color: white;
    flex-wrap: wrap;
}

.gift-banner-icon {
    flex-shrink: 0;
}

.gift-banner-text {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
}

.gift-banner-text strong {
    font-weight: 600;
}

.gift-banner-btn {
    padding: 12px 28px;
    background: white;
    color: var(--taupe);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gift-banner-btn:hover {
    background: var(--cream);
    transform: scale(1.05);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    color: var(--taupe);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 30px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.8;
}

/* Discover Section */
.discover {
    padding: 120px 60px;
    background: white;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.discover-item {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.discover-item:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.discover-item:hover img {
    transform: scale(1.08);
}

.discover-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 55, 49, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.discover-item:hover::after {
    opacity: 1;
}

.discover-placeholder {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Services Section */
.services {
    padding: 120px 60px;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: white;
    padding: 45px 30px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(159, 116, 106, 0.1);
    transition: all 0.4s ease;
    cursor: default;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(159, 116, 106, 0.15);
    border-color: var(--taupe);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
    color: var(--taupe);
}

.service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.service-desc {
    font-size: 0.85rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Diagnostic Banner */
.diagnostic-banner {
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2520 100%);
}

.diagnostic-banner-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.diagnostic-banner-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: white;
    margin-bottom: 15px;
}

.diagnostic-banner-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
}

.diagnostic-banner .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Brands Section */
.brands {
    padding: 100px 60px;
    background: white;
    overflow: hidden;
}

.brands-container {
    overflow: hidden;
    margin-top: 50px;
}

.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.brand-logo-link:hover {
    transform: scale(1.1);
}

.brand-logo-link img {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.brand-logo-link:hover img {
    filter: grayscale(0%) opacity(1);
}

.brand-logo-link span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--warm-gray);
    font-style: italic;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.brand-logo-link:hover span {
    color: var(--taupe);
}

/* Gift Card Section */
.gift-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.gift-card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(159, 116, 106, 0.1);
}

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

.gift-icon-svg {
    margin-bottom: 20px;
    color: var(--taupe);
}

.gift-amounts {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gift-amount {
    padding: 12px 20px;
    background: var(--cream);
    border-radius: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--taupe);
}

.gift-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.gift-content p {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Info Section */
.info {
    padding: 120px 60px;
    background: var(--charcoal);
    color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.info-divider {
    background: linear-gradient(to bottom, transparent, var(--taupe), transparent);
    height: 100%;
}

.info-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--taupe);
}

.info-block p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.info-block a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--taupe);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}

.hours-list .day {
    color: rgba(255,255,255,0.6);
}

.hours-list .time {
    color: white;
}

.hours-list .closed {
    color: var(--taupe);
    font-style: italic;
}

/* CTA Section */
.cta {
    padding: 120px 60px;
    text-align: center;
    background: var(--cream);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(159, 116, 106, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 20px;
    position: relative;
    color: var(--charcoal);
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 50px;
    position: relative;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 60px 50px;
}

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

footer .logo, footer .footer-logo {
    color: white;
    font-size: 2rem;
    margin-bottom: 40px;
    display: block;
}

.footer-logo {
    height: 45px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin: 0 auto 40px;
}

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

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--taupe);
    border-color: var(--taupe);
    color: white;
    transform: translateY(-3px);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-btn span {
    text-transform: uppercase;
}

.footer-copy {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

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

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

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

    .discover-item:first-child {
        grid-row: span 1;
        aspect-ratio: 4/5;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .info-divider {
        display: none;
    }

    .gift-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav, .navbar {
        padding: 15px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero {
        padding: 120px 24px 80px;
    }

    .gift-banner {
        flex-direction: column;
        padding: 25px;
        text-align: center;
        gap: 15px;
    }

    .discover, .services, .brands, .gift-section, .info, .cta, .diagnostic-banner {
        padding: 80px 24px;
    }

    .diagnostic-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .diagnostic-banner-text p {
        max-width: 100%;
    }

    .services-grid, .discover-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    .gift-card {
        padding: 40px 25px;
    }

    footer {
        padding: 40px 24px;
    }

    .footer-social {
        flex-direction: column;
        gap: 12px;
    }

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