*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --olive: #706d54;
  --tan: #a08963;
  --sand: #c9b194;
  --cream: #dbdbdb;
  --light: #f0ede8;
  --dark: #2e2c20;
  --white: #faf9f6;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(160, 137, 99, 0.12);
  padding: 16px 64px;
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.3px;
  transition: color 0.4s;
  text-decoration: none;
}
nav.scrolled .nav-logo {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.75);
  text-decoration: none;
  transition: all 0.3s;
}
nav.scrolled .nav-links a {
  color: var(--olive);
  opacity: 0.75;
}
.nav-links a:hover {
  color: var(--white);
  opacity: 1;
}
nav.scrolled .nav-links a:hover {
  color: var(--tan);
  opacity: 1;
}

.nav-login {
  background: transparent;
  border: 1px solid rgba(250, 249, 246, 0.5);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-login:hover {
  background: rgba(250, 249, 246, 0.15) !important;
}
nav.scrolled .nav-login {
  border-color: var(--tan);
  color: var(--olive) !important;
}
nav.scrolled .nav-login:hover {
  background: var(--olive) !important;
  color: var(--white) !important;
  border-color: var(--olive);
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 300;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
nav.scrolled .nav-toggle span {
  background: var(--olive);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 44, 32, 0.45);
  z-index: 240;
}
.nav-overlay.open {
  display: block;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46, 44, 32, 0.55) 0%,
    rgba(46, 44, 32, 0.3) 40%,
    rgba(46, 44, 32, 0.65) 100%
  );
  z-index: 1;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(160, 137, 99, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(112, 109, 84, 0.15) 0%,
      transparent 50%
    );
  z-index: 1;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 60% 40%,
    #5c4a32 0%,
    #3d3020 40%,
    #2a2218 70%,
    #1e1a12 100%
  );
  z-index: 0;
}
.hero-canvas::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 80px;
  background: linear-gradient(
    to top,
    transparent,
    rgba(201, 177, 148, 0.25),
    transparent
  );
  left: 46%;
  top: 25%;
  border-radius: 4px;
  animation: steam 3s ease-in-out infinite;
}
.hero-canvas::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  background: linear-gradient(
    to top,
    transparent,
    rgba(201, 177, 148, 0.2),
    transparent
  );
  left: 50%;
  top: 28%;
  border-radius: 4px;
  animation: steam 3s ease-in-out 0.8s infinite;
}
@keyframes steam {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50px) scaleX(1.8);
    opacity: 0;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: heroIn 1.2s ease both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--sand);
  opacity: 0.6;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.hero-title em {
  font-style: italic;
  color: var(--sand);
}
.hero-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(201, 177, 148, 0.8);
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: var(--tan);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 1px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--olive);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201, 177, 148, 0.5);
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201, 177, 148, 0.5), transparent);
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--olive);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  overflow-x: auto;
  scrollbar-width: none;
}
.intro-strip::-webkit-scrollbar {
  display: none;
}
.intro-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.75);
  white-space: nowrap;
}
.intro-strip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.about-visual {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}
.about-visual-inner {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 40% 60%,
    #6b4f2e 0%,
    #3d2e1a 50%,
    #1e1810 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.coffee-art {
  position: relative;
  width: 160px;
  height: 160px;
}
.coffee-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(201, 177, 148, 0.2);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coffee-circle img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(201, 177, 148, 0.2);
  position: absolute;
}
.coffee-circle::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, #7a5535 0%, #3d2a14 60%, #2a1e0e 100%);
  border: 1px solid rgba(201, 177, 148, 0.15);
}
.coffee-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 177, 148, 0.1);
}
.ring1 {
  width: 200px;
  height: 200px;
  top: -20px;
  left: -20px;
}
.ring2 {
  width: 240px;
  height: 240px;
  top: -40px;
  left: -40px;
}
.ring3 {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -60px;
}
.about-year {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 400;
  font-style: italic;
  color: var(--tan);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.about-content {
  background: var(--light);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--tan);
}
.section-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.section-heading em {
  font-style: italic;
  color: var(--tan);
}
.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--olive);
  opacity: 0.85;
  margin-bottom: 36px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 5px;
  border-left: 5px solid var(--tan);
}
.value-icon {
  font-size: 18px;
  color: var(--olive);
  flex-shrink: 0;
  margin-top: 1px;
}
.value-text h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--olive);
  letter-spacing: 0.3px;
  margin-bottom: 3px;
}
.value-text p {
  font-size: 12px;
  color: var(--dark);
  opacity: 0.7;
  line-height: 1.6;
}

