/* ============================================
   قهوة السكون — Sukoon Coffee
   Main Stylesheet
   ============================================ */

/* --- CUSTOM PROPERTIES --- */
:root {
  --cream:       #F5EFE6;
  --cream-light: #FAF6F0;
  --sand:        #E8DCC8;
  --gold:        #C8A96E;
  --gold-dark:   #A8854A;
  --brown:       #6B4226;
  --brown-dark:  #3D2314;
  --espresso:    #1C0F07;
  --text:        #2A1A0E;
  --text-muted:  #7A6050;
  --border:      rgba(104, 66, 38, 0.15);

  --font-display: 'Amiri', serif;
  --font-body:    'Tajawal', sans-serif;

  --radius:  6px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 12px rgba(60,30,10,0.08);
  --shadow-md: 0 8px 40px rgba(60,30,10,0.12);
  --shadow-lg: 0 20px 60px rgba(60,30,10,0.18);

  --nav-h: 72px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream-light);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* --- UTILITIES --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.hidden { display: none !important; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { line-height: 1.3; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-ar {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--transition);
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(245,239,230,0.6);
  transition: color var(--transition);
}
.navbar.scrolled .logo-ar { color: var(--brown-dark); }
.navbar.scrolled .logo-sub { color: var(--gold-dark); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(245,239,230,0.9);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--brown-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform var(--transition), opacity var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--brown-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(168,133,74,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,239,230,0.6);
}
.btn-outline:hover {
  background: rgba(245,239,230,0.1);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-text {
  padding: 0;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.btn-text:hover { color: var(--brown); gap: 0.75rem; }
.btn-full { width: 100%; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,15,7,0.72) 0%,
    rgba(61,35,20,0.55) 50%,
    rgba(28,15,7,0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 750px;
  padding: 0 1.5rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.8s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 1s 1s ease forwards;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(245,239,230,0.8);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 2s ease forwards;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(245,239,230,0.6);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--brown-dark);
  padding: 1.25rem 2rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 2.5rem;
  opacity: 0;
}
.strip-item.visible { animation: fadeUp 0.6s ease forwards; }
.strip-icon { color: var(--gold); font-size: 0.6rem; }
.strip-item p {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(245,239,230,0.85);
}
.strip-divider { width: 1px; height: 30px; background: rgba(200,169,110,0.25); }

/* ============================================
   ABOUT TEASER
   ============================================ */
.about-teaser { padding: 7rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  opacity: 0;
}
.about-image-wrap.visible { animation: fadeUp 0.8s ease forwards; }
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--espresso);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge span { display: block; font-size: 0.75rem; font-weight: 500; }
.about-badge strong { display: block; font-size: 1.75rem; font-weight: 900; line-height: 1; }
.about-text { opacity: 0; }
.about-text.visible { animation: fadeUp 0.8s 0.2s ease forwards; }
.about-text p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.02rem; }

/* ============================================
   FEATURED MENU
   ============================================ */
.featured-menu {
  padding: 7rem 0;
  background: var(--cream);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.drink-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
}
.drink-card.visible { animation: fadeUp 0.7s ease forwards; }
.drink-card:nth-child(2).visible { animation-delay: 0.1s; }
.drink-card:nth-child(3).visible { animation-delay: 0.2s; }
.drink-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img-wrap { position: relative; height: 240px; overflow: hidden; }
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.drink-card:hover .card-img-wrap img { transform: scale(1.06); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,15,7,0.4), transparent 60%);
}
.card-body { padding: 1.5rem; }
.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.price {
  display: inline-block;
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1rem;
}
.section-cta { text-align: center; opacity: 0; }
.section-cta.visible { animation: fadeUp 0.7s ease forwards; }

/* ============================================
   ATMOSPHERE
   ============================================ */
