*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, sans-serif; }
.home-page {
  overflow-x: hidden;
  background-color: transparent;
  background-image:
    radial-gradient(circle at 15% 18%, rgb(242 60 158 / 0.09) 0%, transparent 46%),
    radial-gradient(circle at 86% 58%, rgb(196 230 0 / 0.1) 0%, transparent 44%),
    radial-gradient(circle at 22% 88%, rgb(242 60 158 / 0.06) 0%, transparent 40%);
  background-attachment: scroll;
  background-repeat: no-repeat;
}

.hm-smart-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hm-site-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgb(0 0 0 / 0.06);
  background: rgb(255 255 255 / 0.88);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgb(17 17 17 / 0.03), 0 16px 32px -24px rgb(17 17 17 / 0.18);
}
.hm-site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 80rem; margin: 0 auto;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
}
.hm-site-header__logo {
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: #111; text-decoration: none;
  transition: opacity 0.3s var(--ease-organic, ease);
}
.hm-site-header__logo:hover { opacity: 0.65; }
.hm-site-header__nav { display: flex; align-items: center; gap: 1.5rem; }
.hm-site-header__links { display: none; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 768px) { .hm-site-header__links { display: flex; } }
.hm-site-header__links a {
  font-size: 0.8rem; font-weight: 600; color: #525252;
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.25s var(--ease-organic, ease);
}
.hm-site-header__links a:hover { color: #111; }
.hm-lang-switch { display: flex; gap: 0.5rem; list-style: none; margin: 0; padding: 0; font-size: 0.8rem; font-weight: 700; }
.hm-lang-switch a { color: #a3a3a3; text-decoration: none; transition: color 0.25s var(--ease-organic, ease); }
.hm-lang-switch a:hover { color: #111; }
.hm-lang-switch [aria-current="page"] { color: #111; }
.hm-lang-switch li:not(:last-child)::after { content: '|'; margin-left: 0.5rem; color: #d4d4d4; font-weight: 400; }

/* Form fields: soft ambient shadow at rest, tinted glow on focus instead of a hard outline */
.hm-contact-form input, .hm-contact-form textarea {
  width: 100%; border: 1px solid rgb(17 17 17 / 0.12); border-radius: 6px;
  padding: 0.75rem 0.9rem; font-family: inherit; font-size: 0.9375rem;
  color: #111; background: #fff;
  box-shadow: 0 1px 2px rgb(17 17 17 / 0.03);
  transition: box-shadow 0.35s var(--ease-organic, ease), border-color 0.35s var(--ease-organic, ease);
}
.hm-contact-form input:focus, .hm-contact-form textarea:focus {
  outline: none; border-color: var(--citrus-fuchsia, #F23C9E);
  box-shadow: 0 0 0 3px rgb(242 60 158 / 0.12), 0 8px 20px -6px rgb(242 60 158 / 0.14);
}
.hm-contact-form label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.35rem; }

/* Primary button: deep contact shadow that grows and lifts on hover */
.hm-btn-primary {
  display: inline-block; background: #111; color: #fff;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2rem; border: none; border-radius: 3px; cursor: pointer;
  box-shadow: 0 10px 24px -8px rgb(17 17 17 / 0.35);
  transition: background 0.35s var(--ease-organic, ease),
              transform 0.4s var(--ease-organic, ease),
              box-shadow 0.4s var(--ease-organic, ease);
}
.hm-btn-primary:hover {
  background: #262626;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px -10px rgb(17 17 17 / 0.42);
}
.hm-btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgb(17 17 17 / 0.4);
}

.hm-site-footer {
  border-top: 1px solid #e5e5e5; background: #fff;
  padding: 1.5rem; text-align: center; font-size: 0.8125rem; color: #737373;
}
