:root {
  --coffee-900: #2c1810;
  --coffee-800: #4a3728;
  --coffee-600: #8d6e63;
  --coffee-400: #d7ccc8;
  --coffee-100: #f5f5f5;
  --coffee-50: #faf9f6;
  --accent: #d4a373;
  --font-serif: "Playfair Display", serif;
  --font-sans: "Outfit", sans-serif;
  --max-width: 1200px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--coffee-50);
  color: var(--coffee-900);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--coffee-800);
  color: var(--coffee-100);
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
ul {
  list-style: none;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-padding {
  padding: 6rem 0;
}
.text-center {
  text-align: center;
}
.italic {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.heading-xl {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.1;
  color: var(--coffee-50);
  margin-bottom: 2rem;
}
.heading-lg {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--coffee-900);
  line-height: 1.2;
}
.heading-md {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--coffee-800);
}
.sub-heading {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coffee-600);
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
}
.text-body {
  font-size: 1.125rem;
  color: rgba(74, 55, 40, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.signature {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--coffee-600);
  transform: rotate(-5deg);
  opacity: 0.8;
  margin-top: 1rem;
  display: inline-block;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--coffee-50);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}
.loader.hidden {
  opacity: 0;
  pointer-events: none;
}
.loader-content h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  animation: pulse 2s infinite;
}
.loader-content p {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee-600);
  margin-top: 0.5rem;
  text-align: center;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* About Section */
#about {
  background-color: var(--coffee-50);
  overflow: hidden;
}

.about-order-1 {
  order: 2;
}

.about-order-2 {
  order: 1;
}

@media (min-width: 768px) {
  .about-order-1 {
    order: 1;
  }

  .about-order-2 {
    order: 2;
  }
}

.italic-white {
  color: rgba(255, 255, 255, 0.9);
}

.philosophy-subheading {
  margin-bottom: 0;
}

/* Menu */
.menu-section-title {
  margin-bottom: 4rem;
}

.menu-download-link {
  display: inline-block;
  margin-top: 1rem;
}

/* Gallery */
.gallery-title {
  color: white;
}

/* Visit Section */
.visit-block {
  margin-bottom: 3rem;
}

.visit-icon {
  color: var(--coffee-800);
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
}

.visit-title {
  margin-bottom: 1.5rem;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.5rem 0;
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(44, 24, 16, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--coffee-100);
  font-weight: 500;
  letter-spacing: 0.05em;
  mix-blend-mode: difference;
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: none;
  gap: 3rem;
}
.nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}
.nav-link:hover {
  color: var(--accent);
}
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  mix-blend-mode: difference;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: var(--coffee-900);
  z-index: 51;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--coffee-50);
}
.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--coffee-50);
  cursor: pointer;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44, 24, 16, 0.4),
    rgba(44, 24, 16, 0.7)
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 1rem;
}
.hero-content p.est {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-content .tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: white;
  color: var(--coffee-900);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: var(--accent);
  color: white;
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.philosophy-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.philosophy-line {
  height: 1px;
  width: 3rem;
  background-color: rgba(74, 55, 40, 0.3);
}
.image-collage {
  position: relative;
  height: 500px;
}
.image-main-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 80%;
  border-radius: 0 80px 0 80px;
  overflow: hidden;
}
.image-secondary-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 60%;
  border: 8px solid var(--coffee-50);
  border-radius: 60px 0 60px 0;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-collage:hover .collage-img {
  transform: scale(1.05);
}
.menu-section {
  background-color: white;
}
.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.menu-column h3 {
  border-bottom: 1px solid var(--coffee-400);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.menu-item {
  margin-bottom: 2.5rem;
  cursor: pointer;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.menu-item h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--coffee-900);
  transition: color 0.3s;
}
.menu-item:hover h4 {
  color: var(--accent);
}
.menu-item .price {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--coffee-600);
}
.menu-item p {
  font-size: 0.875rem;
  font-weight: 300;
  color: #9ca3af;
}
.menu-download-link {
  display: inline-block;
  border-bottom: 1px solid var(--coffee-900);
  padding-bottom: 0.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coffee-900);
  margin-top: 2rem;
}
.gallery-section {
  background-color: var(--coffee-900);
  color: var(--coffee-50);
}
.gallery-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.gallery-header h2 {
  color: white;
}
.gallery-header p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-top: 1.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  height: auto;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 300px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.9;
}
.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.gallery-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.gallery-item:hover .gallery-tag {
  opacity: 1;
}
.visit-section {
  background-color: var(--coffee-100);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border-top: 1px solid rgba(74, 55, 40, 0.1);
  padding-top: 3rem;
  text-align: center;
}
.visit-col h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--coffee-900);
  margin-bottom: 1rem;
  font-style: italic;
}
.visit-col p {
  font-weight: 300;
  color: var(--coffee-600);
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.social-links a {
  color: var(--coffee-400);
}
.social-links a:hover {
  color: var(--coffee-900);
}
.footer-copy {
  margin-top: 5rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
}

/* Lightweight Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .heading-xl {
    font-size: 4.5rem;
  }
  .heading-lg {
    font-size: 3.75rem;
  }
  .nav-links {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
  .menu-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .gallery-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    height: 616px;
  }
  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
  }
  .visit-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  .social-links {
    justify-content: flex-start;
  }
}
@media (min-width: 1024px) {
  .heading-xl {
    font-size: 6rem;
  }
}
