/* ============================================
   Aroma de Cafe — Styles
   Palette: Plum (#4A1942) + Amber (#D4A04A)
   Fonts: Cormorant Garamond + Inter
   ============================================ */

/* 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, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1a0a17;
  background-color: #fdfbf8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Utility */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A04A;
  margin-bottom: 1rem;
}

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

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #4A1942;
  margin-bottom: 1.5rem;
}

.section-title--light {
  color: #f5e6d3;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 25, 66, 0.06);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 30px rgba(74, 25, 66, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #4A1942;
  letter-spacing: 0.02em;
}

.nav-logo-icon {
  color: #D4A04A;
}

.nav-logo-text {
  transition: opacity 0.2s;
}

.nav-logo:hover .nav-logo-text {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4A1942;
  position: relative;
  transition: opacity 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #D4A04A;
  transition: width 0.3s ease;
}

.nav-link:hover {
  opacity: 0.7;
}

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

.nav-link--cta {
  color: #D4A04A;
  border: 1px solid rgba(212, 160, 74, 0.4);
  padding: 0.5rem 1.2rem;
  transition: background 0.2s, color 0.2s;
}

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

.nav-link--cta:hover {
  background: #D4A04A;
  color: #fff;
  opacity: 1;
}

/* Mobile menu button */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}

.nav-menu-line {
  display: block;
  width: 100%;
  height: 1px;
  background: #4A1942;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-menu-btn.active .nav-menu-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

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

.nav-menu-btn.active .nav-menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(253, 251, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: #4A1942;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.mobile-menu-link:hover {
  color: #D4A04A;
}

.mobile-menu-link--cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A04A;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(212, 160, 74, 0.4);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  background: #fdfbf8;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 72px);
}

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

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #D4A04A;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  color: #4A1942;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-headline--accent {
  font-style: italic;
  color: #D4A04A;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: #5a3350;
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background: #4A1942;
  border-color: #4A1942;
  color: #f5e6d3;
}

.btn--primary:hover {
  background: #2d0f28;
  border-color: #2d0f28;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(74, 25, 66, 0.25);
  color: #4A1942;
}

.btn--ghost:hover {
  border-color: #4A1942;
  background: rgba(74, 25, 66, 0.04);
}

.btn--large {
  padding: 1.2rem 2.8rem;
  font-size: 0.8rem;
}

/* Hero image stack */
.hero-visual {
  position: relative;
  height: 680px;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-img {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 25, 66, 0.12);
}

.hero-img--main {
  top: 0;
  right: 0;
  width: 520px;
  height: 680px;
}

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

.hero-img--accent {
  bottom: 120px;
  left: -40px;
  width: 320px;
  height: 240px;
  z-index: 2;
  border: 4px solid #fdfbf8;
}

.hero-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--detail {
  bottom: 0;
  right: 40px;
  width: 280px;
  height: 200px;
  z-index: 2;
  border: 4px solid #fdfbf8;
}

.hero-img--detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero divider */
.hero-divider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-divider::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(74, 25, 66, 0.12), transparent);
}

/* Hero meta */
.hero-meta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-meta-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A04A;
}

.hero-meta-value,
.hero-meta-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: #4A1942;
}

.hero-meta-link {
  border-bottom: 1px solid rgba(212, 160, 74, 0.3);
  transition: border-color 0.2s;
}

.hero-meta-link:hover {
  border-color: #D4A04A;
}

.hero-meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(74, 25, 66, 0.1);
  flex-shrink: 0;
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 8rem 0;
  background: #fdfbf8;
}

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

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

.about-image-wrap img {
  width: 100%;
  height: 750px;
  object-fit: cover;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 160, 74, 0.3);
  z-index: -1;
}

.about-content {
  padding: 1rem 0;
}

.about-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #5a3350;
  margin-bottom: 1.5rem;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.about-signature-line {
  width: 48px;
  height: 1px;
  background: #D4A04A;
}

.about-signature-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: #4A1942;
  letter-spacing: 0.02em;
}

/* ============================================
   Menu
   ============================================ */
.menu {
  padding: 8rem 0;
  background: #4A1942;
  position: relative;
}

.menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 160, 74, 0.3), transparent);
}

.menu-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}

.menu-intro {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 230, 211, 0.7);
  margin-top: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.menu-category {
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 160, 74, 0.15);
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.menu-category-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.85rem;
  color: #D4A04A;
  letter-spacing: 0.05em;
}

