/* ===== Hodge's Butchers — stylesheet ===== */

:root{
  --red: #c8102e;
  --red-dark: #8f0c20;
  --black: #141110;
  --cream: #f7f1e8;
  --white: #ffffff;
  --grey: #6b6560;
  --font-script: 'Great Vibes', cursive;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Assistant', sans-serif;
}

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

html{ scroll-behavior:smooth; }

body{
  font-family: var(--font-body);
  background:var(--cream);
  color:var(--black);
  line-height:1.6;
  overflow-x:hidden;
}

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

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

.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  display:inline-block;
  font-family: var(--font-head);
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size:.75rem;
  color:var(--red);
  font-weight:600;
  margin-bottom:14px;
}

h1,h2,h3{ font-family: var(--font-head); text-transform:uppercase; letter-spacing:.02em; }

.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 30px;
  border-radius:3px;
  font-family:var(--font-head);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.85rem;
  font-weight:600;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
}
.btn:hover{ transform:translateY(-2px); }

.btn-primary{
  background:var(--red);
  color:var(--white);
  box-shadow:0 8px 20px rgba(200,16,46,.35);
}
.btn-primary:hover{ background:var(--red-dark); }

.btn-outline{
  background:transparent;
  color:var(--white);
  border-color:rgba(255,255,255,.7);
}
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:var(--white); }

