/* ============================================
   Shamrock Beverage — Custom Styles
   Classic & Elegant · Emerald + Cream
   ============================================ */

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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #faf9f6;
    --cream-100: #f5f3ed;
    --cream-200: #ebe6da;
    --cream-300: #e0d9ca;
    --warm-gray-50: #f8f7f4;
    --warm-gray-100: #f0ede6;
    --warm-gray-200: #e2ded4;
    --warm-gray-300: #c4bfb3;
    --warm-gray-400: #9e9889;
    --warm-gray-500: #7a7467;
    --warm-gray-600: #5c574d;
    --warm-gray-700: #3d3932;
    --warm-gray-800: #2a2620;
    --warm-gray-900: #1a1713;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 2px rgba(26, 23, 19, 0.04), 0 1px 3px rgba(26, 23, 19, 0.06);
    --shadow-md: 0 4px 6px rgba(26, 23, 19, 0.04), 0 4px 12px rgba(26, 23, 19, 0.06);
    --shadow-lg: 0 8px 16px rgba(26, 23, 19, 0.06), 0 8px 24px rgba(26, 23, 19, 0.08);
    --shadow-xl: 0 16px 32px rgba(26, 23, 19, 0.08), 0 16px 48px rgba(26, 23, 19, 0.10);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--warm-gray-800);
    background-color: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--warm-gray-900);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background-color: var(--emerald-600);
}

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

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--warm-gray-500);
    max-width: 540px;
    line-height: 1.7;
}

.text-emerald {
    color: var(--emerald-700);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--emerald-800);
    color: #fff;
    border-color: var(--emerald-800);
}

.btn-primary:hover {
    background-color: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--emerald-800);
    border-color: var(--emerald-800);
}

.btn-outline:hover {
    background-color: var(--emerald-800);
    color: #fff;
    transform: translateY(-1px);
}

.btn-white {
    background-color: #fff;
    color: var(--emerald-800);
    border-color: #fff;
}

.btn-white:hover {
    background-color: var(--cream-100);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background-color: transparent;
    color: var(--cream-200);
    border-color: var(--cream-300);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--cream-200);
    transform: translateY(-1px);
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--emerald-800);
}

.nav-brand-icon {
    color: var(--emerald-700);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--warm-gray-600);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--emerald-700);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--emerald-600);
    transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 22px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--emerald-800) !important;
    border: 1.5px solid var(--emerald-800);
    border-radius: var(--radius-sm);
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background-color: var(--emerald-800) !important;
    color: #fff !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--warm-gray-700);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 50%, var(--cream-200) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 25% 25%, var(--emerald-800) 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, var(--emerald-800) 1px, transparent 1px);
    background-size: 48px 48px, 32px 32px;
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
    width: 100%;
}

.hero-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(6, 95, 70, 0.08);
    border: 1px solid rgba(6, 95, 70, 0.15);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--emerald-800);
    margin-bottom: 28px;
}

.hero-badge svg {
    color: var(--emerald-600);
}

.hero-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--warm-gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.0625rem;
    color: var(--warm-gray-500);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Floating Stat Cards */
.hero-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.stat-card--1 { margin-top: 0; }
.stat-card--2 { margin-top: -8px; }
.stat-card--3 { margin-top: -16px; }

.stat-card-img {
    height: 100px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.stat-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.3), rgba(6, 95, 70, 0.1));
}

.stat-card-body {
    padding: 16px 20px;
}

.stat-card-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 4px;
}

.stat-card-text {
    font-size: 0.875rem;
    color: var(--warm-gray-600);
    line-height: 1.55;
}

/* ---------- Products Section ---------- */
.section {
    padding: 100px 0;
}

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

.section-header .section-eyebrow {
    justify-content: center;
}

.section-header .section-eyebrow::before {
    display: none;
}

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

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

.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--cream-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cream-300);
}

.product-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6, 78, 59, 0.08));
}

.product-card-content {
    padding: 28px;
}

.product-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 95, 70, 0.08);
    border-radius: var(--radius-sm);
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.product-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--warm-gray-900);
}

.product-card-desc {
    font-size: 0.9375rem;
    color: var(--warm-gray-500);
    line-height: 1.7;
}

/* ---------- About Section ---------- */
.about {
    background-color: var(--cream-100);
}

.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-xl);
    height: 520px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.about-img-main-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.05), transparent);
}

.about-img-accent {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
    border: 6px solid var(--cream-100);
    box-shadow: var(--shadow-lg);
}

.about-seal {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--emerald-800);
    border-radius: 50%;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.about-content .section-eyebrow {
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.about-text {
    font-size: 1rem;
    color: var(--warm-gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--warm-gray-700);
}

.value-icon {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* ---------- Quote Section ---------- */
.quote-section {
    padding: 80px 0;
    background-color: var(--emerald-800);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.quote-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-mark {
    color: #fff;
    margin-bottom: 24px;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
}

.quote-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.quote-source-name {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.04em;
}

.quote-source-line {
    width: 40px;
    height: 1.5px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* ---------- Visit Section ---------- */
.visit {
    background-color: var(--cream-50);
}

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

.visit-info .section-eyebrow {
    margin-bottom: 12px;
}

.visit-info .section-title {
    margin-bottom: 16px;
}

.visit-desc {
    font-size: 1rem;
    color: var(--warm-gray-500);
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(6, 95, 70, 0.08);
    border-radius: var(--radius-sm);
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--warm-gray-700);
    font-weight: 500;
}

.contact-value:hover {
    color: var(--emerald-700);
}

.hours {
    background: #fff;
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    padding: 24px 28px;
}

.hours-title {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray-700);
    margin-bottom: 16px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--cream-100);
}

.hours-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-day {
    font-size: 0.9375rem;
    color: var(--warm-gray-600);
}

.hours-time {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--warm-gray-800);
}

/* Map */
.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--cream-200), var(--cream-100));
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 400px;
    justify-content: center;
}

.map-pin {
    color: var(--emerald-700);
    margin-bottom: 8px;
}

.map-address {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--warm-gray-700);
    line-height: 1.6;
    margin-bottom: 8px;
}

.btn-map {
    margin-top: 8px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--cream-100), var(--cream-200));
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1rem;
    color: var(--warm-gray-500);
    line-height: 1.7;
    max-width: 520px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
    background-color: var(--warm-gray-900);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: var(--emerald-500);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

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

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

.footer a:hover {
    color: var(--emerald-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-cards-stack {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0;
        max-width: 600px;
    }

    .stat-card {
        flex: 1;
        min-width: 200px;
        margin-top: 0 !important;
    }

    .stat-card-img {
        height: 80px;
    }

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

    .about-img-main {
        height: 400px;
    }

    .about-img-accent {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -16px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--cream-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-card {
        padding: 32px 28px;
    }

    .hero-cards-stack {
        flex-direction: column;
    }

    .stat-card {
        min-width: unset;
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 72px 0;
    }

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

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

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

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

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        justify-content: center;
    }
}
