:root {
  color-scheme: light;
  --ink: #07120f;
  --muted: #66756f;
  --line: #d7e7df;
  --paper: #f5f7f5;
  --white: #ffffff;
  --black: #020403;
  --green: #35bf73;
  --green-mid: #24975a;
  --green-dark: #15362d;
  --deep: #0a211b;
  --logo-dark: #102f27;
  --sage: #e4eee8;
  --mint: #f1f6f3;
  --accent: #52dc8b;
  --amber: #9fc46a;
  --shadow: 0 24px 70px rgba(2, 4, 3, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: "Ubuntu", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, #f6f8f6 520px, #ffffff 100%);
  overflow-x: hidden;
}

body.is-ready .site-header {
  animation: slideDown 620ms ease both;
}

body.is-ready .hero-copy > * {
  animation: fadeLift 760ms ease both;
}

body.is-ready .hero-copy > *:nth-child(2) {
  animation-delay: 90ms;
}

body.is-ready .hero-copy > *:nth-child(3) {
  animation-delay: 170ms;
}

body.is-ready .hero-copy > *:nth-child(4) {
  animation-delay: 250ms;
}

body.is-ready .hero-copy > *:nth-child(5) {
  animation-delay: 330ms;
}

body.is-ready .hero-media {
  animation: imageReveal 900ms ease 180ms both;
}

section,
form {
  scroll-margin-top: 92px;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.stat-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(53, 191, 115, 0.76);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 12px;
  color: var(--white);
  background: var(--black);
  border-radius: 8px;
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 76px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 18, 15, 0.08);
  backdrop-filter: blur(18px);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(2, 4, 3, 0.28);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.floating-whatsapp .icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(53, 191, 115, 0.42);
  border-radius: inherit;
  animation: whatsappRing 2.4s ease-in-out infinite;
}

.brand,
.nav-links,
.hero-actions,
.quick-strip,
.contact-links,
.social-links {
  display: flex;
  align-items: start;
}

.brand {
  width: clamp(138px, 17vw, 176px);
  min-width: 138px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(2, 4, 3, 0.18));
}

.nav-links {
  gap: clamp(14px, 2.4vw, 34px);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links .icon {
  width: 1em;
  height: 1em;
  color: var(--green-mid);
  stroke-width: 2.2;
}

.nav-links a:hover,
.footer a:hover,
.contact-links a:hover,
.social-links a:hover {
  color: var(--green);
}

.header-cta,
.button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
}

.header-cta,
.button,
.instagram-follow,
.contact-links a,
.social-links a,
.service-area {
  gap: 8px;
}

.header-cta {
  padding: 0 clamp(14px, 2vw, 20px);
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--green-dark) 50%, var(--green-mid));
  box-shadow: 0 12px 28px rgba(2, 4, 3, 0.22);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: auto;
  padding: clamp(46px, 6vw, 74px) clamp(18px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0 54%, #eef6f1 54% 100%);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 148px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(53, 191, 115, 0.1));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-mid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-section h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  padding: 0 24px;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--logo-dark), var(--green-mid));
  box-shadow: 0 16px 32px rgba(2, 4, 3, 0.2);
}

.button:hover,
.header-cta:hover,
.instagram-follow:hover,
.inquiry-form button:hover {
  transform: translateY(-1px);
}

.button.ghost {
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 560px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 191, 115, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(23, 33, 29, 0.07);
  backdrop-filter: blur(12px);
}

.stat-icon {
  width: 26px;
  height: 26px;
  margin-bottom: 12px;
  color: var(--green-mid);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--deep);
  font-size: 1.02rem;
}

.hero-stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  z-index: 1;
  min-height: auto;
  margin-top: 0;
}

.hero-media::before {
  position: absolute;
  inset: 38px -18px -18px 38px;
  content: "";
  background: linear-gradient(135deg, var(--logo-dark), var(--green-mid));
  border-radius: 8px;
  opacity: 0.16;
}

.hero-media img {
  position: relative;
  width: 100%;
  height: min(50vh, 460px);
  min-height: 340px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(2, 4, 3, 0.16);
}

.hero-product-image {
  display: block;
  width: 100%;
  object-position: center;
}

.floating-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 56px));
  padding: 18px;
  color: var(--white);
  background: rgba(2, 4, 3, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(2, 4, 3, 0.32);
  backdrop-filter: blur(14px);
  animation: softFloat 4.8s ease-in-out infinite;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 1.08rem;
}

.floating-note span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.quick-strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 76px);
  background: var(--black);
  border-block: 0;
}

.quick-strip span {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.quick-strip span {
  animation: fadeLift 700ms ease both;
}

.quick-strip span:nth-child(2) {
  animation-delay: 70ms;
}

.quick-strip span:nth-child(3) {
  animation-delay: 140ms;
}

.quick-strip span:nth-child(4) {
  animation-delay: 210ms;
}

.quick-strip span:nth-child(5) {
  animation-delay: 280ms;
}

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

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.promise-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.promise-section article {
  min-height: 190px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f9fcf8);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.06);
}

