/* ============================================
   AROMA NUSANTARA — style.css
   Premium Cafe Landing Page
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --espresso: #1C1208;
  --roast:    #3B2108;
  --mocha:    #6B3F1F;
  --caramel:  #C47C2B;
  --latte:    #D4A96A;
  --cream:    #F5EDD8;
  --oat:      #EDE0C4;
  --milk:     #FAF6EF;
  --white:    #FFFFFF;

  --shadow-sm:  0 2px 12px rgba(28,18,8,.08);
  --shadow-md:  0 8px 32px rgba(28,18,8,.12);
  --shadow-lg:  0 20px 60px rgba(28,18,8,.18);
  --shadow-xl:  0 32px 80px rgba(28,18,8,.22);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--milk);
  color: var(--espresso);
  overflow-x: hidden;
  line-height: 1.65;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

ul { list-style: none; }

/* ---------- Typography ---------- */
.font-display { font-family: 'Playfair Display', serif; }

h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---------- Utility ---------- */
.section-pad { padding: 100px 0; }

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 14px;
  display: block;
}
.section-eyebrow.light { color: var(--latte); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--espresso);
  line-height: 1.2;
}
.section-title.light { color: var(--cream); }
.section-title em { color: var(--caramel); font-style: italic; }

.section-body {
  font-size: 1rem;
  color: var(--mocha);
  line-height: 1.75;
}

/* ============================================
   LOADER
   ============================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--espresso);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content { text-align: center; }

.loader-bean {
  width: 52px;
  height: 52px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: var(--caramel);
  margin: 0 auto 20px;
  animation: brewSpin 1.2s ease-in-out infinite;
  position: relative;
}
.loader-bean::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--espresso);
}

.loader-text {
  color: var(--latte);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes brewSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50%       { transform: rotate(180deg) scale(1.1); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--caramel);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(196,124,43,.45);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--mocha); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 900;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(28,18,8,.1);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.navbar-logo:hover { opacity: 0.85; }

.logo-icon { font-size: 1.5rem; }

.logo-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.1;
  transition: color 0.3s;
}
.navbar:not(.scrolled) .logo-main { color: var(--white); }

.logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel);
  line-height: 1;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--espresso);
  position: relative;
  transition: color 0.25s;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--caramel);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--caramel); }
.nav-link:hover::after { width: 100%; }

.btn-reservasi {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--caramel);
  color: var(--white);
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 16px rgba(196,124,43,.35);
}
.btn-reservasi:hover {
  background: var(--mocha);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,63,31,.4);
}

/* Hamburger */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.navbar:not(.scrolled) .hamburger-btn span { background: var(--white); }
.hamburger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  background: var(--milk);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { max-height: 500px; }

.mobile-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.mobile-link:hover { background: var(--oat); color: var(--caramel); }

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hero-img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  transform: translateY(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,18,8,.55) 0%,
    rgba(28,18,8,.35) 40%,
    rgba(28,18,8,.70) 100%
  );
}

/* Grain overlay */
.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 20px;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 700;
}
.hero-title em {
  color: var(--latte);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 40px;
}

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

.btn-primary {
  padding: 16px 36px;
  background: var(--caramel);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(196,124,43,.45);
}
.btn-primary:hover {
  background: var(--mocha);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(107,63,31,.5);
}

.btn-outline-hero {
  padding: 15px 34px;
  border: 2px solid rgba(255,255,255,.65);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  backdrop-filter: blur(4px);
}
.btn-outline-hero:hover {
  border-color: var(--latte);
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

/* Scroll hint */
.scroll-hint {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--latte);
  animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   ABOUT
   ============================================ */
.about-images {
  position: relative;
  height: 540px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 88%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 48%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--cream);
}
.about-deco {
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--latte);
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 4px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--oat);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--oat);
}
.stat-item {
  background: var(--cream);
  padding: 24px 20px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--caramel);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--caramel);
  vertical-align: top;
  line-height: 1.1;
}
.stat-item p {
  font-size: 0.78rem;
  color: var(--mocha);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   MENU SECTION
   ============================================ */
/* Filter Tabs */
.menu-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--oat);
  background: transparent;
  color: var(--mocha);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.menu-tab:hover {
  border-color: var(--caramel);
  color: var(--caramel);
}
.menu-tab.active {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196,124,43,.35);
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Menu Card */
.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.4s;
  cursor: default;
}
.menu-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.menu-card.hidden-card {
  display: none;
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img img {
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.08);
}