/* ── MENU SECTION ── */
.menu-section {
  padding: 100px 64px;
  background: var(--white);
}
.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}
.menu-see-all {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(160, 137, 99, 0.3);
  transition:
    gap 0.3s,
    border-color 0.3s;
}
.menu-see-all:hover {
  gap: 14px;
  border-color: var(--tan);
}
.menu-see-all::after {
  content: "→";
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(160, 137, 99, 0.12);
}
.menu-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}
.menu-card:hover {
  transform: translateY(-4px);
  z-index: 2;
}
.menu-card-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drink-espresso .menu-card-visual {
  background: linear-gradient(145deg, #2c1a0e, #4a2c12);
}
.drink-sanger .menu-card-visual {
  background: linear-gradient(145deg, #634736, #8e653e);
}
.drink-latte .menu-card-visual {
  background: linear-gradient(145deg, #6b3f1e, #a06030);
}
.drink-thaitea .menu-card-visual {
  background: linear-gradient(145deg, #bd3000, #ff8b4c);
}
.drink-matcha .menu-card-visual {
  background: linear-gradient(145deg, #3d4a28, #637040);
}
.drink-choco .menu-card-visual {
  background: linear-gradient(145deg, #3a1e0a, #6b3414);
}

.menu-cup {
  width: 64px;
  height: 80px;
  position: relative;
  transition: transform 0.4s;
}
.menu-card:hover .menu-cup {
  transform: scale(1.08) translateY(-4px);
}
.cup-body {
  width: 64px;
  height: 56px;
  border-radius: 4px 4px 12px 12px;
  border: 2px solid rgba(201, 177, 148, 0.4);
  background: rgba(201, 177, 148, 0.08);
  position: relative;
  overflow: hidden;
}
.cup-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 10px 10px;
}
.drink-espresso .cup-liquid {
  height: 70%;
  background: rgba(80, 40, 10, 0.8);
}
.drink-sanger .cup-liquid {
  background: rgba(142, 101, 62, 0.8);
}
.drink-latte .cup-liquid {
  height: 80%;
  background: rgba(160, 100, 50, 0.7);
}
.drink-thaitea .cup-liquid {
  height: 80%;
  background: #ff6700;
}
.drink-matcha .cup-liquid {
  height: 75%;
  background: rgba(80, 110, 40, 0.7);
}
.drink-choco .cup-liquid {
  height: 80%;
  background: rgba(100, 50, 20, 0.75);
}
.cup-handle {
  position: absolute;
  right: -14px;
  top: 12px;
  width: 14px;
  height: 24px;
  border: 2px solid rgba(201, 177, 148, 0.35);
  border-left: none;
  border-radius: 0 10px 10px 0;
}
.cup-saucer {
  width: 72px;
  height: 8px;
  background: rgba(201, 177, 148, 0.15);
  border-radius: 50%;
  margin-left: -4px;
  border: 1px solid rgba(201, 177, 148, 0.2);
}
.cup-steam {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}
.steam-line {
  width: 2px;
  height: 20px;
  background: linear-gradient(to top, rgba(201, 177, 148, 0.4), transparent);
  border-radius: 2px;
  animation: steamRise 2.5s ease-in-out infinite;
}
.steam-line:nth-child(2) {
  animation-delay: 0.4s;
  height: 14px;
}
.steam-line:nth-child(3) {
  animation-delay: 0.8s;
}
@keyframes steamRise {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-18px) scaleX(2);
    opacity: 0;
  }
}
.ice-cube {
  width: 10px;
  height: 10px;
  background: rgba(174, 219, 242, 0.6);
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.8);
  animation: iceDrop 2.5s ease-in-out infinite;
  display: inline-block;
}
.ice-cube:nth-child(2) {
  animation-delay: 0.5s;
  width: 7px;
  height: 7px;
}
.ice-cube:nth-child(3) {
  animation-delay: 1.1s;
  width: 9px;
  height: 9px;
}
@keyframes iceDrop {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(15px) rotate(45deg);
    opacity: 0;
  }
}
.menu-card-info {
  padding: 24px 24px 28px;
}
.menu-card-category {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 8px;
}
.menu-card-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}
.menu-card-desc {
  font-size: 12px;
  color: var(--olive);
  opacity: 0.65;
  line-height: 1.6;
  margin-bottom: 16px;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-price {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--tan);
}
.menu-card-tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--light);
  color: var(--olive);
  padding: 4px 10px;
  border-radius: 1px;
}

