/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #0d9488; color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; color: #0f172a; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #0d9488; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 20px; }
.section-body { color: #475569; font-size: 1.05rem; line-height: 1.75; }
.section-lead { max-width: 600px; }
.center { text-align: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,23,42,0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 1px 20px rgba(15,23,42,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: #0f172a; }
.logo-light .logo-text { color: #f1f5f9; }
.logo-light .logo-icon rect { fill: #0d9488; }

/* NAV */
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  font-size: 0.9rem; font-weight: 500; color: #475569;
  position: relative; transition: color 0.2s;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #0d9488; transition: width 0.2s;
}
.main-nav a:hover { color: #0d9488; }
.main-nav a:hover::after { width: 100%; }

/* MOBILE NAV TOGGLE */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-bar {
  display: block; width: 22px; height: 2px; background: #0f172a;
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #f0f9ff 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/18656839/pexels-photo-18656839.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: 0.07;
}
.hero-content { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #0d9488;
  background: rgba(13,148,136,0.08); padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem); color: #0f172a;
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-headline br { display: none; }
.hero-sub { font-size: 1.15rem; color: #475569; max-width: 480px; margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; padding: 14px 28px;
  border-radius: 8px; transition: all 0.2s;
}
.btn-primary { background: #0d9488; color: #fff; }
.btn-primary:hover { background: #0f766e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-outline { background: transparent; color: #0f172a; border: 1.5px solid #cbd5e1; }
.btn-outline:hover { border-color: #0d9488; color: #0d9488; }
.btn-full { width: 100%; justify-content: center; }

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-image-stack { position: relative; }
.hero-img-main { border-radius: 16px; width: 100%; height: 620px; object-fit: cover; box-shadow: 0 25px 60px rgba(15,23,42,0.15); }
.hero-img-float {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: 12px; box-shadow: 0 16px 40px rgba(15,23,42,0.18);
  border: 4px solid #fff;
}
.hero-badge {
  position: absolute; top: 24px; left: -20px;
  background: #0d9488; color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 10px 16px; border-radius: 100px; display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: #94a3b8; animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== TRUST BAR ===== */
.trust-bar { background: #0f172a; padding: 20px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: #f1f5f9; font-size: 0.9rem; font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }

/* ORIGIN */
.origin { background: #f8fafc; }
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.origin-visual { position: relative; }
.origin-visual img { border-radius: 16px; width: 100%; height: 460px; object-fit: cover; }
.origin-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; background: #0d9488; border-radius: 16px; z-index: -1;
}
.origin-content { padding: 20px 0; }
.origin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.stat { background: #fff; padding: 24px; border-radius: 12px; border: 1px solid #e2e8f0; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: #0f172a; margin-bottom: 6px; }
.stat-label { font-size: 0.85rem; color: #64748b; line-height: 1.5; }

/* MENU */
.menu { background: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.menu-card {
  background: #f8fafc; border-radius: 16px; overflow: hidden;
  border: 1px solid #e2e8f0; transition: transform 0.25s, box-shadow 0.25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,23,42,0.1); }
.menu-card-img img { width: 100%; height: 260px; object-fit: cover; }
.menu-card-body { padding: 28px; }
.menu-card-title { font-size: 1.35rem; margin-bottom: 10px; }
.menu-card-desc { font-size: 0.95rem; color: #64748b; line-height: 1.7; }

/* ROASTING */
.roasting { background: #0f172a; color: #f1f5f9; }
.roasting .section-title { color: #f1f5f9; }
.roasting .section-body { color: #94a3b8; }
.roasting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.roasting-visual img { border-radius: 16px; width: 100%; height: 640px; object-fit: cover; }
.process-steps { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.process-step { display: flex; gap: 20px; }
.step-num {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: #0d9488; line-height: 1; min-width: 36px;
}
.process-step h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: #f1f5f9; margin-bottom: 4px; }
.process-step p { font-size: 0.9rem; color: #94a3b8; line-height: 1.6; }

/* VISIT */
.visit { background: #f8fafc; padding: 80px 0; }
.visit-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 4px 24px rgba(15,23,42,0.06); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.visit-text { padding: 60px; }
.visit-details { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.visit-detail { display: flex; gap: 14px; align-items: flex-start; }
.visit-detail svg { flex-shrink: 0; margin-top: 2px; }
.visit-detail strong { display: block; font-size: 0.9rem; color: #0f172a; margin-bottom: 2px; }
.visit-detail span { font-size: 0.9rem; color: #64748b; }
.visit-map img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }

/* CONTACT */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-method {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: #475569; transition: color 0.2s;
}
.contact-method:hover { color: #0d9488; }
.contact-method svg { flex-shrink: 0; }

/* FORM */
.contact-form-wrap { background: #f8fafc; padding: 40px; border-radius: 16px; border: 1px solid #e2e8f0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #0f172a; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e2e8f0; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #0f172a;
  background: #fff; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #0d9488; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #94a3b8; }
.form-success {
  display: none; margin-top: 16px; padding: 14px 18px;
  background: rgba(13,148,136,0.08); color: #0d9488; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: #0f172a; color: #94a3b8; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-links h4, .footer-hours h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #f1f5f9; margin-bottom: 16px; }
.footer-links ul, .footer-hours ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: #94a3b8; transition: color 0.2s; }
.footer-links a:hover { color: #0d9488; }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.9rem; gap: 24px; }
.footer-hours .time { color: #0d9488; font-weight: 500; }
.footer-bottom { border-top: 1px solid rgba(241,245,249,0.08); padding: 24px 0; display: flex; justify-content: space-between; font-size: 0.8rem; color: #64748b; flex-wrap: wrap; gap: 12px; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; }
  .hero-img-main { height: 460px; }
  .hero-img-float { right: 0; bottom: -20px; }
  .origin-grid, .roasting-grid, .visit-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-map img { min-height: 280px; }
  .visit-text { padding: 40px; }
  .roasting-visual img { height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav ul { flex-direction: column; align-items: center; gap: 28px; }
  .main-nav a { font-size: 1.2rem; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-headline br { display: block; }
  .hero-img-main { height: 360px; }
  .hero-img-float { display: none; }
  .hero-badge { left: 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .origin-stats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 0; }
  .visit-text { padding: 32px; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