.menu-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--caramel);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.menu-badge.new { background: var(--roast); }

.menu-card-body {
  padding: 20px 22px 24px;
}
.menu-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.menu-card-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--espresso);
  line-height: 1.3;
}
.menu-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--caramel);
  white-space: nowrap;
}
.menu-card-body p {
  font-size: 0.875rem;
  color: var(--mocha);
  line-height: 1.65;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,18,8,.55);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-style: italic;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(28,18,8,.95);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(8px);
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
  position: relative;
}
.lightbox-content img {
  max-width: 88vw;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.lightbox-caption {
  color: var(--latte);
  margin-top: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-style: italic;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--cream);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
  line-height: 1;
}
.lightbox-arrow:hover { background: rgba(255,255,255,.25); }
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

/* ============================================
   TESTIMONI
   ============================================ */
.testi-slider-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
}
.testi-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testi-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.testi-stars {
  color: var(--caramel);
  font-size: 1.3rem;
  letter-spacing: 4px;
  animation: starPop 0.6s ease forwards;
}
@keyframes starPop {
  from { transform: scale(0.5); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.testi-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--espresso);
  line-height: 1.7;
  flex: 1;
}
.testi-quote::before { content: '"'; }
.testi-quote::after  { content: '"'; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-author img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--oat);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--espresso);
  margin-bottom: 3px;
}
.testi-author span {
  font-size: 0.8rem;
  color: var(--mocha);
}

/* Dots */
.testi-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oat);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.testi-dot.active {
  background: var(--caramel);
  transform: scale(1.3);
}

/* Arrows */
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 28px));
  background: var(--white);
  border: 2px solid var(--oat);
  color: var(--mocha);
  font-size: 1.8rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: var(--shadow-sm);
  line-height: 1;
}
.testi-arrow:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.testi-arrow.prev { left: -24px; }
.testi-arrow.next { right: -24px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  height: 100%;
  object-position: center 60%;
  transition: transform 0.3s;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,18,8,.82) 0%, rgba(59,33,8,.65) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 640px;
}
.cta-tag {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 16px;
  display: block;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-desc {
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.7;
}
.btn-cta {
  display: inline-block;
  padding: 16px 40px;
  background: var(--caramel);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(196,124,43,.5);
}
.btn-cta:hover {
  background: var(--mocha);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(107,63,31,.55);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-icon { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.contact-info-card strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 5px;
}
.contact-info-card p, .contact-info-card a {
  font-size: 0.875rem;
  color: var(--mocha);
  line-height: 1.6;
}
.contact-info-card a:hover { color: var(--caramel); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-embed iframe { display: block; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--espresso);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mocha);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--oat);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--milk);
  transition: border-color 0.25s, box-shadow 0.25s;
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 4px rgba(196,124,43,.12);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,63,31,.4); }

.btn-form-submit {
  width: 100%;
  padding: 15px;
  background: var(--espresso);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  margin-top: 8px;
}
.btn-form-submit:hover {
  background: var(--mocha);
  transform: translateY(-2px);
}
.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(196,124,43,.12);
  border: 1px solid var(--latte);
  border-radius: var(--radius-sm);
  color: var(--mocha);
  font-size: 0.9rem;
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--espresso);
  padding: 70px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-main { color: var(--cream) !important; }

.footer-socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}
.social-icon:hover {
  background: var(--caramel);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--latte);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--latte); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up,
.reveal-fade,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
  transition-delay: var(--delay, 0s);
}
.reveal-up    { transform: translateY(42px); }
.reveal-fade  { transform: translateY(20px); }
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }

.reveal-up.visible,
.reveal-fade.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Hero reveal — immediate on page load via class */
.hero-content .reveal-up {
  animation: heroReveal 0.85s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hidden utility */
.hidden { display: none !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-images { height: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .testi-arrow.prev { left: -12px; }
  .testi-arrow.next { right: -12px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }

  .about-images {
    height: 360px;
    margin-bottom: 24px;
  }
  .about-img-main { width: 85%; height: 80%; }
  .about-img-float { width: 55%; height: 44%; }

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

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item:last-child { display: none; }

  .testi-card { padding: 30px 28px; }
  .testi-arrow { display: none; }

  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 24px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-banner { height: 420px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline-hero { width: 100%; max-width: 280px; text-align: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item:last-child { display: block; }
  .stats-grid { grid-template-columns: 1fr; }
}
