:root {
  --ink: #16211f;
  --muted: #62706d;
  --paper: #f5faf8;
  --white: #ffffff;
  --aqua: #00a8a8;
  --aqua-dark: #087371;
  --leaf: #238457;
  --blue: #244c9a;
  --red: #de3143;
  --gold: #e4a72e;
  --soft: #e7f5f2;
  --warm: #fff5ea;
  --line: rgba(22, 33, 31, 0.12);
  --shadow: 0 18px 44px rgba(12, 36, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand call"
    "nav nav";
  gap: 12px 14px;
  align-items: center;
  padding: 11px 14px 13px;
  border-bottom: 1px solid rgba(8, 115, 113, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 253, 251, 0.94));
  box-shadow: 0 12px 32px rgba(12, 36, 34, 0.1);
  backdrop-filter: blur(16px);
}

.site-header > * {
  min-width: 0;
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.brand-logo {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(8, 115, 113, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.95), rgba(231, 245, 242, 0.9));
  box-shadow: 0 12px 26px rgba(12, 36, 34, 0.11);
}

.brand-logo img {
  width: 66px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(12, 36, 34, 0.13));
}

.brand-copy {
  display: grid;
  gap: 5px;
}

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

.brand strong {
  max-width: 13ch;
  color: #1a2725;
  font-size: 0.8rem;
  line-height: 1.08;
  font-weight: 950;
}

.brand small {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--aqua-dark), var(--leaf));
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0;
}

.nav {
  grid-area: nav;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid rgba(8, 115, 113, 0.12);
  border-radius: 8px;
  color: rgba(22, 33, 31, 0.82);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 850;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav a:hover {
  color: var(--aqua-dark);
  border-color: rgba(0, 168, 168, 0.3);
  background: rgba(0, 168, 168, 0.08);
  transform: translateY(-1px);
}

.header-call,
.big-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.header-call {
  grid-area: call;
  min-height: 44px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--red), #f04b5d);
  box-shadow: 0 14px 28px rgba(222, 49, 67, 0.24);
}

.big-button {
  min-height: 52px;
  padding: 0 22px;
  font-size: 1rem;
  box-shadow: 0 14px 28px rgba(12, 36, 34, 0.16);
}

.big-button.whatsapp {
  background: #19a95a;
}

.big-button.call {
  background: var(--red);
}

.header-call:hover,
.big-button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
}

.hero {
  position: relative;
  display: grid;
  gap: 30px;
  padding: 44px 18px 52px;
  background:
    linear-gradient(135deg, rgba(8, 115, 113, 0.92), rgba(36, 76, 154, 0.84) 58%, rgba(222, 49, 67, 0.82)),
    url("https://images.unsplash.com/photo-1522069169874-c58ec4b76be5?auto=format&fit=crop&w=1400&q=86") center / cover;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 16, 18, 0.7), rgba(3, 16, 18, 0.28));
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 13vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 9vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.1;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.58;
}

.hero-copy p:not(.eyebrow) {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.68;
}

.hero-actions,
.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin-top: 24px;
  max-width: 360px;
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr 0.64fr;
  grid-template-rows: 96px 96px;
  gap: 10px;
  max-width: 430px;
}

.hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main {
  grid-row: 1 / 3;
  min-height: 202px;
}

.hero-image-main figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: rgba(22, 33, 31, 0.68);
  backdrop-filter: blur(12px);
  font-size: 0.82rem;
  font-weight: 950;
}

.hero-image-top,
.hero-image-bottom {
  aspect-ratio: 1;
}

.trust-strip {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  min-height: 108px;
  padding: 22px 18px;
  background: var(--white);
}

.trust-strip span,
.product-card h3,
.company-details dt {
  color: var(--aqua-dark);
}

.trust-strip span {
  display: block;
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-strip strong {
  font-size: 1.05rem;
  line-height: 1.24;
}

.section {
  padding: 58px 18px;
}

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

.section-heading p:not(.eyebrow),
.split-copy p,
.product-card p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

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

.feature-card,
.product-card,
.contact-card,
.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(12, 36, 34, 0.08);
}

.feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.feature-card div,
.product-card {
  padding: 18px;
}

.split-section {
  display: grid;
  gap: 24px;
  background: var(--soft);
}

