.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--container-pad);
  transition: background var(--t-base), backdrop-filter var(--t-base), border-bottom var(--t-base), box-shadow var(--t-base), opacity var(--t-base), transform var(--t-base);
  color: var(--c-blush);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.nav--scrolled {
  background: rgba(255, 245, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 107, 138, 0.12);
  box-shadow: 0 2px 20px rgba(26, 14, 20, 0.06);
  color: var(--c-charcoal);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(249, 208, 208, 0.5);
}

.nav--scrolled .nav__logo { border-color: rgba(240, 107, 138, 0.4); }

.nav__name {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: var(--fs-12);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-charcoal);
  overflow: hidden;
  text-align: center;
}

.hero__bloom {
  position: absolute;
  width: clamp(500px, 60vw, 900px);
  height: clamp(500px, 60vw, 900px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 107, 138, 0.2) 0%, rgba(192, 64, 96, 0.08) 45%, transparent 72%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: bloom 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bloom {
  from { transform: translate(-50%, -50%) scale(0.88); opacity: 0.7; }
  to   { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 740px;
  padding: var(--nav-height) var(--container-pad) var(--sp-16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.hero__logo-wrap {
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__logo-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(249, 208, 208, 0.35);
  filter: drop-shadow(0 0 32px rgba(240, 107, 138, 0.4));
  margin-bottom: var(--sp-4);
}

.hero__label {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: var(--fs-11);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(249, 208, 208, 0.5);
  animation: fadeUp 1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(var(--fs-56), 8vw, var(--fs-88));
  line-height: 1.08;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}

.hero__line {
  display: block;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__line:nth-child(1) { animation-delay: 0.3s; }
.hero__line:nth-child(2) { animation-delay: 0.48s; }

.hero__line--italic {
  font-style: italic;
  color: var(--c-coral);
}

.hero__sub {
  font-size: clamp(var(--fs-14), 2vw, var(--fs-16));
  font-weight: 300;
  color: rgba(249, 208, 208, 0.65);
  max-width: 480px;
  line-height: 1.85;
  margin-top: var(--sp-2);
  animation: fadeUp 1s 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  animation: fadeUp 1s 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(249, 208, 208, 0.45));
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero__scroll-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(249, 208, 208, 0.5);
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  40.1%{ transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  80%  { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.services {
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-32));
  background: var(--c-cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-8);
}

.products {
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-32));
  background: var(--c-white);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.product-card {
  background: var(--c-cream);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t-spring);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-coral);
}

.product-card__top {
  background: linear-gradient(135deg, var(--c-coral) 0%, var(--c-coral-dark) 100%);
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
  position: relative;
  min-height: 90px;
}

.product-card__top::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 24px;
  background: var(--c-cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.product-card__top--img {
  padding: 0;
  min-height: 0;
  background: var(--c-cream-mid);
}

.product-card__top--img::after { display: none; }

.product-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.product-card__top--img .product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(240, 107, 138, 0.88);
  backdrop-filter: blur(6px);
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(255,255,255,0.22);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: var(--fs-10);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.35);
}

.product-card__body {
  padding: var(--sp-4) var(--sp-6) var(--sp-3);
  flex: 1;
}

.product-card__name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-24);
  line-height: 1.15;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-2);
}

.product-card__desc {
  font-size: var(--fs-13, 0.8125rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26, 14, 20, 0.55);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-6) var(--sp-6);
  gap: var(--sp-2);
}

.product-card__price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-24);
  color: var(--c-coral);
  line-height: 1;
}

.product-card__price small {
  font-family: var(--f-body);
  font-size: var(--fs-10);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(26, 14, 20, 0.4);
  margin-left: 2px;
}

.product-card__cta {
  font-family: var(--f-body);
  font-size: var(--fs-11);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-coral);
  border: 1px solid rgba(240, 107, 138, 0.35);
  border-radius: var(--r-sm);
  padding: 0.45rem 1rem;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.product-card__cta:hover {
  background: var(--c-coral);
  color: var(--c-white);
  border-color: var(--c-coral);
}

@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .products__grid { grid-template-columns: 1fr; }
}

.contact {
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-32));
  background: var(--c-charcoal);
  color: var(--c-cream);
}

.contact .section-header__label { color: rgba(249, 208, 208, 0.55); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-12), 6vw, var(--sp-24));
  align-items: center;
}

.contact__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(var(--fs-40), 5vw, var(--fs-56));
  line-height: 1.1;
  color: var(--c-cream);
  margin-block: var(--sp-4) var(--sp-8);
}

.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5, 1.25rem);
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  font-size: var(--fs-15, 0.9375rem);
  font-weight: 300;
  color: rgba(255, 245, 248, 0.78);
  line-height: 1.6;
}

.contact__item a { transition: color var(--t-fast); }
.contact__item a:hover { color: var(--c-coral); }

.contact__icon {
  width: 20px;
  height: 20px;
  color: var(--c-coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__map {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(240, 107, 138, 0.18);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.3);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.footer {
  background: var(--c-charcoal-mid);
  border-top: 1px solid rgba(240, 107, 138, 0.1);
  padding-block: var(--sp-8);
}

.footer__content {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.7;
}

.footer__copy {
  font-size: var(--fs-12);
  font-weight: 300;
  color: rgba(255, 245, 248, 0.4);
  letter-spacing: 0.04em;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.footer__social-link {
  color: rgba(255, 245, 248, 0.3);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
}
.footer__social-link:hover { color: #1877F2; }

.footer__admin {
  font-size: var(--fs-11);
  font-weight: 400;
  color: rgba(255, 245, 248, 0.25);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--t-fast);
}
.footer__admin:hover { color: var(--c-coral); }

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(var(--fs-40), 11vw, var(--fs-72)); }
  .footer__content { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .services__grid { grid-template-columns: 1fr; }
}
