/* ============================================
   OLD SPRUCE BREWING — STYLESHEET
   Charcoal + Coral | Vibrant Modern
   ============================================ */

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

:root {
    --charcoal: #1a1a1a;
    --charcoal-light: #2a2a2a;
    --charcoal-mid: #333333;
    --coral: #FF6B52;
    --coral-light: #FF8A75;
    --coral-dark: #E55A42;
    --cream: #FFF8F5;
    --cream-dark: #F5EDE8;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --gray-dark: #555555;
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--charcoal);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

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

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

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

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--coral);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-follower.hovering {
    width: 64px;
    height: 64px;
    border-color: var(--coral-light);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower {
        display: none;
    }
    body {
        cursor: auto;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ease-out);
    border: 2px solid transparent;
    cursor: none;
}

@media (max-width: 768px) {
    .btn { cursor: pointer; }
}

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

.btn-coral:hover {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 82, 0.35);
}

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

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

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

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

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

/* --- Section Tags --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--coral);
    display: inline-block;
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--cream);
}

.text-coral {
    color: var(--coral);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 500px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 107, 82, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    transition: color 0.3s ease;
}

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

.logo-icon {
    color: var(--coral);
    transition: transform 0.3s var(--ease-spring);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

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

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--gray-light);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.3s var(--ease-out);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--charcoal);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out);
}

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

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    transition: color 0.3s ease;
}

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

.mobile-menu .btn {
    margin-top: 16px;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--coral);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #FF9F85;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--coral);
    top: 50%;
    left: 40%;
    animation: float 6s ease-in-out infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: #FFB8A0;
    top: 20%;
    left: 10%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(255, 107, 82, 0.1);
    border: 1px solid rgba(255, 107, 82, 0.2);
    border-radius: 50px;
    width: fit-content;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--cream);
}

.hero-title .line {
    display: block;
}

.hero-title .line:nth-child(2) {
    padding-left: 40px;
}

.hero-title .line:nth-child(4) {
    color: var(--coral);
    padding-left: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--coral-light);
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 480px;
    margin-bottom: 40px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.hero-img-1 {
    width: 340px;
    height: 460px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-2 {
    width: 260px;
    height: 340px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.4) 100%);
    border-radius: 20px;
}

.hero-badge {
    position: absolute;
    bottom: 180px;
    right: -20px;
    z-index: 3;
    width: 100px;
    height: 100px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--white);
    animation: spin 20s linear infinite;
    box-shadow: 0 10px 40px rgba(255, 107, 82, 0.4);
}

.hero-badge span {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: bobble 2s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--coral), transparent);
}

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

/* --- Marquee --- */
.marquee {
    background: var(--coral);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marquee 25s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
    padding-right: 40px;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    white-space: nowrap;
}

.marquee-dot {
    font-size: 0.75rem !important;
    color: var(--charcoal-light) !important;
}

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

/* --- About Section --- */
.about {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--coral), transparent);
    opacity: 0.3;
}

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

.about-left .section-title {
    margin-bottom: 32px;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.about-right {
    position: relative;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding: 32px;
    background: var(--charcoal-light);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 82, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- Brews Section --- */
.brews {
    padding: 120px 0;
    background: var(--charcoal-light);
    position: relative;
}

.brews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--coral), transparent);
    opacity: 0.3;
}

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

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

.brews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.brew-card {
    background: var(--charcoal);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.brew-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 82, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 107, 82, 0.2);
}

.brew-card-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brew-card-shape {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 107, 82, 0.15);
    transition: all 0.4s var(--ease-spring);
}

.brew-card:hover .brew-card-shape {
    transform: scale(1.3);
    background: rgba(255, 107, 82, 0.25);
}

.shape-dark {
    background: rgba(255, 255, 255, 0.08) !important;
}

.shape-light {
    background: rgba(255, 255, 255, 0.12) !important;
}

.shape-coral {
    background: rgba(255, 107, 82, 0.35) !important;
}

.brew-card-icon {
    position: relative;
    z-index: 1;
    color: var(--coral);
    transition: all 0.4s var(--ease-spring);
}

.brew-card:hover .brew-card-icon {
    transform: scale(1.15) rotate(5deg);
}

.brew-card-info {
    padding: 24px;
}

.brew-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.brew-style {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    background: rgba(255, 107, 82, 0.1);
    padding: 4px 10px;
    border-radius: 50px;
}

