/* ============================================
   Round House Liquor Wine Beer — Styles
   ============================================ */

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

:root {
    --charcoal: #2D2D2D;
    --charcoal-deep: #1A1A1A;
    --charcoal-light: #4A4A4A;
    --coral: #E07A5F;
    --coral-light: #F2A48B;
    --coral-pale: #FDEDE8;
    --cream: #FDF6F0;
    --cream-dark: #F5EDE5;
    --white: #FFFFFF;
    --sand: #F7F0EA;
    --sand-dark: #EDE3D9;
    --text-primary: #2D2D2D;
    --text-secondary: #6B6B6B;
    --text-light: #9A9A9A;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(45, 45, 45, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 45, 45, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 45, 45, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

.section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 540px;
    line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--coral-light);
    border-color: var(--coral-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(224, 122, 95, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

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

.btn--outline-dark {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn--outline-dark:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--small {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn--large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    transition: color var(--transition);
}

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

.nav__logo-icon {
    color: var(--coral);
}

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

.nav__links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width var(--transition);
}

.nav__links a:hover::after {
    width: 100%;
}

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

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

.nav.scrolled .nav__links a:hover {
    color: var(--charcoal);
}

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

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav.scrolled .nav__toggle-bar {
    background: var(--charcoal);
}

/* ============================================
   Hero
   ============================================ */

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

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/34357798/pexels-photo-34357798.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.02);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.08); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.78) 0%,
        rgba(45, 45, 45, 0.55) 50%,
        rgba(224, 122, 95, 0.25) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.hero__title span {
    color: var(--coral-light);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero__trust-item svg {
    color: var(--coral-light);
    flex-shrink: 0;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

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

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

/* ============================================
   About
   ============================================ */

.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about__img-secondary img {
    width: 220px;
    height: 220px;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--coral);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.about__badge-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

.about__content {
    padding: 20px 0;
}

.about__content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.0rem;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--sand-dark);
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   Products
   ============================================ */

.products {
    padding: 120px 0;
    background: var(--sand);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card__img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

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

.product-card:hover .product-card__img img {
    transform: scale(1.06);
}

.product-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--coral);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-card__info {
    padding: 24px 28px 28px;
}

.product-card__info h3 {
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.product-card__info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Why Us
   ============================================ */

.why-us {
    padding: 120px 0;
    background: var(--white);
}

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

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--coral-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.why-feature h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.why-feature p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.why-us__visual {
    position: relative;
}

.why-us__visual-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us__visual-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.why-us__quote {
    position: absolute;
    bottom: -32px;
    left: -32px;
    background: var(--charcoal);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 320px;
}

.why-us__quote svg {
    color: var(--coral-light);
    margin-bottom: 12px;
    opacity: 0.7;
}

.why-us__quote blockquote {
    font-size: 0.9375rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.why-us__quote cite {
    font-size: 0.8125rem;
    font-style: normal;
    color: var(--coral-light);
    font-weight: 500;
}

/* ============================================
   Visit
   ============================================ */

.visit {
    padding: 120px 0;
    background: var(--cream);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit__info {
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.visit__info .section-subtitle {
    margin-bottom: 40px;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--coral-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
}

.visit__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 2px;
}

.visit__detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.visit__detail-value a {
    color: var(--coral);
    transition: color var(--transition);
}

.visit__detail-value a:hover {
    color: var(--coral-light);
}

.visit__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.visit__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 480px;
}

.visit__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--charcoal-deep);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo svg {
    color: var(--coral);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__legal {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__contact p {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

.footer__contact a {
    color: var(--coral-light);
    transition: color var(--transition);
}

.footer__contact a:hover {
    color: var(--coral);
}

.footer__links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Mobile Menu
   ============================================ */

.nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.nav__links.active a {
    color: var(--charcoal);
    font-size: 1rem;
}

.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);
}

/* ============================================
   Scroll Animations
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .about__grid,
    .why-us__inner,
    .visit__grid {
        gap: 48px;
    }

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

    .about__badge {
        left: -10px;
        top: -10px;
    }

    .why-us__quote {
        left: -16px;
        bottom: -20px;
    }
}

@media (max-width: 900px) {
    .about__grid,
    .why-us__inner {
        grid-template-columns: 1fr;
    }

    .about__images {
        max-width: 520px;
    }

    .why-us__visual {
        max-width: 520px;
    }

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

    .visit__map {
        min-height: 320px;
    }

    .visit__map iframe {
        min-height: 320px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .nav__links.active {
        display: flex;
    }

    .hero__content {
        padding: 120px 0 80px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

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

    .about__stats {
        gap: 24px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .visit__info {
        padding: 32px 24px;
    }
}

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

    .about,
    .products,
    .why-us,
    .visit {
        padding: 80px 0;
    }

    .hero__trust {
        flex-direction: column;
        gap: 16px;
    }

    .about__img-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
    }

    .about__images {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .why-us__quote {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
    }

    .why-us__visual-img img {
        height: 360px;
    }

    .visit__cta {
        flex-direction: column;
    }

    .visit__cta .btn {
        justify-content: center;
    }
}