.split-media img {
  width: min(100%, 390px);
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.mini-list span {
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: var(--aqua-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.cats-section {
  background: var(--warm);
}

.wide-photo {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-photo img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.wide-photo div {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  background: rgba(22, 33, 31, 0.7);
  backdrop-filter: blur(12px);
}

.wide-photo strong {
  font-size: 1.1rem;
}

.wide-photo span {
  line-height: 1.5;
}

.food-section {
  background:
    linear-gradient(135deg, rgba(245, 250, 248, 0.96), rgba(231, 245, 242, 0.96)),
    url("https://images.unsplash.com/photo-1601758123927-1964b7be50cc?auto=format&fit=crop&w=1400&q=82") center / cover;
}

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

.product-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

.product-card h3 {
  font-size: 1.08rem;
}

.product-card p {
  font-size: 0.94rem;
}

.contact-section {
  display: grid;
  gap: 16px;
  padding: 58px 18px;
  background: #112829;
}

.contact-card,
.map-card {
  padding: 22px;
}

.contact-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 115, 113, 0.94), rgba(36, 76, 154, 0.84)),
    url("https://images.unsplash.com/photo-1494256997604-768d1f608cac?auto=format&fit=crop&w=1000&q=84") center / cover;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.84);
}

.company-details {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
}

.company-details div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.company-details dt {
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  color: var(--gold);
}

.company-details dd {
  margin: 6px 0 0;
  line-height: 1.48;
}

.map-card {
  display: grid;
  gap: 12px;
  background: #fff;
}

.map-card iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: 8px;
}

.map-link {
  display: inline-flex;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  background: var(--aqua-dark);
  font-weight: 950;
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--aqua-dark);
  box-shadow: 0 14px 28px rgba(12, 36, 34, 0.22);
  font-size: 1.35rem;
  font-weight: 950;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 24px 18px;
  color: rgba(255, 255, 255, 0.84);
  background: #101716;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 950;
}

.site-footer img {
  width: 68px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(255, 255, 255, 0.08));
}

.site-footer p {
  margin: 0;
  line-height: 1.55;
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand nav call";
    padding-inline: 24px;
  }

  .brand img {
    width: 90px;
    height: 76px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

  .nav {
    justify-content: center;
  }

  .hero,
  .section,
  .contact-section {
    padding-inline: 32px;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-wrap: wrap;
    max-width: none;
  }

  .big-button {
    min-width: 156px;
  }

  .hero-media {
    grid-template-rows: 132px 132px;
    max-width: 540px;
  }

  .hero-image-main {
    min-height: 274px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .company-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .site-header {
    top: 14px;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
  }

  .brand img {
    width: 104px;
    height: 86px;
  }

  .brand strong {
    max-width: 15ch;
    font-size: 1.02rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: clamp(34px, 6vw, 84px);
    min-height: calc(100svh - 24px);
    padding: 132px clamp(44px, 6vw, 76px) 72px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(3, 16, 18, 0.7), rgba(3, 16, 18, 0.24));
  }

  .hero-copy {
    max-width: 760px;
  }

  h1 {
    font-size: clamp(4.7rem, 7.4vw, 7.3rem);
  }

  h2 {
    font-size: clamp(2.9rem, 4.4vw, 4.5rem);
  }

  h3 {
    font-size: clamp(1.25rem, 1.7vw, 1.58rem);
  }

  .lead {
    font-size: 1.24rem;
  }

  .hero-media {
    grid-template-rows: 170px 170px;
    max-width: none;
  }

  .hero-image-main {
    min-height: 350px;
  }

  .section {
    padding: 92px clamp(44px, 6vw, 76px);
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .feature-card img {
    height: 300px;
  }

  .split-section {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(34px, 6vw, 82px);
  }

  .split-media img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
  }

  .wide-photo,
  .wide-photo img {
    min-height: 390px;
  }

  .wide-photo div {
    right: auto;
    left: 22px;
    bottom: 22px;
    max-width: 430px;
    padding: 18px;
  }

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

  .contact-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.8fr);
    gap: 22px;
    padding: 92px clamp(44px, 6vw, 76px);
  }

  .contact-card,
  .map-card {
    padding: 34px;
  }

  .map-card iframe {
    min-height: 390px;
  }

  .site-footer {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    padding: 26px clamp(44px, 6vw, 76px);
  }

  .site-footer p {
    justify-self: end;
    max-width: 760px;
    text-align: right;
  }
}

@media (min-width: 1180px) {
  .feature-card img {
    height: 340px;
  }

  .product-card img {
    aspect-ratio: 1.28;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 10px;
  }

  .brand img {
    width: 68px;
    height: 58px;
  }

  .brand strong {
    font-size: 0.78rem;
  }

  .header-call {
    padding: 0 12px;
  }

  .hero,
  .section,
  .contact-section {
    padding-inline: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