.promise-section span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--green-mid);
  background: rgba(53, 191, 115, 0.1);
  border: 1px solid rgba(53, 191, 115, 0.18);
  border-radius: 8px;
  font-weight: 900;
}

.promise-section h2 {
  margin: 18px 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.promise-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.centered-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.emotional-products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 248, 0.94)),
    url("assets/product-herbal-wellness.png") center / cover;
}

.emotional-products::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 86% 20%, rgba(53, 191, 115, 0.18), transparent 26%);
  pointer-events: none;
}

.emotional-products > * {
  position: relative;
  z-index: 1;
}

.picture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.picture-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 18, 15, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 4, 3, 0.1);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.picture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(2, 4, 3, 0.14);
}

.picture-card img {
  display: block;
  width: 100%;
  height: clamp(190px, 20vw, 255px);
  object-fit: cover;
}

.picture-card div {
  padding: 20px;
}

.picture-card span {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--green-dark);
  background: #edf7f1;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.picture-card h3 {
  margin: 14px 0 8px;
  font-size: clamp(1.12rem, 1.6vw, 1.36rem);
}

.picture-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.product-section {
  background:
    linear-gradient(180deg, #ffffff 0, #f7fdf9 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #f7faf8;
  border: 1px solid rgba(7, 18, 15, 0.1);
  border-radius: 6px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 30px 22px;
  text-align: center;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(7, 18, 15, 0.1);
  border-bottom: 1px solid rgba(7, 18, 15, 0.1);
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease;
}

.product-card::after {
  display: none;
}

.product-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

@media (hover: none) {
  .product-card:hover,
  .button:hover,
  .header-cta:hover,
  .instagram-follow:hover,
  .inquiry-form button:hover {
    transform: none;
  }
}

.product-card span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 64px;
  height: 64px;
  margin-inline: auto;
  place-items: center;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(53, 191, 115, 0.16);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(2, 4, 3, 0.06);
  font-weight: 900;
}

.product-card span .icon {
  width: 23px;
  height: 23px;
}

.product-card:nth-child(2n) span {
  background: var(--white);
}

.product-card:nth-child(3n) span {
  background: var(--white);
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.product-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.client-gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 245, 0.98)),
    radial-gradient(circle at 90% 10%, rgba(53, 191, 115, 0.12), transparent 28%);
}

.client-gallery {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 18px;
  align-items: stretch;
}

.client-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid rgba(7, 18, 15, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 4, 3, 0.12);
}

.featured-client-card {
  grid-row: span 2;
  min-height: 660px;
}

.client-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 240ms ease, opacity 240ms ease;
}

.client-card:hover img {
  transform: scale(1.035);
  opacity: 1;
}

.client-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(2, 4, 3, 0.88));
}

.client-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--white);
}

.client-card span {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-card h3 {
  margin: 12px 0 0;
  max-width: 320px;
  font-size: clamp(1.22rem, 2vw, 1.75rem);
  line-height: 1.08;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 7vw, 86px);
  background:
    linear-gradient(135deg, rgba(241, 246, 243, 0.96), rgba(255, 255, 255, 0.92)),
    url("assets/product-wellness-essentials.png") right center / 46% auto no-repeat;
}

.about-section h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.about-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.city-pills span {
  padding: 10px 13px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(53, 191, 115, 0.22);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.06);
}

.about-copy p {
  margin: 0;
}

.instagram-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(53, 191, 115, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff, #f7fbf6);
}

.instagram-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

.instagram-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.instagram-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--green-mid));
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(2, 4, 3, 0.2);
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

.instagram-grid article {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.1), rgba(2, 4, 3, 0.9)),
    linear-gradient(135deg, var(--green-mid), var(--deep));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 33, 29, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.instagram-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(23, 33, 29, 0.16);
}

.instagram-grid article:first-child {
  grid-row: span 2;
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.08), rgba(2, 4, 3, 0.88)),
    url("assets/sales-wwheil-wellness-hero.png") center / cover;
}

.instagram-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.08), rgba(2, 4, 3, 0.86)),
    linear-gradient(135deg, var(--green-mid), var(--accent));
}

.instagram-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(2, 4, 3, 0.08), rgba(2, 4, 3, 0.86)),
    linear-gradient(135deg, var(--logo-dark), var(--green-mid));
}

.instagram-grid article span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-grid article h3 {
  margin: 14px 0 0;
  max-width: 360px;
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
  line-height: 1.08;
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 247, 0.94)),
    url("assets/product-herbal-wellness.png") left top / 42% auto no-repeat;
}

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

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(53, 191, 115, 0.16);
  border-radius: 6px;
  box-shadow: 0 16px 38px rgba(2, 4, 3, 0.07);
}

.quote-mark {
  width: 44px;
  height: 44px;
  color: var(--green-mid);
  font-size: 3rem;
  font-weight: 900;
  line-height: 0.9;
}

