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

:root {
    --charcoal: #2D2D2D;
    --charcoal-dark: #1A1A1A;
    --charcoal-light: #3D3D3D;
    --coral: #FF6B4A;
    --coral-light: #FF8A70;
    --coral-dark: #E5553A;
    --cream: #FAFAFA;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #DDDDDD;
    --gray-600: #888888;
    --gray-800: #444444;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-coral: 0 8px 30px rgba(255,107,74,0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.section-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 520px;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255,107,74,0.4);
}

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

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

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

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

.navbar.scrolled {
    background: rgba(45,45,45,0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    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 {
    color: var(--white);
}

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

.nav-cta {
    background: var(--coral) !important;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--coral-dark) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

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

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

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

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

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

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--coral);
    top: -200px;
    right: -100px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--coral);
    bottom: -100px;
    left: -100px;
}

.geo-triangle {
    position: absolute;
    opacity: 0.05;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--coral);
    top: 20%;
    left: 5%;
    transform: rotate(15deg);
}

.geo-square {
    position: absolute;
    opacity: 0.05;
    background: var(--coral);
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    transform: rotate(30deg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,107,74,0.12);
    border: 1px solid rgba(255,107,74,0.25);
    color: var(--coral);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
}

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

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.hero-card-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 320px;
    height: 420px;
}

.hero-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.card-tag {
    display: inline-block;
    background: var(--coral);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.stat-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1.3s;
}

.stat-card-3 {
    bottom: 5%;
    right: 10px;
    animation-delay: 2.6s;
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,74,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gray-600);
    line-height: 1.3;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about-image-stack {
    position: relative;
    height: 480px;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-1 {
    width: 280px;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 240px;
    height: 280px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--coral);
    border-radius: var(--radius-md);
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    z-index: 0;
    opacity: 0.3;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coral-bg {
    background: var(--coral);
}

.dark-bg {
    background: var(--charcoal);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Brews */
.brews {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.brews::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--coral);
    border-radius: 50%;
    opacity: 0.03;
    top: -200px;
    right: -200px;
}

.brews .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.brews .section-label {
    justify-content: center;
}

.brews .section-label::before {
    display: none;
}

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

.brews .section-subtitle {
    margin: 0 auto;
    color: rgba(255,255,255,0.55);
}

.brews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.brew-card {
    background: var(--charcoal-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

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

.brew-card-visual {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.brew-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brew-card:hover .brew-card-visual img {
    transform: scale(1.08);
}

.brew-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--charcoal);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.brew-badge.coral {
    background: var(--coral);
}

.brew-info {
    padding: 24px;
}

.brew-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.brew-style {
    font-size: 0.85rem;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 10px;
}

.brew-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 16px;
}

.brew-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.brew-divider {
    color: var(--coral);
}

.brew-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.brew-cta p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Experience */
.experience {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

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

.experience-text {
    font-size: 1.05rem;
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 36px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.exp-feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--coral);
    line-height: 1;
    opacity: 0.4;
    flex-shrink: 0;
    width: 50px;
}

.exp-feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.exp-feature p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.experience-visual {
    position: relative;
}

.exp-image-grid {
    display: grid;
    gap: 16px;
}

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

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.exp-img:hover img {
    transform: scale(1.04);
}

.exp-img-1 {
    height: 400px;
}

.exp-img-2 {
    height: 160px;
}

.exp-img-3 {
    height: 160px;
}

.exp-accent-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.accent-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid var(--coral);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    opacity: 0.3;
}

.accent-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--coral);
    bottom: 40px;
    left: -20px;
    border-radius: var(--radius-sm);
    opacity: 0.15;
    transform: rotate(20deg);
}

/* Visit */
.visit {
    padding: 100px 0;
    background: var(--charcoal);
}

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 520px;
}

.visit-content {
    padding: 60px;
    background: var(--charcoal-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-content .section-label {
    margin-bottom: 16px;
}

.visit-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 36px;
}

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

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

.visit-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,107,74,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 2px;
    font-weight: 600;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition);
}

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

.visit-map {
    position: relative;
    min-height: 400px;
}

.visit-map iframe {
    position: absolute;
    inset: 0;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

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

.contact-text {
    font-size: 1.05rem;
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    transition: border-color var(--transition);
    background: var(--gray-100);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral);
    background: var(--white);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,107,74,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.form-success p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--charcoal-dark);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.08em;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p,
.footer-contact a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        min-height: 400px;
    }
    
    .about-grid,
    .experience-grid,
    .visit-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-stack {
        height: 360px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .brews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--charcoal-dark);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .hero-card-main {
        width: 240px;
        height: 320px;
    }
    
    .stat-card {
        padding: 12px 14px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.72rem;
    }
    
    .brews-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .visit-content {
        padding: 36px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-image-stack {
        height: 280px;
    }
    
    .about-img-1 {
        width: 200px;
        height: 240px;
    }
    
    .about-img-2 {
        width: 180px;
        height: 200px;
    }
    
    .exp-img-1 {
        height: 260px;
    }
    
    .exp-img-2,
    .exp-img-3 {
        height: 120px;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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