/* Inukshuk Professional Dog Food — versión local en español
   Paleta basada en el empaque de producto y logo de Corey Nutrition */
:root {
  --olive: #3c4a30;
  --olive-dark: #262f1f;
  --black: #181818;
  --gold: #c08a3e;
  --gold-dark: #a06f2c;
  --maple: #9c2b1a;
  --cream: #f7f5ef;
  --white: #ffffff;
  --gray: #6b6b6b;
  --border: #e4e0d6;
  --radius: 6px;
  --shadow: 0 4px 18px rgba(0,0,0,.08);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: .6em;
  display: inline-block;
}

/* ---- Header ---- */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 52px; width: auto; }
.logo span { font-family: Georgia, serif; font-weight: 700; font-size: 1.15rem; color: var(--olive); }

nav.main-nav { display: flex; gap: 4px; flex-wrap: wrap; }
nav.main-nav > .nav-item { position: relative; }
nav.main-nav > .nav-item > a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: .92rem;
  border-radius: var(--radius);
}
nav.main-nav > .nav-item > a:hover { background: var(--cream); color: var(--olive); }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 8px;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 8px 12px; border-radius: 4px; font-size: .9rem; }
.dropdown a:hover { background: var(--cream); color: var(--olive); }
.btn {
  display: inline-block;
  background: var(--olive);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
}
.btn:hover { background: var(--olive-dark); }
.btn.gold { background: var(--gold); }
.btn.gold:hover { background: var(--gold-dark); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-link { font-weight: 700; font-size: .9rem; color: var(--olive); white-space: nowrap; }
.header-social { display: flex; align-items: center; gap: 12px; }
.header-social a { display: inline-flex; color: var(--olive); }
.header-social a:hover { color: var(--gold); }
.header-social svg { width: 19px; height: 19px; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--olive-dark), var(--olive));
  color: var(--white);
  padding: 70px 0;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: var(--white); }
.hero p.lead { font-size: 1.15rem; color: #e7e4d8; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.hero-img { border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 45px rgba(0,0,0,.35); }

/* ---- Contact info list ---- */
.info-contact { list-style: none; padding: 0; margin: 0; }
.info-contact li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.info-contact li:last-child { margin-bottom: 0; }
.info-contact svg.icon-lg {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 3px;
  color: var(--gold); background: var(--cream); border-radius: 50%; padding: 8px;
  box-sizing: content-box;
}
.info-contact strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: 2px; }
.info-contact a, .info-contact span { color: var(--olive-dark); }
.info-contact a:hover { color: var(--gold-dark); }

/* ---- Sections ---- */
section { padding: 64px 0; }
section.alt { background: var(--cream); }
.section-head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--gray); }

.grid { display: grid; gap: 28px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card h3 { color: var(--olive); }
.card img { border-radius: var(--radius); margin-bottom: 16px; }

.product-card { text-align: center; }
.product-card img { max-height: 260px; width: auto; margin: 0 auto 16px; object-fit: contain; }
.product-card .tag { color: var(--gray); font-size: .9rem; margin-bottom: 4px; }
.product-card .price-line { font-weight: 700; color: var(--gold-dark); }

.tech-icon { width: 90px; height: 90px; margin: 0 auto 16px; }

blockquote.testimonial {
  border-left: 4px solid var(--gold);
  padding: 18px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 0;
}
blockquote.testimonial p { font-style: italic; }
blockquote.testimonial footer { font-weight: 700; color: var(--olive); font-style: normal; }

table.analysis { width: 100%; border-collapse: collapse; margin: 20px 0; }
table.analysis th, table.analysis td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
table.analysis th { background: var(--cream); }
table.compare { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .92rem; }
table.compare th, table.compare td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
table.compare th { background: var(--olive); color: var(--white); }
table.compare tr:nth-child(even) { background: var(--cream); }

.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item h3 { color: var(--olive); margin-bottom: 8px; font-size: 1.05rem; }

.badge-row { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; justify-content: center; }
.badge-row img { max-height: 70px; width: auto; filter: grayscale(30%); opacity: .9; }

/* ---- Footer ---- */
footer.site-footer {
  background: var(--black);
  color: #cfcfc7;
  padding: 56px 0 24px;
}
footer.site-footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: var(--white); font-family: inherit; font-size: .95rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: .92rem; }
.footer-grid .contact-list li { display: flex; align-items: flex-start; gap: 9px; }
.footer-grid .contact-list svg.ficon { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: #8a8a82;
}
.social-links { display: flex; align-items: center; gap: 14px; }
.social-links a { display: inline-flex; color: #cfcfc7; }
.social-links svg { width: 20px; height: 20px; }

/* ---- Mobile nav ---- */
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 960px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .phone-link { display: none; }
  .hero .wrap { grid-template-columns: 1fr; }
  .grid.cols-3, .grid.cols-2, .grid.cols-5 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.site-header.nav-open nav.main-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px;
}
.site-header.nav-open .dropdown { position: static; box-shadow: none; border: none; padding-left: 12px; display: block; }

.breadcrumb { font-size: .85rem; color: var(--gray); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--olive); }

.callout {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.anchor-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.anchor-nav a { background: var(--cream); padding: 8px 16px; border-radius: 30px; font-size: .85rem; font-weight: 600; }
.anchor-nav a:hover { background: var(--olive); color: var(--white); }
