:root {
  --black: #0b0d0c;
  --black-soft: #141816;
  --gray-900: #1c221f;
  --gray-700: #3d4743;
  --gray-500: #7a8681;
  --gray-300: #c5cdc9;
  --gray-100: #e8eeeb;
  --white: #f7faf8;
  --aqua: #3ecfba;
  --aqua-deep: #1fa894;
  --aqua-soft: rgba(62, 207, 186, 0.14);
  --aqua-glow: rgba(62, 207, 186, 0.35);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Sora", sans-serif;
  --max: 1180px;
  --nav-h: 92px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-100);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
.btn {
  font: inherit;
  border: 0;
  cursor: pointer;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Nav —— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(11, 13, 12, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(197, 205, 201, 0.08);
}

.nav__inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 62px;
  width: auto;
  max-width: min(280px, 58vw);
}

.logo--footer img {
  height: 72px;
  max-width: min(320px, 78vw);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: 0.92rem;
  color: var(--gray-300);
  transition: color 0.25s;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--aqua);
}

.nav.is-inner {
  background: rgba(11, 13, 12, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(197, 205, 201, 0.08);
}

.nav__links .nav__cta,
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}

.nav__links .nav__cta:hover,
.nav__links .nav__cta:focus-visible,
.nav__cta:hover {
  background: var(--gray-100);
  color: var(--black);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav.open .nav__toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav.open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.open .nav__toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  transform: scale(1.06);
  animation: kenburns 22s var(--ease) infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1.06) translate(0, 0);
  }
  to {
    transform: scale(1.12) translate(-1%, -0.6%);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(11, 13, 12, 0.94) 0%,
      rgba(11, 13, 12, 0.82) 34%,
      rgba(11, 13, 12, 0.35) 62%,
      rgba(11, 13, 12, 0.55) 100%
    ),
    linear-gradient(180deg, rgba(11, 13, 12, 0.35) 0%, transparent 30%, rgba(11, 13, 12, 0.55) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--nav-h) + 1.5rem) 0 3.5rem;
}

.hero__copy {
  width: min(100%, 34rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero__label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--aqua);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 6.2vw, 4.75rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero__title em {
  font-style: italic;
  color: var(--aqua);
  font-weight: 500;
}

.hero__sub {
  color: var(--gray-300);
  font-weight: 300;
  font-size: 1.02rem;
  max-width: 34ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn--primary {
  background: var(--aqua);
  color: var(--black);
  min-width: 11.5rem;
}

.btn--primary:hover {
  background: #62e0cd;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(247, 250, 248, 0.35);
  min-width: 11.5rem;
}

.btn--ghost:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  transform: translateY(-2px);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

/* —— Sections —— */
section {
  padding: clamp(4.5rem, 10vw, 7.5rem) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--white);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 42ch;
  font-weight: 300;
}

/* —— About —— */
.about {
  background:
    linear-gradient(180deg, var(--black) 0%, var(--black-soft) 100%);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: 420px;
}

.about__visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about__accent {
  position: absolute;
  left: -12px;
  top: 12%;
  bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--aqua), transparent);
}

.about__copy p {
  color: var(--gray-300);
  margin-top: 1.5rem;
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 40ch;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 205, 201, 0.12);
}

.about__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--aqua);
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about__stats span {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* —— Services —— */
.services {
  background: var(--black-soft);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, var(--aqua-soft), transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 80%, rgba(62, 207, 186, 0.07), transparent 55%);
  pointer-events: none;
}

.services .container {
  position: relative;
}

.services__head {
  margin-bottom: 3.5rem;
}

.services__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(197, 205, 201, 0.12);
}

.service {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(197, 205, 201, 0.12);
  gap: 1.25rem;
}

.service:nth-child(odd) {
  padding-right: clamp(1.5rem, 4vw, 3rem);
  border-right: 1px solid rgba(197, 205, 201, 0.12);
}

.service:nth-child(even) {
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.service__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--aqua);
  letter-spacing: 0.12em;
}

.service h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
}

.service p {
  color: var(--gray-500);
  font-weight: 300;
  max-width: 36ch;
}

.service__img {
  margin-top: 0.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service:hover .service__img img {
  transform: scale(1.04);
}

/* —— Gallery —— */
.gallery {
  background: var(--black);
}

.gallery__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.75rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--gray-900);
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  color: inherit;
  font: inherit;
  text-align: left;
  display: block;
}