.menu-category-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #f5e6d3;
  letter-spacing: 0.01em;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #f5e6d3;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.5);
  line-height: 1.5;
  text-align: right;
  flex: 1;
}

.menu-note {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.4);
  margin-top: 4rem;
  letter-spacing: 0.05em;
}

/* ============================================
   Bakery
   ============================================ */
.bakery {
  padding: 8rem 0;
  background: #fdfbf8;
}

.bakery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bakery-content {
  order: 1;
}

.bakery-text {
  font-size: 1rem;
  line-height: 1.9;
  color: #5a3350;
  margin-bottom: 1.5rem;
}

.bakery-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.bakery-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bakery-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 74, 0.3);
  border-radius: 50%;
  color: #D4A04A;
  flex-shrink: 0;
}

.bakery-feature-text {
  font-size: 0.9rem;
  color: #4A1942;
  letter-spacing: 0.02em;
}

.bakery-visual {
  order: 2;
  position: relative;
  height: 700px;
}

.bakery-image-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 560px;
  height: 700px;
}

.bakery-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bakery-image-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 300px;
  z-index: 2;
  border: 4px solid #fdfbf8;
  box-shadow: 0 20px 60px rgba(74, 25, 66, 0.1);
}

.bakery-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: 8rem 0;
  background: #f5efe8;
}

.testimonials-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-quote-wrap {
  position: relative;
  padding: 2rem 0;
}

.testimonials-quote-mark {
  color: #D4A04A;
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.testimonials-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: #4A1942;
  margin-bottom: 2rem;
}

.testimonials-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #D4A04A;
}

/* ============================================
   Visit
   ============================================ */
.visit {
  padding: 8rem 0;
  background: #fdfbf8;
}

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

.visit-info {
  padding: 1rem 0;
}

.visit-details {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visit-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(74, 25, 66, 0.08);
}

.visit-detail:first-child {
  border-top: 1px solid rgba(74, 25, 66, 0.08);
}

.visit-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D4A04A;
  padding-top: 0.15em;
}

.visit-detail-value {
  font-size: 1rem;
  line-height: 1.7;
  color: #4A1942;
}

.visit-link {
  color: #4A1942;
  border-bottom: 1px solid rgba(212, 160, 74, 0.3);
  transition: border-color 0.2s;
}

.visit-link:hover {
  border-color: #D4A04A;
}

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

.visit-map-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.visit-map-wrapper::before {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 160, 74, 0.2);
  z-index: 1;
  pointer-events: none;
}

.visit-map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: saturate(0.6) contrast(1.05);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: 8rem 0;
  background: #4A1942;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 160, 74, 0.3), transparent);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: #f5e6d3;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 230, 211, 0.65);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 4rem 0 2rem;
  background: #2d0f28;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 160, 74, 0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #f5e6d3;
  letter-spacing: 0.02em;
}

.footer-logo-icon {
  color: #D4A04A;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 230, 211, 0.4);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.5);
  transition: color 0.2s;
}

.footer-link:hover {
  color: #D4A04A;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(245, 230, 211, 0.3);
  letter-spacing: 0.05em;
}

.footer-address {
  font-size: 0.75rem;
  color: rgba(245, 230, 211, 0.3);
  letter-spacing: 0.05em;
}

/* ============================================
   Scroll Animations (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .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-grid {
    gap: 3rem;
  }

  .hero-visual {
    height: 560px;
  }

  .hero-img--main {
    width: 400px;
    height: 560px;
  }

  .hero-img--accent {
    width: 260px;
    height: 200px;
  }

  .hero-img--detail {
    width: 240px;
    height: 170px;
  }

  .about-grid,
  .bakery-grid,
  .visit-grid {
    gap: 3rem;
  }

  .menu-grid {
    gap: 3rem;
  }
}

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

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

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    display: none;
  }

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

  .bakery-content {
    order: 2;
  }

  .bakery-visual {
    order: 1;
    height: 450px;
    margin-bottom: 2rem;
  }

  .bakery-image-main {
    width: 100%;
    height: 450px;
  }

  .bakery-image-small {
    width: 280px;
    height: 200px;
  }

  .about-image-wrap img {
    height: 500px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-inner {
    padding: 0 1.25rem;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .hero-meta-divider {
    display: none;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .about,
  .menu,
  .bakery,
  .testimonials,
  .visit,
  .cta {
    padding: 5rem 0;
  }

  .about-image-wrap::before {
    display: none;
  }

  .visit-detail {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .visit-map {
    height: 350px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
