/* ── DAPPER DOG CO. — SHARED BRAND STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --cream:    #f8f4ee;
  --ivory:    #fdfaf5;
  --charcoal: #2b2b2b;
  --slate:    #4a4a4a;
  --gold:     #c9a84c;
  --muted:    #8a8070;
  --bark:     #6b4f3a;
  --paw:      #d4b896;
  --white:    #ffffff;
  --green:    #4a7c59;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Jost', sans-serif;
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248,244,238,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(43,43,43,0.08); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 84px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo img {
  height: 60px;
  width: auto;
  margin-right: 0.75rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}
.nav-logo span { color: var(--gold); }
.nav-contact { display: flex; align-items: center; gap: 1.5rem; }
.nav-contact-item { font-size: 0.75rem; font-weight: 500; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.nav-contact-item:hover { color: var(--charcoal); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); transition: color 0.2s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:1px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform 0.3s var(--ease); }
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { background: var(--charcoal) !important; color: var(--cream) !important; padding: 0.5rem 1.2rem !important; border-radius: 2px !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--charcoal) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 1px; transition: 0.3s; }

/* BUTTONS */
.btn-primary, .btn-outline, .btn-ghost {
  font-family: var(--sans); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px; cursor: pointer;
  transition: all 0.25s; display: inline-block; text-align: center;
  font-size: 0.82rem; padding: 0.85rem 2rem; text-decoration: none; border: none;
}
.btn-primary { background: var(--charcoal); color: var(--cream); }
.btn-primary:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--muted); border: 1.5px solid rgba(43,43,43,0.15); }
.btn-ghost:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.73rem; }

/* FOOTER */
footer { background: #1e1e1e; padding: 3.5rem 1.5rem 2rem; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(248,244,238,0.07); margin-bottom: 2rem; }
.footer-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--cream); margin-bottom: 0.8rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.82rem; color: rgba(248,244,238,0.4); line-height: 1.7; max-width: 240px; margin-bottom: 1rem; }
.footer-contact-line { font-size: 0.8rem; color: rgba(248,244,238,0.55); display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.footer-contact-line a { color: var(--gold); transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--paw); }
.footer-col h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(248,244,238,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.76rem; color: rgba(248,244,238,0.3); }

/* UTILITIES */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; color: var(--charcoal); }
.section-intro { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin-top: 1rem; }
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .hamburger { display: flex; }
  nav.mobile-open .nav-links {
    display: flex; flex-direction: column; position: fixed;
    top: 84px; left: 0; right: 0; background: var(--cream);
    padding: 2rem 1.5rem; border-bottom: 1px solid rgba(43,43,43,0.1); gap: 1rem;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}