.atmosphere {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.atm-image {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.atm-image.visible { animation: fadeUp 0.8s ease forwards; }
.atm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.atmosphere:hover .atm-image img { transform: scale(1.03); }
.atm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(28,15,7,0.35), transparent);
}
.atm-content {
  background: var(--brown-dark);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
}
.atm-content.visible { animation: fadeUp 0.8s 0.2s ease forwards; }
.atm-content .section-label { color: var(--gold); }
.atm-content .section-title { color: var(--cream); }
.atm-content p {
  color: rgba(245,239,230,0.75);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 7rem 0; background: var(--sand); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
  opacity: 0;
}
.testimonial-card.visible { animation: fadeUp 0.7s ease forwards; }
.testimonial-card:nth-child(2).visible { animation-delay: 0.1s; }
.testimonial-card:nth-child(3).visible { animation-delay: 0.2s; }
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--espresso);
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: 0.9rem; color: var(--brown-dark); }
.t-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(28,15,7,0.75), rgba(61,35,20,0.82));
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  opacity: 0;
}
.cta-content.visible { animation: fadeUp 0.8s ease forwards; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(245,239,230,0.8);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--espresso);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,169,110,0.15);
}
.footer-brand .logo-ar { color: var(--cream); }
.footer-brand .logo-sub { color: rgba(200,169,110,0.7); }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,239,230,0.55);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.social-links { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.social-icon {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,0.3);
  justify-content: center;
  color: rgba(245,239,230,0.6);
  transition: all var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon span { display: none; }
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(245,239,230,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cream); }
.footer-contact p {
  font-size: 0.88rem;
  color: rgba(245,239,230,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(245,239,230,0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }
.working-hours { margin-top: 0.75rem; }
.footer-bottom {
  text-align: center;
  padding: 1.25rem;
  border-top: 1px solid rgba(200,169,110,0.08);
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,239,230,0.3); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.page-hero-short { height: 42vh; min-height: 300px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,15,7,0.88) 0%,
    rgba(28,15,7,0.45) 60%,
    rgba(28,15,7,0.3) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
}
.page-hero-content.visible { animation: fadeUp 0.8s ease forwards; }
.page-hero-content .section-label { color: var(--gold); }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  margin: 0.25rem 0 0.5rem;
}
.page-hero-content p {
  color: rgba(245,239,230,0.75);
  font-size: 1rem;
  max-width: 500px;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-section { padding: 5rem 0 7rem; }
.menu-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 2px solid var(--border);
  flex-wrap: wrap;
  opacity: 0;
}
.menu-tabs.visible { animation: fadeUp 0.6s ease forwards; }
.tab-btn {
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.tab-btn.active { color: var(--brown-dark); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--brown); }

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.menu-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
}
.menu-card.visible { animation: fadeUp 0.6s ease forwards; }
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.menu-card-img { height: 200px; overflow: hidden; }
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }
.menu-card-info { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.menu-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 0.3rem;
}
.menu-card-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 0.75rem;
}
.menu-card-info .price { font-weight: 700; color: var(--gold-dark); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.story-section { padding: 7rem 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-text { opacity: 0; }
.story-text.visible { animation: fadeUp 0.8s ease forwards; }
.story-text .lead-text {
  font-size: 1.15rem;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.story-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.98rem; }
.story-image { opacity: 0; }
.story-image.visible { animation: fadeUp 0.8s 0.2s ease forwards; }
.story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.values-section {
  padding: 6rem 0;
  background: var(--brown-dark);
}
.values-section .section-label { color: var(--gold); }
.values-section .section-title { color: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
  opacity: 0;
}
.value-card.visible { animation: fadeUp 0.7s ease forwards; }
.value-card:nth-child(2).visible { animation-delay: 0.1s; }
.value-card:nth-child(3).visible { animation-delay: 0.2s; }
.value-card:nth-child(4).visible { animation-delay: 0.3s; }
.value-card:hover {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.5);
}
.value-icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 1rem; }
.value-card h3 { color: var(--cream); font-size: 1rem; margin-bottom: 0.75rem; font-weight: 600; }
.value-card p { font-size: 0.87rem; color: rgba(245,239,230,0.6); line-height: 1.7; }

