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

:root {
  --charcoal-950: #0d0d0d;
  --charcoal-900: #141414;
  --charcoal-800: #1e1e1e;
  --charcoal-700: #2a2a2a;
  --charcoal-600: #3a3a3a;
  --charcoal-500: #4a4a4a;
  --charcoal-300: #9e9e9e;
  --charcoal-200: #bdbdbd;
  --charcoal-100: #e0e0e0;
  --coral: #E86A54;
  --coral-light: #F08572;
  --coral-dark: #C9503A;
  --gold: #D4A054;
  --gold-light: #E8BC78;
  --gold-muted: #C49A64;
  --sidebar-width: 260px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  background-color: var(--charcoal-950);
  color: var(--charcoal-100);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ── Sidebar Navigation ── */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--charcoal-900);
  border-right: 1px solid var(--charcoal-700);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 32px 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0 20px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--charcoal-700);
}

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

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal-100);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-muted);
  margin-top: 2px;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--charcoal-300);
  transition: all 0.3s ease;
  position: relative;
}

.nav-item svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.nav-item:hover {
  background: var(--charcoal-800);
  color: var(--charcoal-100);
}

.nav-item:hover svg {
  opacity: 1;
}

.nav-item.active {
  background: rgba(232, 106, 84, 0.1);
  color: var(--coral);
}

.nav-item.active svg {
  opacity: 1;
  stroke: var(--coral);
}

.nav-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--coral);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.nav-item.active::before {
  height: 60%;
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--charcoal-700);
}

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.sidebar-divider {
  height: 1px;
  background: var(--charcoal-700);
  margin-bottom: 16px;
}

.sidebar-address {
  font-size: 0.72rem;
  color: var(--charcoal-300);
  line-height: 1.6;
}

/* ── Main Content ── */
.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
}

.section {
  padding: 100px 0;
  position: relative;
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding: 0 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold-muted);
}

.section-tag::before { left: -4px; }
.section-tag::after { right: -4px; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal-100);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--charcoal-300);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--coral);
  color: #fff;
}

.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 106, 84, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal-200);
  border: 1px solid var(--charcoal-600);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

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

/* ── Hero Section ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232, 106, 84, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(212, 160, 84, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 28px;
}

.badge-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal-100);
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--charcoal-300);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

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

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

.hero-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold-muted);
  border-radius: 16px;
  opacity: 0.4;
  z-index: -1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--charcoal-700);
  border-bottom: 1px solid var(--charcoal-700);
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-300);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--charcoal-600);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--charcoal-500);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-group {
  position: relative;
}

.about-img-main {
  border-radius: 16px;
  overflow: hidden;
}

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

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid var(--charcoal-950);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.about-img-secondary img {
  width: 200px;
  height: 150px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--coral);
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(232, 106, 84, 0.3);
}

.about-experience-badge .exp-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--charcoal-200);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--charcoal-300);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.value-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(212, 160, 84, 0.1);
  border: 1px solid rgba(212, 160, 84, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal-100);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--charcoal-300);
  line-height: 1.6;
}

/* ── Products Section ── */
.products-section {
  background: var(--charcoal-900);
}

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

.product-card {
  background: var(--charcoal-800);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--charcoal-700);
  transition: all 0.4s ease;
}

.product-card:hover {
  border-color: var(--coral);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--coral);
}

.product-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

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

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 20px;
  border-radius: 24px;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal-100);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 0.88rem;
  color: var(--charcoal-300);
  line-height: 1.7;
}

/* ── Coffee Section ── */
.coffee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.coffee-image {
  position: relative;
}

.coffee-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

.coffee-image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold-muted);
  border-radius: 16px;
  opacity: 0.3;
  z-index: -1;
}

.coffee-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.coffee-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--charcoal-200);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Schedule Section ── */
.schedule-section {
  background: var(--charcoal-900);
}

.schedule-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-header {
  text-align: center;
  margin-bottom: 48px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.day-card {
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-700);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.day-card:hover {
  border-color: var(--charcoal-500);
  transform: translateY(-2px);
}

.day-card.featured {
  border-color: var(--coral);
  background: rgba(232, 106, 84, 0.05);
}

.day-card.closed {
  opacity: 0.5;
}

.day-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-100);
  margin-bottom: 8px;
}

.day-time {
  font-size: 0.82rem;
  color: var(--charcoal-300);
  margin-bottom: 12px;
}

.day-status {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

.day-status.open {
  background: rgba(212, 160, 84, 0.15);
  color: var(--gold);
}

.day-status.closed {
  background: rgba(255, 255, 255, 0.05);
  color: var(--charcoal-500);
}

.schedule-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--charcoal-500);
  font-style: italic;
}

/* ── Contact Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-700);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--gold-muted);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(212, 160, 84, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-500);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--charcoal-100);
  line-height: 1.6;
}

.contact-item:hover .contact-value {
  color: var(--gold);
}

/* ── Contact Form ── */
.contact-form-wrapper {
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-700);
  border-radius: 16px;
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal-100);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--charcoal-300);
  margin-bottom: 28px;
}

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

.form-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--charcoal-300);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--charcoal-900);
  border: 1px solid var(--charcoal-600);
  border-radius: 8px;
  color: var(--charcoal-100);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-input::placeholder {
  color: var(--charcoal-500);
}

.form-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 106, 84, 0.15);
}

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

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(212, 160, 84, 0.08);
  border: 1px solid rgba(212, 160, 84, 0.2);
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--gold);
}

/* ── Map Section ── */
.map-section {
  height: 350px;
  border-top: 1px solid var(--charcoal-700);
  border-bottom: 1px solid var(--charcoal-700);
}

.map-section iframe {
  width: 100%;
  height: 100%;
}

/* ── CTA Section ── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(232, 106, 84, 0.08) 0%, var(--charcoal-950) 50%, rgba(212, 160, 84, 0.06) 100%);
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--charcoal-100);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--charcoal-300);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--charcoal-900);
  border-top: 1px solid var(--charcoal-700);
  padding: 64px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-100);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--charcoal-300);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-links li a {
  font-size: 0.88rem;
  color: var(--charcoal-300);
  transition: color 0.3s, padding-left 0.3s;
}

.footer-links li a:hover {
  color: var(--coral);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--charcoal-300);
  line-height: 1.6;
}

.footer-contact a {
  color: var(--charcoal-300);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--charcoal-700);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--charcoal-500);
}

/* ── Mobile Menu Toggle ── */
.menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1100;
  width: 44px;
  height: 44px;
  background: var(--charcoal-800);
  border: 1px solid var(--charcoal-600);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--charcoal-200);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  backdrop-filter: blur(4px);
}

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

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root {
    --sidebar-width: 220px;
  }

  .hero-grid,
  .about-grid,
  .coffee-grid,
  .contact-grid {
    gap: 40px;
  }

  .schedule-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: flex;
  }

  .overlay.active {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .section {
    padding: 64px 0;
  }

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

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

  .hero-image { order: -1; }

  .hero-image-wrapper img {
    height: 320px;
  }

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

  .hero-scroll-indicator {
    display: none;
  }

  .about-grid,
  .coffee-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-secondary {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }

  .about-experience-badge {
    position: relative;
    top: auto;
    left: auto;
    display: inline-block;
    margin-bottom: 16px;
  }

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

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

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

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

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

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

  .coffee-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }
}