/* ── LOCATION ── */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--olive);
}
.location-info {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.7;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.location-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sand);
  opacity: 0.5;
}
.location-heading {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}
.location-heading em {
  font-style: italic;
  color: var(--sand);
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.location-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.8;
  line-height: 1.6;
}
.location-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 177, 148, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.btn-direction {
  background: var(--tan);
  color: var(--cream);
  padding: 14px 36px;
  border: none;
  border-radius: 5px;
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
  display: inline-block;
}
.btn-direction:hover {
  background: var(--cream);
  color: var(--olive);
  transform: translateY(-2px);
}
.location-map {
  background:
    linear-gradient(rgba(46, 44, 32, 0.3), rgba(46, 44, 32, 0.3)),
    linear-gradient(135deg, #4a3c28 0%, #2e2418 50%, #1e1810 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 177, 148, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 177, 148, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pin-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--tan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  box-shadow:
    0 0 0 12px rgba(160, 137, 99, 0.15),
    0 0 0 24px rgba(160, 137, 99, 0.08);
  animation: pulse 3s ease-in-out infinite;
}
.pin-circle img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 12px rgba(160, 137, 99, 0.15),
      0 0 0 24px rgba(160, 137, 99, 0.08);
  }
  50% {
    box-shadow:
      0 0 0 18px rgba(160, 137, 99, 0.1),
      0 0 0 36px rgba(160, 137, 99, 0.04);
  }
}
.pin-label {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-style: italic;
  color: var(--sand);
  background: #2e2c20cc;
  padding: 6px 16px;
  border-radius: 5px;
  backdrop-filter: blur(4px);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 64px 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(160, 137, 99, 0.12);
  margin-bottom: 32px;
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--sand);
  opacity: 0.6;
  line-height: 1.6;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s;
  letter-spacing: 0.3px;
}
.footer-links a:hover {
  opacity: 0.9;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: var(--cream);
  opacity: 0.3;
  letter-spacing: 0.5px;
}
.footer-socials {
  display: flex;
  gap: 20px;
}
.footer-socials a {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.3;
  text-decoration: none;
  transition: opacity 0.2s;
}
.footer-socials a:hover {
  opacity: 0.8;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal.up {
  opacity: 1;
  transform: translateY(0);
}
.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal-l.up {
  opacity: 1;
  transform: translateX(0);
}
.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
.reveal-r.up {
  opacity: 1;
  transform: translateX(0);
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav {
    padding: 18px 32px;
  }
  nav.scrolled {
    padding: 14px 32px;
  }

  .nav-links {
    gap: 24px;
  }

  .intro-strip {
    padding: 24px 32px;
    gap: 32px;
  }

  .about {
    grid-template-columns: 1fr 1fr;
  }
  .about-content {
    padding: 60px 48px;
  }
  .about-year {
    font-size: 56px;
  }

  .menu-section {
    padding: 80px 32px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-header {
    margin-bottom: 40px;
  }

  .location {
    grid-template-columns: 1fr 1fr;
  }
  .location-info {
    padding: 60px 48px;
  }
  .location-heading {
    font-size: 30px;
  }

  footer {
    padding: 48px 32px 28px;
  }
  .footer-top {
    gap: 40px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* — NAV — */
  nav {
    padding: 14px 20px;
  }
  nav.scrolled {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: flex;
  }

  /* Panel slide dari kanan */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70vw;
    max-width: 260px;
    background: var(--white);
    padding: 0 32px;
    gap: 0;
    z-index: 250;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(160, 137, 99, 0.15);
    box-shadow: -8px 0 32px rgba(46, 44, 32, 0.1);
    overflow: hidden;
  }
  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--olive);
    opacity: 0.65;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(160, 137, 99, 0.08);
  }
  .nav-links a:last-of-type {
    border-bottom: none;
  }
  .nav-links a.active {
    opacity: 1;
    color: var(--tan);
  }

  .nav-login {
    margin-top: 16px !important;
    padding: 11px 20px !important;
    width: 100% !important;
    text-align: center;
    border-bottom: none !important;
    color: var(--olive) !important;
    border-color: var(--tan) !important;
  }

  /* — HERO — */
  .hero {
    min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(52px, 14vw, 80px);
    letter-spacing: -1px;
  }
  .hero-tagline {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .btn-hero-primary {
    padding: 14px 32px;
  }
  .hero-scroll {
    display: none;
  }

  /* — INTRO STRIP — */
  .intro-strip {
    padding: 20px 20px;
    gap: 20px;
    justify-content: flex-start;
  }
  .intro-strip-item {
    font-size: 11px;
    gap: 10px;
  }
  .intro-strip-dot {
    display: none;
  }

  /* — ABOUT — */
  .about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    min-height: 260px;
  }
  .about-year {
    font-size: 48px;
    bottom: 20px;
    right: 20px;
  }
  .about-content {
    padding: 48px 24px;
  }
  .section-heading {
    font-size: clamp(28px, 7vw, 38px);
  }
  .section-body {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .value-item {
    padding: 14px 16px;
  }

  /* — MENU SECTION — */
  .menu-section {
    padding: 60px 20px;
  }
  .menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-card-visual {
    height: 160px;
  }
  .menu-card-info {
    padding: 16px 16px 20px;
  }
  .menu-card-name {
    font-size: 17px;
  }
  .menu-card-desc {
    font-size: 11px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .menu-card-price {
    font-size: 18px;
  }

  /* — LOCATION — */
  .location {
    grid-template-columns: 1fr;
  }
  .location-info {
    padding: 48px 24px;
  }
  .location-heading {
    font-size: 28px;
  }
  .location-map {
    min-height: 280px;
  }
  .pin-circle {
    width: 80px;
    height: 80px;
  }
  .pin-circle img {
    width: 80px;
    height: 80px;
  }

  /* — FOOTER — */
  footer {
    padding: 40px 20px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    margin-bottom: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-socials {
    gap: 16px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 400px)
══════════════════════════════════════════ */
@media (max-width: 400px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-card-visual {
    height: 180px;
  }
  .intro-strip-item:nth-child(n + 4) {
    display: none;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* — NAV — */
  nav {
    padding: 18px 32px;
  }
  nav.scrolled {
    padding: 14px 32px;
  }
  .nav-links {
    gap: 24px;
  }

  /* — HERO — */
  .hero-title {
    font-size: clamp(52px, 8vw, 80px);
  }

  /* — INTRO STRIP — */
  .intro-strip {
    padding: 24px 32px;
    gap: 32px;
    flex-wrap: wrap;
  }

  /* — ABOUT — */
  .about {
    grid-template-columns: 1fr 1fr;
  }
  .about-content {
    padding: 60px 40px;
  }

  /* — MENU — */
  .menu-section {
    padding: 80px 32px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* — LOCATION — */
  .location-info {
    padding: 60px 40px;
  }

  /* — FOOTER — */
  footer {
    padding: 48px 32px 28px;
  }
  .footer-top {
    gap: 40px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* — NAV — */
  nav {
    padding: 14px 20px;
    z-index: 200;
  }
  nav.scrolled {
    padding: 12px 20px;
  }

  /* Sembunyikan nav-links desktop, ganti hamburger */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70vw;
    max-width: 260px;
    background: var(--white);
    padding: 0 32px;
    gap: 0;
    z-index: 250;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(160, 137, 99, 0.15);
    box-shadow: -8px 0 32px rgba(46, 44, 32, 0.1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--olive);
    opacity: 0.65;
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(160, 137, 99, 0.08);
  }
  .nav-links a:last-of-type {
    border-bottom: none;
  }
  .nav-links .nav-login {
    margin-top: 16px;
    padding: 11px 20px;
    width: 100%;
    text-align: center;
    border-color: var(--tan);
    color: var(--olive);
    border-bottom: none;
  }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 300;
  }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(46, 44, 32, 0.45);
    z-index: 240;
  }
  .nav-overlay.open {
    display: block;
  }

  /* Logo putih hanya di hero, scrolled jadi gelap */
  .nav-logo {
    font-size: 18px;
  }

  /* — HERO — */
  .hero {
    min-height: 100svh;
  }
  .hero-title {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: -1.5px;
  }
  .hero-tagline {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
  }
  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 24px;
  }
  .btn-hero-primary {
    padding: 13px 32px;
    font-size: 10px;
  }

  /* — INTRO STRIP — */
  .intro-strip {
    padding: 20px 20px;
    gap: 16px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  .intro-strip::-webkit-scrollbar {
    display: none;
  }
  .intro-strip-item {
    font-size: 11px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .intro-strip-dot {
    flex-shrink: 0;
  }

  /* — ABOUT — */
  .about {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 280px;
  }
  .about-visual-inner {
    position: relative;
    height: 100%;
  }
  .about-year {
    font-size: 48px;
    bottom: 20px;
    right: 20px;
  }
  .about-content {
    padding: 48px 20px;
  }
  .section-heading {
    font-size: clamp(26px, 7vw, 36px);
  }
  .about-values {
    gap: 12px;
  }
  .value-item {
    padding: 14px 16px;
  }

  /* — MENU — */
  .menu-section {
    padding: 60px 20px;
  }
  .menu-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-card-visual {
    height: 160px;
  }
  .menu-card-info {
    padding: 18px 16px 20px;
  }
  .menu-card-name {
    font-size: 17px;
  }
  .menu-card-desc {
    font-size: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .menu-card-price {
    font-size: 18px;
  }

  /* — LOCATION — */
  .location {
    grid-template-columns: 1fr;
  }
  .location-info {
    padding: 48px 20px;
  }
  .location-heading {
    font-size: 28px;
  }
  .location-map {
    height: 260px;
  }

  /* — FOOTER — */
  footer {
    padding: 40px 20px 28px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
    margin-bottom: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-socials {
    gap: 16px;
  }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
══════════════════════════════════════════ */
@media (max-width: 400px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .menu-card-visual {
    height: 180px;
  }
  .hero-title {
    font-size: clamp(42px, 16vw, 60px);
  }
  .intro-strip {
    gap: 12px;
  }
}

/* Mobile nav toggle — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  border-radius: 2px;
}
nav.scrolled .nav-toggle span {
  background: var(--olive);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