.gallery-section { padding: 6rem 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
  opacity: 0;
}
.gallery-grid.visible { animation: fadeUp 0.8s ease forwards; }
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.team-note { padding: 6rem 0; background: var(--sand); }
.team-note-inner {
  max-width: 750px;
  text-align: center;
  opacity: 0;
}
.team-note-inner.visible { animation: fadeUp 0.8s ease forwards; }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.5;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.quote-author strong { display: block; color: var(--brown-dark); font-size: 1rem; }
.quote-author span { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   RESERVATION PAGE
   ============================================ */
.reservation-section { padding: 6rem 0 8rem; }
.reservation-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.reservation-info { opacity: 0; }
.reservation-info.visible { animation: fadeUp 0.8s ease forwards; }
.reservation-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown-dark);
  margin-bottom: 2rem;
}
.info-items { display: flex; flex-direction: column; gap: 1.5rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item h4 { font-size: 0.9rem; color: var(--brown-dark); margin-bottom: 0.25rem; }
.info-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* Form */
.reservation-form-wrap {
  background: var(--cream-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  opacity: 0;
}
.reservation-form-wrap.visible { animation: fadeUp 0.8s 0.2s ease forwards; }
.reservation-form-wrap > h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}
input.error, select.error { border-color: #c0392b; }
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  margin-top: 0.3rem;
  min-height: 1rem;
}
textarea { resize: vertical; min-height: 80px; }
select { appearance: none; cursor: pointer; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--espresso);
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  animation: scaleIn 0.5s ease;
}
@keyframes scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 2rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 6rem 0 8rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { opacity: 0; }
.contact-info.visible { animation: fadeUp 0.8s ease forwards; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--brown-dark);
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.3rem; font-weight: 500; }
.contact-item a, .contact-item p {
  font-size: 0.95rem;
  color: var(--brown-dark);
  font-weight: 500;
  line-height: 1.6;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold-dark); }
.social-block { margin-top: 1rem; }
.social-block h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.contact-section .social-icon {
  width: auto;
  height: auto;
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  border-color: var(--border);
  color: var(--text-muted);
}
.contact-section .social-icon span { display: inline; font-size: 0.85rem; font-family: var(--font-body); }
.contact-section .social-icon svg { width: 16px; height: 16px; }
.contact-section .social-icon:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(200,169,110,0.07);
}

.map-section { opacity: 0; }
.map-section.visible { animation: fadeUp 0.8s 0.2s ease forwards; }
.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.25rem;
  height: 420px;
}
.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(20%) saturate(80%);
}
.map-pin-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-bubble {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream-light);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  animation: floatPin 3s ease-in-out infinite;
}
@keyframes floatPin {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.map-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200,169,110,0.3);
}
.map-pin-info strong { display: block; font-size: 0.9rem; color: var(--brown-dark); }
.map-pin-info span { font-size: 0.8rem; color: var(--text-muted); }
.map-btn { color: var(--brown-dark); border-color: var(--border); }
.map-btn:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); background: rgba(200,169,110,0.05); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .story-grid { gap: 3rem; }
  .atm-content { padding: 3.5rem 2.5rem; }
}

@media (max-width: 900px) {
  .atmosphere { grid-template-columns: 1fr; }
  .atm-image { height: 350px; }
  .about-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reservation-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

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

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: -100%;
    bottom: 0;
    width: 280px;
    background: rgba(28,15,7,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 0;
    transition: right var(--transition);
    border-right: 1px solid rgba(200,169,110,0.2);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(200,169,110,0.1); }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: rgba(245,239,230,0.85);
  }
  .nav-links a::after { display: none; }

  .cards-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .menu-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: auto; }

  .hero-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .strip-divider { display: none; }
  .strip-item { padding: 0.5rem 1rem; }
  .intro-strip { justify-content: flex-start; gap: 1rem; }

  .about-badge { bottom: -1rem; left: 0.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .page-hero-content { padding: 2rem 1.25rem; }
  .atm-content { padding: 2.5rem 1.5rem; }
  .reservation-form-wrap { padding: 1.75rem 1.25rem; }
  .menu-tabs { overflow-x: auto; flex-wrap: nowrap; }
  .tab-btn { padding: 0.75rem 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
