/* 
=========================================
  AURA COFFEE - STYLESHEET
  Premium Dark Roastery Blueprint Aesthetic
=========================================
*/

/* --- DESIGN TOKENS --- */
:root {
  /* Color Palette */
  --bg-obsidian: #050404;
  --bg-card: rgba(14, 12, 11, 0.7);
  --border-copper: rgba(217, 160, 102, 0.08);
  --border-copper-focus: rgba(217, 160, 102, 0.35);
  
  --copper-primary: #d9a066;
  --copper-light: #eed2b3;
  --copper-dark: #8c5b30;
  --copper-glow: rgba(217, 160, 102, 0.08);
  
  --text-cream: #f6f3ed;
  --text-stone: #a19a95;
  --text-dark: #12100e;
  --white: #ffffff;
  
  /* Fonts */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-quick: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 30px rgba(217, 160, 102, 0.06);
}

/* --- BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-obsidian);
  color: var(--text-cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

  /* Blueprint Gridlines Overlay */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(217, 160, 102, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  background-size: 55px 55px, 55px 55px, 100% 100%, 100% 100%;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-quick);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-cream);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--copper-primary);
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.5rem;
  border-radius: 0; /* Square/architectural theme */
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
}

.btn-primary {
  background-color: var(--copper-primary);
  color: var(--text-dark);
  border-color: var(--copper-primary);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--copper-light);
  border-color: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 160, 102, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--copper-primary);
  border-color: rgba(217, 160, 102, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(217, 160, 102, 0.04);
  border-color: var(--copper-primary);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 0.5rem 1.35rem;
  font-size: 0.75rem;
  border-color: rgba(217, 160, 102, 0.3);
  color: var(--copper-primary);
}

.btn-nav:hover {
  background-color: var(--copper-primary);
  color: var(--text-dark);
  border-color: var(--copper-primary);
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 0.9rem;
  height: 0.9rem;
  transition: var(--transition-quick);
  stroke-width: 2.5;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* --- STRUCTURE & BLUEPRINT LAYOUT --- */
section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03); /* Grid boundary lines */
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2rem;
}

.bg-glass {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-copper);
  box-shadow: var(--shadow-md);
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--copper-primary);
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2.3rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-stone);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.max-w-600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.flex-1 {
  flex: 1;
}

/* --- SCROLL REVEALS --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 2rem 0;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 4, 4, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(217, 160, 102, 0.08);
}

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

.logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-cream);
}

.logo-dot {
  width: 0.35rem;
  height: 0.35rem;
  background-color: var(--copper-primary);
  border-radius: 50%;
  display: inline-block;
  margin-left: 0.2rem;
  box-shadow: 0 0 10px var(--copper-primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-stone);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--copper-primary);
  transition: var(--transition-quick);
}

.nav-link:hover {
  color: var(--text-cream);
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-cream);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* --- HERO --- */
.hero-section {
  padding-top: 13rem;
  padding-bottom: 9rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(217, 160, 102, 0.08);
  color: var(--copper-primary);
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(217, 160, 102, 0.18);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.hero-badge svg {
  width: 12px;
  height: 12px;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.75rem;
  font-weight: 400;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-stone);
  font-weight: 300;
  margin-bottom: 2.75rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: var(--text-stone);
  font-size: 0.85rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.meta-item svg {
  color: var(--copper-primary);
  width: 16px;
  height: 16px;
}

.meta-divider {
  width: 1px;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.08);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-radial-glow {
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(217, 160, 102, 0.06) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-image-card {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  aspect-ratio: 4/5;
  background-color: #0c0a09;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) brightness(0.9);
  transition: var(--transition-smooth);
}

.hero-image-card:hover .hero-image {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: rgba(5, 4, 4, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-copper);
  padding: 0.75rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
  z-index: 2;
  font-weight: 500;
}

.badge-dot {
  width: 0.35rem;
  height: 0.35rem;
  background-color: var(--copper-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--copper-primary);
}

/* --- STORY SECTION --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.story-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-stone);
  margin-bottom: 3rem;
  line-height: 1.75;
}

.story-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-pillar {
  display: flex;
  gap: 1.5rem;
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--copper-primary);
  font-weight: 400;
  line-height: 1;
}

.story-pillar h4 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.story-pillar p {
  font-size: 0.9rem;
  color: var(--text-stone);
  font-weight: 300;
}

.story-media-panel {
  display: flex;
  justify-content: flex-end;
}

.media-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: #0c0a09;
  overflow: hidden;
}

.story-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.02) brightness(0.9);
  transition: var(--transition-smooth);
}

.media-frame:hover .story-img {
  transform: scale(1.02);
}

.media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(5, 4, 4, 0.95) 70%);
  padding: 3rem 2rem 2.25rem 2rem;
}

.media-caption h5 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.media-caption p {
  font-size: 0.75rem;
  color: var(--copper-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

/* --- BREW CALCULATOR --- */
.calc-section {
  position: relative;
  overflow: hidden;
}

.calc-card {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-copper);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.calc-form-panel {
  padding: 4.5rem;
  background-color: rgba(14, 12, 11, 0.4);
  border-right: 1px solid var(--border-copper);
}

.form-group {
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-stone);
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.range-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--copper-primary);
}

.custom-select {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-copper);
  color: var(--text-cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-quick);
  cursor: pointer;
}

.custom-select:focus {
  border-color: var(--copper-primary);
  box-shadow: 0 0 15px rgba(217, 160, 102, 0.1);
}

