/* ============================================
   FIRST TURN — Café & Bar
   Plum + Amber · Confident Corporate
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum-50: #faf5f9;
  --plum-500: #6B2F5B;
  --plum-600: #5a2750;
  --plum-700: #4a1f42;
  --plum-800: #3d1a37;
  --plum-900: #33162e;
  --amber-300: #f9c95e;
  --amber-400: #f4a81a;
  --amber-500: #D4871C;
  --amber-600: #c27412;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-400: #a8a29e;
  --stone-600: #57534e;
  --stone-800: #1c1917;
  --stone-900: #0c0a09;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--stone-50);
  color: var(--stone-800);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: rgba(250, 250, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
  color: var(--plum-700);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}

.nav.scrolled .nav-links a {
  color: var(--stone-600);
}

.nav-links a:hover {
  color: var(--amber-300);
}

.nav.scrolled .nav-links a:hover {
  color: var(--plum-600);
}

.btn-nav {
  background: var(--amber-500) !important;
  color: white !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.btn-nav:hover {
  background: var(--amber-600) !important;
  color: white !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--stone-800);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      var(--plum-900) 0%,
      var(--plum-700) 25%,
      var(--plum-500) 50%,
      var(--amber-600) 75%,
      var(--amber-400) 100%
    );
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(107,47,91,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,135,28,0.4) 0%, transparent 60%),
    url('https://images.pexels.com/photos/15105621/pexels-photo-15105621.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(51,22,46,0.55) 0%,
    rgba(107,47,91,0.35) 50%,
    rgba(194,116,18,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 0 24px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-300);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: white;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.meta-dot {
  color: rgba(255,255,255,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: bounce 2s infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--amber-500);
  color: white;
}

.btn-primary:hover {
  background: var(--amber-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,135,28,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--stone-100);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--stone-900);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--plum-600);
}

.section-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--stone-600);
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-images {
  position: relative;
  min-height: 560px;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(107,47,91,0.18);
}

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

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 6px solid var(--stone-50);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

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

.about-img-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 96px;
  height: 96px;
  background: var(--plum-600);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: white;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(107,47,91,0.35);
}

.about-text .label {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--stone-600);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--stone-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 1.75rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--stone-600);
  letter-spacing: 0.02em;
}

/* ============================================
   MENU
   ============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(107,47,91,0.12);
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--plum-600);
  color: white;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.menu-card-body {
  padding: 28px;
}

.menu-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: 12px;
}

.menu-card-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--stone-600);
}

.menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--plum-700);
  border-radius: 20px;
  padding: 40px 48px;
}

.menu-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
}

.menu-cta .btn-primary {
  white-space: nowrap;
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(51,22,46,0.2) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--wide {
  grid-column: span 12;
}

.gallery-item--wide img {
  height: 400px;
}

.gallery-item:not(.gallery-item--wide) img {
  height: 280px;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-info .label {
  text-align: left;
}

.visit-info .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.visit-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--stone-600);
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--plum-500);
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-800);
  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  font-size: 1rem;
  color: var(--stone-600);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--plum-600);
  text-decoration: underline;
}

/* Form */
.visit-form-wrap {
  position: relative;
}

.visit-form-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.visit-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--stone-900);
  margin-bottom: 8px;
}

.visit-form-card > p {
  font-size: 0.9375rem;
  color: var(--stone-600);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--stone-800);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--stone-200);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--stone-800);
  background: var(--stone-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--plum-500);
  box-shadow: 0 0 0 3px rgba(107,47,91,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone-400);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.form-success svg {
  color: var(--plum-500);
}

.form-success p {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--stone-800);
}

/* ============================================
   MAP
   ============================================ */
.map-section {
  height: 400px;
  background: var(--stone-200);
}

.map-section iframe {
  filter: grayscale(30%) contrast(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--stone-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  color: white;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-link {
  color: var(--amber-400);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--amber-300);
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: white;
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--amber-400);
}

.footer-hours p {
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.footer-hours .hours-note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    gap: 48px;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .menu-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(250,250,249,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 32px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    color: var(--stone-800) !important;
    font-size: 1.0625rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .section {
    padding: 72px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-images {
    min-height: 400px;
    order: -1;
  }

  .about-img-accent {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -12px;
  }

  .about-img-badge {
    width: 72px;
    height: 72px;
    top: -12px;
    left: -12px;
  }

  .about-img-badge span {
    font-size: 0.5625rem;
  }

  .about-text .section-title,
  .about-text .label {
    text-align: center;
  }

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

  .about-stats {
    justify-content: center;
  }

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

  .menu-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .menu-cta {
    padding: 32px 24px;
    text-align: center;
    flex-direction: column;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .visit-info .section-title,
  .visit-info .label {
    text-align: center;
  }

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

  .contact-details {
    align-items: center;
  }

  .contact-item {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .visit-form-card {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--wide {
    grid-column: span 1;
  }
}