.gallery__item:first-child {
  grid-row: span 2;
}

.gallery__item:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 2px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(11, 13, 12, 0.85));
  font-size: 0.85rem;
  color: var(--gray-300);
  letter-spacing: 0.02em;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s var(--ease);
  pointer-events: none;
}

.gallery__item:hover .gallery__caption,
.gallery__item:focus-visible .gallery__caption {
  opacity: 1;
  transform: none;
}

/* —— Lightbox —— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open[hidden] {
  display: grid;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 9, 0.92);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.lightbox__stage {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-height: min(86vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.4s var(--ease);
}

.lightbox.is-open .lightbox__stage {
  transform: none;
}

.lightbox__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(76vh, 820px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100%, 720px);
  padding: 0 0.25rem;
}

.lightbox__caption {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
}

.lightbox__counter {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--aqua);
  white-space: nowrap;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  background: rgba(247, 250, 248, 0.06);
  border: 1px solid rgba(247, 250, 248, 0.14);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(62, 207, 186, 0.18);
  border-color: rgba(62, 207, 186, 0.45);
  color: var(--aqua);
}

.lightbox__close {
  top: 1.1rem;
  right: 1.1rem;
  width: 46px;
  height: 46px;
}

.lightbox__close svg {
  width: 18px;
  height: 18px;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}

.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox__nav--prev {
  left: clamp(0.5rem, 2vw, 1.5rem);
}

.lightbox__nav--next {
  right: clamp(0.5rem, 2vw, 1.5rem);
}

.lightbox__nav svg {
  width: 20px;
  height: 20px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .lightbox__nav {
    top: auto;
    bottom: 5.5rem;
    transform: none;
    width: 44px;
    height: 44px;
  }

  .lightbox__nav:hover {
    transform: scale(1.05);
  }

  .lightbox__nav--prev {
    left: calc(50% - 56px);
  }

  .lightbox__nav--next {
    right: calc(50% - 56px);
  }

  .lightbox__caption {
    font-size: 1.15rem;
  }
}

/* —— Process —— */
.process {
  background:
    linear-gradient(135deg, #101513 0%, var(--black) 50%, #0e1614 100%);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 1rem;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.85rem;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(62, 207, 186, 0.45);
  display: block;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--white);
}

.step p {
  color: var(--gray-500);
  font-size: 0.95rem;
  font-weight: 300;
}

/* —— Contact —— */
.contact {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  width: 50vmax;
  height: 50vmax;
  right: -20vmax;
  bottom: -25vmax;
  background: radial-gradient(circle, var(--aqua-glow), transparent 65%);
  pointer-events: none;
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__panel {
  background: linear-gradient(160deg, rgba(62, 207, 186, 0.08), rgba(20, 24, 22, 0.4));
  border: 1px solid rgba(62, 207, 186, 0.18);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.contact__panel h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-list a,
.contact-list .item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(197, 205, 201, 0.1);
  transition: color 0.25s;
}

.contact-list a:hover {
  color: var(--aqua);
}

.contact-list .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--aqua-soft);
  color: var(--aqua);
  border-radius: 50%;
}