.slider-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
  border-radius: 99px;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--copper-primary);
  cursor: pointer;
  transition: var(--transition-quick);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.slider-input::-webkit-slider-thumb:hover {
  background-color: var(--copper-light);
  transform: scale(1.15);
}

/* Calculator Output */
.calc-output-panel {
  padding: 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(8, 7, 7, 0.75);
}

.output-placeholder {
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
}

.output-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.04);
  margin-bottom: 1.5rem;
}

.output-placeholder h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.output-placeholder p {
  color: var(--text-stone);
  font-size: 0.85rem;
  font-weight: 300;
}

.output-results {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.output-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-copper);
  padding-bottom: 0.75rem;
}

.output-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.out-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-stone);
  font-weight: 600;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--text-cream);
  line-height: 1;
}

.text-copper {
  color: var(--copper-primary);
}

.barista-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.steps-heading {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-line {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-indicator {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 1px solid var(--copper-primary);
  color: var(--copper-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.step-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-stone);
  line-height: 1.5;
}

.step-text strong {
  color: var(--text-cream);
  font-weight: 500;
}

/* --- MENU BOARD --- */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-stone);
  padding: 0.6rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-quick);
}

.filter-btn:hover {
  color: var(--text-cream);
  border-color: rgba(255, 255, 255, 0.15);
}

.filter-btn.active {
  border-color: var(--copper-primary);
  color: var(--copper-primary);
  background-color: rgba(217, 160, 102, 0.04);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
  margin-top: 4rem;
}

.menu-item {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
  transition: var(--transition-smooth);
  opacity: 1;
  transform: translateY(0);
}

.menu-item.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.menu-item-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.menu-item-name {
  font-size: 1.45rem;
  font-weight: 400;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--copper-primary);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-stone);
  font-weight: 300;
  max-width: 500px;
}

/* --- BEANS ORIGIN --- */
.beans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.bean-card {
  border: 1px solid var(--border-copper);
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.bean-card:hover {
  transform: translateY(-6px);
  border-color: var(--copper-primary);
  box-shadow: var(--shadow-glow);
  background-color: rgba(28, 25, 23, 0.15);
}

.bean-origin {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--copper-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.bean-name {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.bean-process {
  font-size: 0.8rem;
  color: var(--text-stone);
  margin-bottom: 2rem;
}

.tasting-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.note {
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.75rem;
  color: var(--text-stone);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  background-color: rgba(255, 255, 255, 0.02);
}

.bean-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.bean-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.bean-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--copper-light);
}

/* --- WORKSHOPS BOOKING --- */
.booking-section {
  padding: 4rem 0;
}

.booking-card {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-copper);
}

.booking-info-panel {
  padding: 4.5rem;
  border-right: 1px solid var(--border-copper);
}

.workshop-details {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.detail-item svg {
  color: var(--copper-primary);
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.dt-title {
  font-size: 1.05rem;
  font-weight: 500;
}

.dt-sub {
  font-size: 0.85rem;
  color: var(--text-stone);
  font-weight: 300;
}

.booking-form-panel {
  padding: 4.5rem;
  background-color: rgba(8, 7, 7, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-form-panel form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.booking-form-panel input,
.booking-form-panel select {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background-color: var(--bg-obsidian);
  border: 1px solid var(--border-copper);
  color: var(--text-cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-quick);
}

.booking-form-panel input:focus,
.booking-form-panel select:focus {
  border-color: var(--copper-primary);
  box-shadow: 0 0 15px rgba(217, 160, 102, 0.1);
}

.form-success {
  text-align: center;
  padding: 2rem 0;
  animation: scaleUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.success-icon {
  width: 4rem;
  height: 4rem;
  color: var(--copper-primary);
  margin-bottom: 1.5rem;
}

.form-success h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--text-stone);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.c-detail {
  display: flex;
  gap: 1.25rem;
}

.c-detail svg {
  color: var(--copper-primary);
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
}

.c-detail h5 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  font-weight: 700;
}

.c-detail p {
  color: var(--text-stone);
  font-weight: 300;
}

.contact-hours-panel {
  padding: 4rem;
  border: 1px solid var(--border-copper);
}

.contact-hours-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-copper);
  padding-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.divider-dots {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
  margin: 0 1rem;
  position: relative;
  top: -4px;
}

.hours-note {
  font-size: 0.85rem;
  color: var(--copper-primary);
  margin-top: 2.5rem;
  font-style: italic;
  font-weight: 300;
}

/* --- FOOTER --- */
.main-footer {
  background-color: #030303;
  color: var(--text-stone);
  padding: 6rem 0 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.brand-text {
  max-width: 320px;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-top h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-cream);
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 300;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-stone);
}

.social-icons a:hover {
  color: var(--copper-primary);
  border-color: var(--copper-primary);
}

.social-icons svg {
  width: 18px;
  height: 18px;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-bottom: 2.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 300;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-meta {
    justify-content: center;
  }
  
  .hero-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .story-media-panel {
    justify-content: center;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-form-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-copper);
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .beans-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-info-panel {
    border-right: none;
    border-bottom: 1px solid var(--border-copper);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  .navbar {
    padding: 1.25rem 0;
  }
  
  .hero-meta {
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
  }
  
  .meta-divider {
    display: none;
  }
  
  .calc-form-panel,
  .calc-output-panel,
  .booking-info-panel,
  .booking-form-panel,
  .contact-hours-panel {
    padding: 3rem 1.5rem;
  }
  
  .section-container {
    padding: 6rem 1.5rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
  .section-container {
    padding: 4rem 1rem;
  }
}