.testimonial-card p {
  margin: 18px 0 26px;
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-card div:last-child {
  margin-top: auto;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--ink);
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--green-mid);
  font-weight: 800;
}

.blog-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
    url("assets/product-wellness-essentials.png") right bottom / 40% auto no-repeat;
}

.blog-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.blog-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.06;
}

.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--green-mid));
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(2, 4, 3, 0.16);
}

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

.blog-card {
  min-height: 270px;
  padding: 28px;
  background: #f3fbf6;
  border: 1px solid rgba(53, 191, 115, 0.16);
  border-radius: 6px;
  transition: transform 180ms ease, background 180ms ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  background: #edf9f1;
}

.blog-card span {
  display: inline-flex;
  padding: 8px 10px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid rgba(53, 191, 115, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 22px 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.16;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(24px, 5vw, 64px);
  background: var(--white);
}

.contact-card {
  padding: clamp(30px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(135deg, var(--black), var(--logo-dark), var(--green-dark));
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(2, 4, 3, 0.2);
}

.contact-card .eyebrow {
  color: var(--accent);
}

.contact-card address {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-style: normal;
  line-height: 1.75;
}

.service-area {
  display: flex;
  align-items: center;
  margin: 22px 0 0;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.5;
}

.contact-links {
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(28px, 4vw, 38px);
  background:
    linear-gradient(180deg, #ffffff, var(--paper));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.inquiry-form h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(53, 191, 115, 0.68);
  box-shadow: 0 0 0 4px rgba(53, 191, 115, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.inquiry-form button {
  border: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), var(--logo-dark), var(--green-mid));
  cursor: pointer;
  font: inherit;
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateX(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.footer {
  padding: clamp(46px, 7vw, 76px) clamp(18px, 5vw, 76px) 28px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 10% 0, rgba(53, 191, 115, 0.18), transparent 28%),
    var(--black);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 0.7fr));
  gap: 34px;
}

.footer-logo {
  display: block;
  width: 176px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24));
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  line-height: 1.7;
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1rem;
}

.footer-main a,
.footer-main span {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.social-links {
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.9rem;
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.04);
  }
}

@keyframes whatsappRing {
  0% {
    opacity: 0.8;
    transform: scale(0.88);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.25);
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 14px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  }

  .hero h1 {
    font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  }
}

@media (min-width: 1181px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
  }

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

@media (max-width: 960px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .brand {
    width: 150px;
    min-width: 150px;
  }

  .nav-links {
    justify-self: center;
  }

  .header-cta {
    width: auto;
  }

  .hero,
  .about-section,
  .promise-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media::before {
    inset: 28px -10px -10px 28px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .instagram-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .instagram-grid article:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .testimonial-grid,
  .blog-grid,
  .picture-grid,
  .client-gallery {
    grid-template-columns: 1fr;
  }

  .featured-client-card {
    grid-row: auto;
    min-height: 420px;
  }

  .client-card {
    min-height: 360px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
  }

  .brand,
  .nav-links {
    width: 100%;
  }

  .brand {
    min-width: 0;
    max-width: 174px;
    justify-self: center;
  }

  .nav-links {
    justify-content: space-between;
    justify-self: stretch;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 3px;
    font-size: 0.88rem;
  }

  .header-cta {
    width: 100%;
  }
}

@media (min-width: 761px) and (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.85fr);
    gap: 28px;
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.25rem);
  }

  .hero-product-image {
    width: 76%;
    height: auto;
    min-height: 0;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 38px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-product-image {
    width: 100%;
    margin-top: 18px;
    height: 330px;
    min-height: 330px;
    object-position: center;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
    background: var(--deep);
  }

  .button {
    width: 100%;
  }

  .quick-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .quick-strip span {
    white-space: nowrap;
  }

  .section {
    padding-block: 54px;
  }

  .section-heading h2,
  .instagram-header h2,
  .about-section h2,
  .contact-card h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
    line-height: 1.08;
  }

  .hero-stats div,
  .promise-section article,
  .product-card,
  .inquiry-form,
  .contact-card {
    padding: 22px;
  }

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

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

  .instagram-grid article:first-child {
    grid-column: auto;
  }

  .blog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .picture-card img {
    height: 240px;
  }

  .client-card {
    min-height: 320px;
  }

  .blog-cta {
    width: 100%;
    justify-content: center;
  }

  .product-card {
    min-height: auto;
  }

  .footer {
    align-items: flex-start;
    padding-bottom: 88px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main {
    display: grid;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 520px) {
  .picture-card img {
    height: 210px;
  }
}

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

  .nav-links {
    gap: 16px;
    justify-content: flex-start;
  }

  .hero,
  .section,
  .quick-strip,
  .footer {
    padding-inline: 14px;
  }

  .hero-media::before {
    display: none;
  }

  .hero-product-image {
    height: 300px;
    min-height: 300px;
  }

  .floating-note {
    font-size: 0.95rem;
  }
}