.btn-dark{
  background:var(--black);
  color:var(--white);
}
.btn-dark:hover{ background:#000; }

/* ===== Top bar ===== */
.topbar{
  background:var(--black);
  color:#cfcac3;
  font-size:.82rem;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 24px;
  flex-wrap:wrap;
  gap:6px;
}
.topbar a{ color:#cfcac3; transition:color .2s; }
.topbar a:hover{ color:var(--white); }
.topbar-item{ display:inline-flex; align-items:center; gap:6px; margin-right:18px; }
.topbar-right a{ margin-left:16px; }

/* ===== Header / Nav ===== */
header.site-header{
  position:sticky;
  top:0;
  z-index:500;
  background:var(--white);
  box-shadow:0 2px 14px rgba(0,0,0,.08);
}
nav.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  height:54px;
  width:54px;
  object-fit:contain;
}
.brand-text{
  font-family:var(--font-script);
  font-size:1.9rem;
  color:var(--red);
  line-height:1;
}
.brand-text small{
  display:block;
  font-family:var(--font-head);
  color:var(--black);
  font-size:.72rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  margin-top:2px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:30px;
  list-style:none;
}
.nav-links a{
  font-family:var(--font-head);
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:500;
  position:relative;
  padding:6px 0;
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  height:2px; width:0;
  background:var(--red);
  transition:width .25s ease;
}
.nav-links a:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
  padding:6px;
}
.nav-toggle span{ width:26px; height:3px; background:var(--black); border-radius:2px; }

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--white);
  background-image:
    linear-gradient(180deg, rgba(10,8,7,.55) 0%, rgba(10,8,7,.72) 55%, rgba(10,8,7,.92) 100%),
    url('images/hero-bg.jpg');
  background-size:cover;
  background-position:center 30%;
  padding:140px 20px 100px;
}
.hero-inner{ max-width:800px; }
.hero .eyebrow{ color:#e8b3ab; }
.hero h1{
  font-family:var(--font-script);
  font-size:clamp(3.2rem, 9vw, 6.5rem);
  text-transform:none;
  color:var(--white);
  line-height:1;
  text-shadow:0 6px 30px rgba(0,0,0,.5);
}
.hero h1 span{ color:var(--red); }
.hero .sub{
  font-family:var(--font-head);
  text-transform:uppercase;
  letter-spacing:.32em;
  font-size:.95rem;
  margin-top:14px;
  color:#f1e6df;
}
.hero p.tag{
  max-width:520px;
  margin:26px auto 40px;
  font-size:1.08rem;
  color:#e9e3dc;
}
.hero-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero-scroll{
  position:absolute;
  bottom:28px; left:50%;
  transform:translateX(-50%);
  color:#e9e3dc;
  font-size:.7rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  opacity:.85;
}
.hero-scroll .line{
  width:1px; height:34px;
  background:linear-gradient(to bottom, var(--white), transparent);
  animation:scrollpulse 2s infinite;
}
@keyframes scrollpulse{
  0%{ opacity:.2; } 50%{ opacity:1; } 100%{ opacity:.2; }
}

/* ===== Section shared ===== */
section{ padding:96px 0; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
.section-head h2{ font-size:clamp(2rem,4vw,2.6rem); }
.section-head p{ color:var(--grey); margin-top:14px; font-size:1.05rem; }
.divider{
  width:70px; height:3px; background:var(--red); margin:16px auto 0;
}
.section-head .divider{ margin:16px auto 0; }

/* ===== About ===== */
.about{ background:var(--white); }
.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.about-media{
  position:relative;
  border-radius:6px;
  overflow:hidden;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.35);
}
.about-media img{ width:100%; height:100%; object-fit:cover; }
.about-badge{
  position:absolute;
  bottom:-1px; right:-1px;
  background:var(--red);
  color:var(--white);
  padding:22px 26px;
  text-align:center;
  font-family:var(--font-head);
}
.about-badge .num{ font-size:2rem; font-weight:700; display:block; line-height:1; }
.about-badge .lbl{ font-size:.68rem; letter-spacing:.15em; text-transform:uppercase; }
.about-copy .eyebrow{ }
.about-copy h2{ font-size:clamp(1.9rem,4vw,2.4rem); margin-bottom:20px; }
.about-copy p{ color:#4a4540; margin-bottom:16px; }
.about-points{ list-style:none; margin-top:26px; display:grid; gap:12px; }
.about-points li{ display:flex; align-items:flex-start; gap:12px; font-weight:600; }
.about-points li::before{
  content:'\2713';
  flex:none;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  font-size:.7rem;
  display:flex; align-items:center; justify-content:center;
  margin-top:2px;
}

/* ===== Why choose us ===== */
.why{ background:var(--black); color:var(--white); }
.why .section-head p{ color:#c9c3bc; }
.why .section-head h2{ color:var(--white); }
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.feature-card{
  background:#1c1815;
  border:1px solid #2a2521;
  border-radius:8px;
  padding:34px 26px;
  text-align:center;
  transition:transform .2s ease, border-color .2s ease;
}
.feature-card:hover{ transform:translateY(-6px); border-color:var(--red); }
.feature-icon{
  width:58px; height:58px;
  margin:0 auto 20px;
  border-radius:50%;
  background:var(--red);
  display:flex; align-items:center; justify-content:center;
}
.feature-icon svg{ width:26px; height:26px; stroke:var(--white); fill:none; stroke-width:1.8; }
.feature-card h3{ font-size:1.02rem; margin-bottom:10px; letter-spacing:.04em; }
.feature-card p{ color:#b7b1a9; font-size:.92rem; }

/* ===== Hours + Contact ===== */
.info{ background:var(--cream); }
.info-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:48px;
}
.hours-card{
  background:var(--white);
  border-radius:8px;
  padding:44px 38px;
  box-shadow:0 20px 50px -25px rgba(0,0,0,.25);
}
.hours-card h3{ font-size:1.3rem; margin-bottom:6px; }
.hours-card .divider{ margin:0 0 26px; }
.hours-row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid #ece5da;
  font-size:.95rem;
}
.hours-row:last-child{ border-bottom:none; }
.hours-row span:first-child{ font-weight:600; }
.hours-row.closed span:last-child{ color:var(--red); font-weight:600; }
.hours-note{
  margin-top:22px;
  font-size:.85rem;
  color:var(--grey);
}

.contact-card{
  background:var(--black);
  color:var(--white);
  border-radius:8px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.map-wrap{ height:280px; filter:grayscale(35%) contrast(1.05); }
.map-wrap iframe{ width:100%; height:100%; border:0; display:block; }
.contact-body{ padding:36px 38px; flex:1; }
.contact-body h3{ font-size:1.3rem; margin-bottom:20px; }
.contact-line{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:18px;
}
.contact-line svg{ width:20px; height:20px; stroke:var(--red); fill:none; stroke-width:1.8; flex:none; margin-top:2px; }
.contact-line a, .contact-line span{ font-size:.98rem; color:#e6e1da; }
.contact-actions{ display:flex; gap:14px; margin-top:26px; flex-wrap:wrap; }

/* ===== CTA strip ===== */
.cta-strip{
  background:linear-gradient(120deg, var(--red-dark), var(--red));
  color:var(--white);
  text-align:center;
  padding:70px 24px;
}
.cta-strip h2{ font-size:clamp(1.8rem,3.6vw,2.4rem); margin-bottom:14px; }
.cta-strip p{ max-width:520px; margin:0 auto 30px; color:#ffe1de; }
.cta-strip .btn-outline{ border-color:rgba(255,255,255,.8); }
.cta-strip .btn-dark{ background:var(--black); }

/* ===== Footer ===== */
footer{ background:#0f0d0c; color:#a9a39b; padding:64px 0 0; }
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid #23201c;
}
.footer-brand{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.footer-brand img{ height:50px; width:50px; }
.footer-brand-text{ font-family:var(--font-script); font-size:1.7rem; color:var(--white); }
.footer-col h4{
  font-family:var(--font-head);
  color:var(--white);
  font-size:.85rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:20px;
}
.footer-col ul{ list-style:none; display:grid; gap:12px; }
.footer-col a{ font-size:.92rem; transition:color .2s; }
.footer-col a:hover{ color:var(--white); }
.footer-social{ display:flex; gap:12px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid #33302b;
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ background:var(--red); border-color:var(--red); }
.footer-social svg{ width:16px; height:16px; fill:currentColor; }
.footer-bottom{
  text-align:center;
  padding:22px 0;
  font-size:.82rem;
}

/* ===== Sticky mobile call button ===== */
.mobile-call{
  position:fixed;
  bottom:0; left:0; right:0;
  z-index:600;
  display:none;
  background:var(--red);
  color:var(--white);
  text-align:center;
  padding:14px;
  font-family:var(--font-head);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:.85rem;
  font-weight:600;
  box-shadow:0 -8px 24px rgba(0,0,0,.25);
}

/* ===== Reveal animation ===== */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .about-grid, .info-grid{ grid-template-columns:1fr; }
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 760px){
  .nav-links, .nav-cta .btn-primary{ display:none; }
  .nav-toggle{ display:flex; }
  .topbar .topbar-item.hide-sm{ display:none; }
  .feature-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .mobile-call{ display:block; }
  body{ padding-bottom:56px; }

  .nav-links{
    display:flex;
    position:absolute;
    top:100%; left:0; right:0;
    background:var(--white);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:0;
    max-height:0;
    overflow:hidden;
    box-shadow:0 12px 20px rgba(0,0,0,.08);
    transition:max-height .3s ease;
  }
  .nav-links.open{ max-height:320px; padding:10px 0; }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; padding:14px 24px; width:100%; }
  .nav-links a::after{ display:none; }
}
@media (max-width:500px){
  .feature-grid{ grid-template-columns:1fr; }
}
