:root {
  --color-ink: #24302b;
  --color-muted: #65736b;
  --color-cream: #fff6df;
  --color-cream-strong: #f3d98b;
  --color-earth: #a86f3d;
  --color-earth-dark: #724723;
  --color-green: #2f6b4f;
  --color-green-dark: #1e4635;
  --color-mint: #d9eadf;
  --color-white: #ffffff;
  --color-surface: #f8f5ed;
  --color-line: #e5dccb;
  --shadow-soft: 0 18px 50px rgba(37, 45, 41, 0.12);
  --shadow-small: 0 10px 28px rgba(37, 45, 41, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  --header-height: 76px;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-green-dark);
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(229, 220, 203, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.76rem;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  padding: 10px 9px;
  color: var(--color-muted);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--color-green-dark);
  background: var(--color-mint);
  outline: none;
}

.header-cta {
  display: none;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
}

.main-nav.is-open {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  display: grid;
  padding: 16px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  box-shadow: var(--shadow-small);
}

.main-nav.is-open a {
  padding: 13px 16px;
}

.section,
.section-band {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section {
  padding: 72px 0;
}

.section-band {
  padding: 48px 0;
}

.hero {
  min-height: calc(100vh - var(--header-height) - 64px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 246, 223, 0.96), rgba(217, 234, 223, 0.86)),
    linear-gradient(180deg, var(--color-white), var(--color-surface));
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-earth-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 10vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h1,
h2,
h3,
.hero-subtitle,
.hero-text,
.button {
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--color-green-dark);
  font-size: clamp(1.08rem, 4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.22;
}

.hero-text {
  max-width: 600px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-green);
  box-shadow: 0 12px 24px rgba(47, 107, 79, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-green-dark);
}

.button-ghost {
  color: var(--color-green-dark);
  background: var(--color-white);
  border-color: var(--color-mint);
}

.button-light {
  color: var(--color-earth-dark);
  background: var(--color-cream-strong);
}

.wide-button {
  width: 100%;
  margin: 20px 0;
}

.hero-media {
  padding: 10px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(229, 220, 203, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.edit-note {
  background: var(--color-green-dark);
  color: var(--color-white);
}

.edit-note .eyebrow {
  color: var(--color-cream-strong);
}

.edit-note h2 {
  max-width: 540px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
}

.note-grid {
  display: grid;
  gap: 22px;
}

.note-list {
  display: grid;
  gap: 8px;
}

.note-list span {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
}

.split-grid,
.feature-grid,
.contact-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.section-muted {
  background: var(--color-surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p:last-child,
.split-grid p,
.feature-grid p {
  color: var(--color-muted);
}

.temporary-text,
.care-note {
  padding: 12px 14px;
  color: var(--color-earth-dark);
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-earth);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.info-panel {
  padding: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.soft-green {
  background: var(--color-mint);
  border-color: #bfd9c8;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--color-mint);
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--color-cream);
}

.product-card-body {
  padding: 18px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: var(--color-earth-dark);
  background: var(--color-cream);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.tag-green {
  color: var(--color-green-dark);
  background: var(--color-mint);
  border-color: #bfd9c8;
}

.product-card p {
  color: var(--color-muted);
}

.text-link {
  color: var(--color-green-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
}

.feature-media {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.feature-media img {
  width: 100%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}

.pill-list span {
  padding: 8px 10px;
  color: var(--color-green-dark);
  background: var(--color-mint);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mini-grid div,
.pet-grid article,
.gallery-grid article {
  padding: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid span {
  color: var(--color-muted);
}

.pet-section {
  color: var(--color-white);
  background:
    linear-gradient(135deg, rgba(30, 70, 53, 0.97), rgba(47, 107, 79, 0.94)),
    var(--color-green-dark);
}

.pet-section .eyebrow {
  color: var(--color-cream-strong);
}

.pet-section p {
  color: rgba(255, 255, 255, 0.82);
}

.pet-hero {
  display: grid;
  gap: 22px;
  align-items: center;
}

.pet-hero img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.pet-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.pet-grid article {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.pet-grid h3 {
  color: var(--color-white);
}

.process-layout {
  display: grid;
  gap: 26px;
  align-items: start;
}

.process-image {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.timeline {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.timeline li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 2px 14px;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.timeline span {
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

.gallery-grid article {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(255, 246, 223, 0.9), rgba(217, 234, 223, 0.9)),
    var(--color-white);
  box-shadow: var(--shadow-small);
}

.gallery-grid span {
  width: fit-content;
  margin-bottom: auto;
  padding: 5px 8px;
  color: var(--color-white);
  background: var(--color-earth);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.gallery-grid p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.contact-section {
  background: var(--color-white);
}

.contact-grid {
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.contact-details p {
  margin-bottom: 0;
}

.map-placeholder {
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.14), rgba(168, 111, 61, 0.16)),
    var(--color-surface);
  border: 1px dashed var(--color-earth);
  border-radius: var(--radius);
}

.map-placeholder span {
  color: var(--color-muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--color-ink);
  font-weight: 800;
}

.form-row {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid #d6cfbf;
  border-radius: var(--radius-sm);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-green);
  outline: 3px solid rgba(47, 107, 79, 0.15);
}

.form-feedback {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--color-green-dark);
  font-weight: 800;
}

.site-footer {
  padding: 30px 0;
  color: var(--color-white);
  background: var(--color-ink);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: inline-flex;
  margin: 0 12px 8px 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 620px) {
  .product-grid,
  .gallery-grid,
  .pet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 619px) {
  .hero.section-band {
    padding: 34px 0 30px;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-media img {
    height: clamp(190px, 52vw, 260px);
    object-fit: cover;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }
}

@media (min-width: 620px) and (max-width: 859px) {
  .hero-media img {
    height: 280px;
    object-fit: cover;
  }
}

@media (min-width: 1040px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .hero-grid,
  .note-grid,
  .split-grid,
  .feature-grid,
  .contact-grid,
  .process-layout,
  .pet-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .feature-grid-reverse {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-grid article:nth-child(5),
  .gallery-grid article:nth-child(6),
  .gallery-grid article:nth-child(7) {
    min-height: 190px;
  }
}

@media (min-width: 1120px) {
  .section {
    padding: 92px 0;
  }

  .hero-media {
    transform: translateY(10px);
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .timeline li {
    grid-template-columns: 44px 1fr;
    padding: 14px;
  }

  .timeline span {
    width: 36px;
    height: 36px;
  }
}