.brew-abv {
    font-size: 0.8125rem;
    color: var(--gray);
    font-weight: 500;
}

.brew-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 8px;
    line-height: 1.2;
}

.brew-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
}

.brew-cta {
    text-align: center;
    padding: 48px;
    background: rgba(255, 107, 82, 0.05);
    border-radius: 24px;
    border: 1px dashed rgba(255, 107, 82, 0.2);
}

.brew-cta p {
    font-size: 1.0625rem;
    color: var(--gray-light);
    margin-bottom: 24px;
}

/* --- Coffee Section --- */
.coffee {
    padding: 120px 0;
    background: var(--cream);
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.coffee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--coral), transparent);
    opacity: 0.3;
}

.coffee .section-tag {
    color: var(--coral);
}

.coffee .section-tag::before {
    background: var(--coral);
}

.coffee .section-title {
    color: var(--charcoal);
}

.coffee-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.coffee-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 32px;
}

.coffee-features {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.coffee-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
}

.feature-check {
    width: 28px;
    height: 28px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.coffee-visual {
    position: relative;
}

.coffee-image-grid {
    position: relative;
    height: 600px;
}

.coffee-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.coffee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.coffee-img-1 {
    width: 300px;
    height: 400px;
    top: 0;
    right: 0;
    z-index: 2;
}

.coffee-img-2 {
    width: 260px;
    height: 320px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* Decorative geometric shapes */
.coffee .geo-shape {
    position: absolute;
    pointer-events: none;
}

.geo-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--coral);
    border-radius: 50%;
    top: -30px;
    left: 40px;
    opacity: 0.3;
}

.geo-square {
    width: 80px;
    height: 80px;
    background: var(--coral);
    opacity: 0.08;
    bottom: 40px;
    right: -20px;
    transform: rotate(45deg);
}

/* --- Visit Section --- */
.visit {
    padding: 120px 0;
    background: var(--charcoal);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--coral), transparent);
    opacity: 0.3;
}

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

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

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visit-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 82, 0.1);
    border: 1px solid rgba(255, 107, 82, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 6px;
}

.visit-detail p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--gray-light);
    transition: color 0.3s ease;
}

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

.visit-map {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.visit-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.visit-map:hover img {
    transform: scale(1.03);
}

.map-directions {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--coral);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s var(--ease-out);
}

.map-directions:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 82, 0.4);
}

/* --- Contact Section --- */
.contact {
    padding: 120px 0;
    background: var(--charcoal-light);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--coral), transparent);
    opacity: 0.3;
}

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

.contact-left .section-title {
    margin-bottom: 24px;
}

.contact-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--cream);
    padding: 16px 24px;
    background: var(--charcoal);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--ease-out);
}

.contact-direct-item:hover {
    border-color: rgba(255, 107, 82, 0.3);
    transform: translateX(4px);
    color: var(--coral);
}

.contact-direct-item svg {
    color: var(--coral);
}

/* Contact Form */
.contact-form {
    background: var(--charcoal);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--charcoal-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 107, 82, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--charcoal-light);
    color: var(--cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 48px;
    background: var(--charcoal);
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 82, 0.2);
}

.form-success.active {
    display: block;
    animation: fadeInUp 0.5s var(--ease-out);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--coral);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1rem;
    color: var(--gray-light);
    line-height: 1.6;
}

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

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-brand p {
    color: var(--gray);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 20px;
}

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

.footer-col a {
    font-size: 0.9375rem;
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--cream);
}

.footer-col li {
    font-size: 0.9375rem;
    color: var(--gray);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray);
}

.footer-note {
    font-size: 0.8125rem !important;
    color: var(--gray) !important;
    font-style: italic;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-tag {
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .coffee-visual {
        order: -1;
    }

    .coffee-image-grid {
        height: 400px;
    }

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

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

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

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

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

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

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-title .line:nth-child(2),
    .hero-title .line:nth-child(4) {
        padding-left: 0;
    }

    .hero-scroll {
        display: none;
    }

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

    .brew-card-visual {
        height: 160px;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .coffee-image-grid {
        height: 300px;
    }

    .coffee-img-1 {
        width: 200px;
        height: 260px;
    }

    .coffee-img-2 {
        width: 180px;
        height: 220px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
}

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

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

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

    .marquee-content {
        gap: 24px;
    }
}
