/* ============================================================
   S.K Group Café — refined dark navy + gold coffee house
   Palette pulled from the hero poster (deep navy #081848) and
   the S.K Group logo (warm gold). WhatsApp green for actions.
   ============================================================ */

:root {
  /* Poster-matched navy family */
  --navy-900: #050f2e;
  --navy-800: #081848;   /* dominant poster colour */
  --navy-700: #0d2160;
  --navy-600: #142a6e;
  --ink: #e9edff;
  --ink-soft: #aab4dc;
  --ink-faint: #7c88b8;

  /* Logo gold */
  --gold-1: #f6c453;
  --gold-2: #e79a2b;
  --gold-line: rgba(246, 196, 83, 0.28);

  /* WhatsApp */
  --wa: #25d366;
  --wa-dark: #1da851;

  --line: rgba(255, 255, 255, 0.09);
  --card: rgba(255, 255, 255, 0.035);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --wrap: 1160px;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

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

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

/* ---------- Shared type ---------- */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-1);
  font-weight: 600;
  margin-bottom: 14px;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}
.h2 em { font-style: italic; color: var(--gold-1); }

.lead {
  font-size: 1.18rem;
  color: var(--ink);
  margin: 22px 0 14px;
}
.body { color: var(--ink-soft); max-width: 46ch; }

.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section-head { max-width: 620px; margin-bottom: 54px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

/* ============================================================
   WhatsApp button — one consistent component, used everywhere
   ============================================================ */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #06331a;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.005em;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 26px -10px rgba(37, 211, 102, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  cursor: pointer;
}
.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -10px rgba(37, 211, 102, 0.85);
  filter: brightness(1.05);
}
.wa-btn:active { transform: translateY(0); }
.wa-btn .wa-ico { display: inline-flex; }
.wa-btn--sm { padding: 10px 18px; font-size: 0.9rem; }
.wa-btn--hero { padding: 17px 32px; font-size: 1.12rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 15, 46, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}
.brand-logo { height: 46px; width: auto; }
.nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.nav a { position: relative; padding: 4px 0; transition: color 0.2s; }
.nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  transition: width 0.25s ease;
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.wa-btn--header { padding: 11px 20px; font-size: 0.92rem; }

/* ============================================================
   Hero — poster on poster-matched navy, then WhatsApp button
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -10%, var(--navy-600) 0%, var(--navy-800) 42%, var(--navy-900) 100%);
  padding: clamp(48px, 7vw, 92px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 30% at 50% 20%, rgba(246, 196, 83, 0.12), transparent 70%),
    radial-gradient(50% 40% at 80% 90%, rgba(37, 211, 102, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}

.poster-link {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  max-width: 440px;
  width: 100%;
  box-shadow:
    0 30px 70px -24px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(246, 196, 83, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: posterIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.poster-link:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow:
    0 40px 90px -24px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(246, 196, 83, 0.4);
}
.poster { width: 100%; height: auto; }

@keyframes posterIn {
  from { opacity: 0; transform: translateY(26px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.wa-btn--hero { animation: fadeUp 0.9s 0.25s cubic-bezier(0.2, 0.8, 0.2, 1) both; }

/* ============================================================
   About
   ============================================================ */
.about { background: var(--navy-900); }
.stat-stack { display: grid; gap: 18px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-2);
  border-radius: 14px;
  padding: 24px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.stat-card:hover { transform: translateX(6px); border-left-color: var(--gold-1); }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold-1);
  line-height: 1;
}
.stat-label { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================================================
   Menu
   ============================================================ */
.menu { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.menu-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-line);
  background: rgba(255, 255, 255, 0.05);
}
.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.menu-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: #fff;
}
.price {
  font-family: var(--font-display);
  color: var(--gold-1);
  font-size: 1.2rem;
  white-space: nowrap;
}
.menu-card p { color: var(--ink-soft); flex: 1; }
.menu-card .wa-btn { align-self: flex-start; margin-top: 4px; }

/* ============================================================
   Craft — numbered steps
   ============================================================ */
.craft { background: var(--navy-800); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  counter-reset: none;
}
.step {
  background: rgba(5, 15, 46, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--gold-2);
  display: block;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.28rem;
  color: #fff;
  margin-bottom: 8px;
}
.step p { color: var(--ink-soft); font-size: 0.98rem; }

.craft-cta {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(120deg, rgba(246, 196, 83, 0.08), rgba(37, 211, 102, 0.06));
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 30px 34px;
}
.craft-cta p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  max-width: 30ch;
}

/* ============================================================
   Testimonials
   ============================================================ */
.voices { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.voice {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}
.voice blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}
.voice figcaption { display: flex; flex-direction: column; }
.voice figcaption span { font-weight: 700; color: var(--gold-1); }
.voice figcaption small { color: var(--ink-faint); }

/* ============================================================
   Visit
   ============================================================ */
.visit { background: var(--navy-900); }
.visit-list { list-style: none; margin: 26px 0 32px; display: grid; gap: 16px; }
.visit-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.vk {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--gold-1);
  font-weight: 700;
}
.vv { color: var(--ink-soft); }

.visit-card {
  background: radial-gradient(120% 120% at 50% 0%, var(--navy-700), var(--navy-800));
  border: 1px solid var(--gold-line);
  border-radius: 24px;
  padding: 48px 38px;
  text-align: center;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
}
.visit-card-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.visit-logo { height: 74px; width: auto; }
.visit-tag {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.45;
  color: var(--ink);
  max-width: 34ch;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { height: 52px; width: auto; margin-bottom: 12px; }
.footer-brand p { color: var(--ink-faint); max-width: 34ch; }
.footer-links { display: flex; gap: 26px; font-weight: 600; color: var(--ink-soft); }
.footer-links a:hover { color: var(--gold-1); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  color: var(--ink-faint);
  font-size: 0.88rem;
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in { opacity: 1; transform: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header-inner { min-height: 68px; }
  .wa-btn--header { margin-left: auto; }
  .craft-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .brand-logo { height: 38px; }
  .wa-btn--header span.wa-ico { display: none; }
  .visit-list li { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
