/* ════════════════════════════════════════════════════════
   PHILLY COKE — SHARED STYLES
   ════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

:root {
  --red:        #8B1A1A;
  --red-dark:   #5c0e0e;
  --red-rich:   #a01e1e;
  --red-glow:   rgba(139,26,26,0.35);
  --cream:      #F7F2EA;
  --cream-dark: #EDE5D6;
  --black:      #0a0a0a;
  --off-black:  #111111;
  --white:      #ffffff;
  --gold:       #C9933A;
  --gold-light: #E8B86D;
  --gray:       #6b6b6b;
  --border:     rgba(139,26,26,0.2);

  --nav-h: 72px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --font-caps:    'Bebas Neue', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,26,26,0.4);
  transition: box-shadow 0.3s;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--red);
  object-fit: cover;
  transition: transform 0.3s;
}

.nav-brand:hover .nav-logo-img { transform: rotate(-6deg) scale(1.05); }

.nav-brand-text { display: flex; flex-direction: column; }

.nav-brand-name {
  font-family: var(--font-caps);
  font-size: 1.15rem;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}

.nav-brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 0 1.1rem;
  height: var(--nav-h);
  line-height: var(--nav-h);
  font-family: var(--font-caps);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: #aaa;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--red);
  transition: left 0.3s, right 0.3s;
}

.nav-link:hover,
.nav-link.active { color: var(--white); }

.nav-link:hover::after,
.nav-link.active::after { left: 0; right: 0; }

.nav-link.active { background: rgba(139,26,26,0.15); }

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

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--off-black);
  color: var(--white);
  border-top: 3px solid var(--red);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2.5rem 4rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.4fr;
  gap: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--red);
  margin-bottom: 1.2rem;
  object-fit: cover;
}

.footer-tagline {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; flex-direction: column; gap: 0.6rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-family: var(--font-caps);
  letter-spacing: 1.5px;
  color: #888;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s;
  width: fit-content;
}

.social-btn:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(139,26,26,0.15);
}

.footer-links-col h5,
.footer-contact-col h5 {
  font-family: var(--font-caps);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links-col ul { list-style: none; }
.footer-links-col ul li,
.footer-links-col ul a {
  font-size: 0.87rem;
  color: #777;
  margin-bottom: 0.6rem;
  display: block;
  transition: color 0.2s;
}
.footer-links-col ul a:hover { color: var(--white); }

.footer-contact-col address {
  font-style: normal;
  font-size: 0.87rem;
  color: #777;
  line-height: 1.9;
}

.footer-contact-col address a { color: #777; transition: color 0.2s; }
.footer-contact-col address a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.6rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-bottom p { font-size: 0.78rem; color: #444; }
.footer-credit { font-size: 0.78rem; color: #444; }
.footer-credit .heart { color: var(--red-rich); }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* ── SHARED COMPONENTS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-caps);
  font-size: 1rem;
  letter-spacing: 2.5px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-rich);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--red-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--off-black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.section-label {
  font-family: var(--font-caps);
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
}

.section-title.light { color: var(--white); }

.red-rule {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 1.5rem 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--off-black);
    flex-direction: column;
    border-bottom: 2px solid var(--red);
    padding: 0.5rem 0;
  }
  .nav-menu.open { display: flex; }
  .nav-link { height: auto; line-height: 1; padding: 0.9rem 1.5rem; }
  .nav-link::after { display: none; }
  .nav-burger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .container { padding: 0 1.2rem; }
}
