:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f4;
  --surface: #ffffff;
  --text: #1e1f1b;
  --text-soft: #5f6259;
  --line: #e5e7df;
  --accent: #b42428;
  --accent-dark: #921c20;
  --shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 14px 40px rgba(16, 24, 40, 0.08);
  --radius: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
  --transition: 0.3s ease;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

h1 {
  font-weight: 700;
}

h2 {
  font-weight: 650;
}

h3 {
  font-weight: 600;
}

p {
  font-weight: 400;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-link {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 0.78;
}

.lang-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.lang-link:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.lang-link.active {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(180, 36, 40, 0.15);
}

/* Móvil */
@media (max-width: 720px) {
  .topbar-inner {
    min-height: 38px;
  }

  .lang-switcher {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .lang-link {
    width: 22px;
    height: 22px;
  }

  .lang-link img {
    width: 18px;
    height: 18px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 223, 0.85);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  z-index: 1002;
}

.logo img {
  height: 55px;
  width: auto;
  display: block;
}

.logo:hover {
  color: var(--accent);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.nav-link {
  position: relative;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background-color var(--transition), border-color var(--transition);
  z-index: 1002;
}

.menu-toggle:hover {
  border-color: rgba(180, 36, 40, 0.3);
  background: #faf7f7;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
  transition: transform 0.28s ease, opacity 0.28s ease, background-color 0.28s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(92vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 18, 16, 0.46), rgba(17, 18, 16, 0.46)),
    url("images/hero.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(to right, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
}

.hero-content {
  max-width: 760px;
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--accent);
}

.hero .eyebrow {
  color: #f2d5d6;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.95rem, 3vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.hero-text {
  margin: 0;
  max-width: 700px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 35%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(180, 36, 40, 0.24);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 16px 30px rgba(146, 28, 32, 0.28);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.52);
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading .eyebrow {
  color: var(--accent);
}

.about-layout,
.two-col-layout,
.contact-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.about-layout {
  grid-template-columns: 1.45fr 0.9fr;
}

.two-col-layout {
  grid-template-columns: 1.1fr 0.9fr;
}

.contact-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-layout-info {
  grid-template-columns: 1fr;
  gap: 28px;
}

.contact-layout-info {
  align-items: start;
}

.about-main p,
.text-column p,
.petfood-intro p,
.contact-text p {
  margin: 0 0 20px;
  color: var(--text-soft);
}

.highlight-line {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
  color: var(--text) !important;
  font-weight: 700;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.feature-card,
.raw-card,
.feature-block,
.contact-info-card {
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}



.feature-card:hover,
.raw-card:hover,
.feature-block:hover,
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(180, 36, 40, 0.22);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.timeline li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.timeline span {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--accent);
}

.timeline p {
  margin: 0;
  color: var(--text-soft);
}

.grid-cards,
.three-col,
.features-grid,
.contact-cards {
  display: grid;
  gap: 20px;
}

.grid-cards {
  grid-template-columns: repeat(2, 1fr);
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.feature-block p,
.feature-card p,
.raw-card p {
  margin: 0;
  color: var(--text-soft);
}

.quote-box {
  margin-top: 40px;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
}

.quote-box p {
  margin: 0;
  letter-spacing: -0.01em;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
}

.clean-list li {
  margin-bottom: 8px;
}

.availability {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: #f3f4ef;
  border: 1px solid var(--line);
}

.availability p {
  margin: 0;
  font-weight: 600;
}

/* Our Meats images */
.meats-images {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 420px;
  margin-bottom: 70px;
}

.meats-images img {
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.img-main {
  width: 100%;
  height: 420px;
}

.img-secondary {
  position: absolute;
  width: 55%;
  max-width: 260px;
  height: 180px;
  bottom: -24px;
  left: -24px;
  border: 4px solid #ffffff;
}

/* Pet Food gallery */
.petfood-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.petfood-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.petfood-gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.contact-section {
  background: linear-gradient(to bottom, #ffffff 0%, #fafaf7 100%);
}

.contact-info-card p {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.contact-lines p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 500;
  flex-wrap: wrap;
}

.contact-lines a {
  color: var(--text);
  transition: color var(--transition);
  word-break: break-word;
}

.contact-lines a:hover {
  color: var(--accent);
}

.contact-icon {
  flex: 0 0 auto;
}

.site-footer {
  background: #171814;
  color: rgba(255, 255, 255, 0.82);
  padding: 28px 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0;
  font-size: 0.94rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .about-layout,
  .two-col-layout,
  .contact-layout,
  .three-col,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(320px, calc(100vw - 28px));
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu a {
    padding: 12px 10px;
    border-radius: 10px;
  }

  .menu a::after {
    bottom: 6px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .nav {
    min-height: 72px;
  }

  .hero-inner {
    padding: 96px 0 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .grid-cards {
    grid-template-columns: 1fr;
  }

  .card,
  .feature-block {
    padding: 22px;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
.site-footer {
  background: #171814;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-tagline {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 40px;
  }
}