.contact-list .icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-list small {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-list strong {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
}

.contact__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact__note {
  margin-top: 2rem;
  color: var(--gray-500);
  font-weight: 300;
  max-width: 36ch;
}

/* —— Page hero —— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4.5rem) 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(62, 207, 186, 0.12), transparent 55%),
    linear-gradient(180deg, var(--black-soft), var(--black));
  border-bottom: 1px solid rgba(197, 205, 201, 0.08);
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 13, 12, 0.92) 20%, rgba(11, 13, 12, 0.7) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .section-title {
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.page-hero .section-lead {
  max-width: 46ch;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--gray-300);
  transition: color 0.25s;
}

.breadcrumb a:hover {
  color: var(--aqua);
}

.breadcrumb span {
  color: var(--aqua);
}

.content-block {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.content-block--alt {
  background: var(--black-soft);
}

.content-prose {
  max-width: 68ch;
}

.content-prose p + p {
  margin-top: 1.1rem;
}

.content-prose p {
  color: var(--gray-300);
  font-weight: 300;
  font-size: 1.05rem;
}

.content-prose ul {
  margin: 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.content-prose li {
  color: var(--gray-300);
  padding-left: 1.1rem;
  position: relative;
  font-weight: 300;
}

.content-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split__media {
  overflow: hidden;
  min-height: 360px;
}

.split__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.home-preview {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--black);
}

.home-preview__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-band {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(62, 207, 186, 0.14), transparent 60%),
    var(--black-soft);
  border-top: 1px solid rgba(197, 205, 201, 0.08);
  border-bottom: 1px solid rgba(197, 205, 201, 0.08);
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band .section-title {
  margin-bottom: 0.5rem;
}

/* —— Products —— */
.products {
  background: var(--black-soft);
}

.products__head {
  margin-bottom: 3rem;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product {
  display: grid;
  grid-template-rows: 220px 1fr;
  background: rgba(20, 24, 22, 0.65);
  border: 1px solid rgba(197, 205, 201, 0.1);
  overflow: hidden;
  transition: border-color 0.3s;
}

.product:hover {
  border-color: rgba(62, 207, 186, 0.35);
}

.product__media {
  overflow: hidden;
}

.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.product:hover .product__media img {
  transform: scale(1.05);
}

.product__body {
  padding: 1.6rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product__body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--white);
}

.product__body p {
  color: var(--gray-500);
  font-weight: 300;
  font-size: 0.95rem;
}

.product__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.25rem 0 0.5rem;
}

.product__body li {
  color: var(--gray-300);
  font-size: 0.88rem;
  padding-left: 1rem;
  position: relative;
}

.product__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aqua);
}

.product__link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--aqua);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.product__link:hover {
  border-bottom-color: var(--aqua);
}

/* —— Benefits —— */
.benefits {
  background: var(--black);
  border-top: 1px solid rgba(197, 205, 201, 0.06);
}

.benefits__head {
  margin-bottom: 3rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit {
  padding-top: 0.5rem;
  border-top: 1px solid rgba(62, 207, 186, 0.35);
}

.benefit__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--aqua);
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.benefit h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.benefit p {
  color: var(--gray-500);
  font-weight: 300;
  font-size: 0.92rem;
}

/* —— Tips —— */
.tips {
  background: var(--black-soft);
}

.tips__head {
  margin-bottom: 3rem;
}

.tips__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tip {
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(197, 205, 201, 0.1);
  background: linear-gradient(160deg, rgba(62, 207, 186, 0.06), transparent 55%);
}

.tip h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.tip p {
  color: var(--gray-500);
  font-weight: 300;
  font-size: 0.95rem;
}

/* —— Footer —— */
.footer {
  border-top: 1px solid rgba(197, 205, 201, 0.1);
  padding: 3.5rem 0 1.75rem;
  background: var(--black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__about {
  color: var(--gray-500);
  font-size: 0.92rem;
  font-weight: 300;
  margin-top: 1rem;
  max-width: 34ch;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__links a {
  color: var(--gray-500);
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--aqua);
}

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197, 205, 201, 0.08);
}

.footer__bottom p {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* —— WhatsApp float —— */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease);
  animation: floatIn 0.8s var(--ease) 1s both;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— Responsive —— */
@media (max-width: 960px) {
  .products__grid,
  .tips__grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__grid,
  .contact__grid,
  .split {
    grid-template-columns: 1fr;
  }

  .split__media,
  .split__media img {
    min-height: 280px;
  }

  .about__visual {
    min-height: 300px;
    order: -1;
  }

  .about__visual img {
    min-height: 300px;
  }

  .services__list {
    grid-template-columns: 1fr;
  }

  .service:nth-child(odd),
  .service:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }

  .gallery__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }

  .process__steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    background: rgba(11, 13, 12, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(197, 205, 201, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
  }

  .nav.open .nav__links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav__cta {
    width: 100%;
    justify-content: center;
  }

  .hero__content {
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: clamp(2.45rem, 11vw, 3.4rem);
  }

  .hero__sub {
    max-width: 32ch;
  }

  .hero__actions .btn {
    flex: 1 1 auto;
    min-width: 0;
  }

  .about__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .products__grid,
  .tips__grid,
  .benefits__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery__item,
  .gallery__item:first-child {
    grid-column: auto;
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
