/* Sensory Marketing Solution — design system (ported from Site SMS v2.dc.html) */

body {
  margin: 0;
  background: #05090F;
  font-family: 'Hanken Grotesk', sans-serif;
  color: #EDEAE2;
}

a {
  color: #9CC7AE;
  text-decoration: none;
}

a:hover {
  color: #EDEAE2;
}

main {
  display: block;
}

img {
  max-width: 100%;
}

/* ===================== Keyframes ===================== */

@keyframes mistRise {
  0% { opacity: 0; transform: translateY(30px) scale(.7); }
  18% { opacity: .85; }
  100% { opacity: 0; transform: translateY(-130px) scale(1.8); }
}

@keyframes breathe {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 3%) scale(1.08); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes fogA {
  0% { transform: translateX(-12%) translateY(0); }
  50% { transform: translateX(10%) translateY(-3%); }
  100% { transform: translateX(-12%) translateY(0); }
}

@keyframes fogB {
  0% { transform: translateX(10%) scale(1.1); }
  50% { transform: translateX(-12%) scale(1.22); }
  100% { transform: translateX(10%) scale(1.1); }
}

/* ===================== Header ===================== */

.sms-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}

.sms-header.is-scrolled {
  background: rgba(5, 9, 15, .72);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(237, 234, 226, .07);
}

.sms-header__logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.sms-header.is-scrolled .sms-header__logo {
  opacity: 1;
  pointer-events: auto;
}

.sms-header__logo img,
.sms-nav-link,
.sms-lang-toggle,
.sms-burger span {
  filter: drop-shadow(0 2px 10px rgba(5, 9, 15, .7));
}

.sms-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  gap: 16px;
}

.sms-header__logo img {
  height: 44px;
  width: auto;
  cursor: pointer;
}

.sms-nav--desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  letter-spacing: .03em;
  font-weight: 300;
}

.sms-nav-link {
  color: rgba(237, 234, 226, .8);
  cursor: pointer;
  padding-bottom: 4px;
  transition: color .25s;
  border-bottom: 1px solid transparent;
}

.sms-nav-link:hover {
  color: #9CC7AE;
}

.sms-nav-link.is-active {
  color: #9CC7AE;
  border-bottom-color: #9CC7AE;
}

.sms-lang-toggle {
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(237, 234, 226, .5);
  cursor: pointer;
  transition: color .25s;
}

.sms-lang-toggle:hover {
  color: #EDEAE2;
}

.sms-nav--mobile {
  display: none;
  align-items: center;
  gap: 18px;
}

.sms-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.sms-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #EDEAE2;
}

.sms-burger span:last-child {
  width: 16px;
}

@media (max-width: 900px) {
  .sms-nav--desktop { display: none; }
  .sms-nav--mobile { display: flex; }
}

/* ===================== Mobile menu overlay ===================== */

.sms-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(5, 9, 15, .97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  padding: 24px 28px;
  color: #EDEAE2;
}

.sms-mobile-menu.is-open {
  display: flex;
}

.sms-mobile-menu__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sms-mobile-menu__logo {
  height: 40px;
  width: auto;
}

.sms-mobile-menu__close {
  font-size: 26px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  color: #EDEAE2;
}

.sms-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 64px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
}

.sms-mobile-menu__cta {
  color: #9CC7AE;
}

/* ===================== Language toast ===================== */

.sms-lang-note {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translate(-50%, 16px);
  z-index: 70;
  background: rgba(20, 35, 58, .95);
  border: 1px solid rgba(237, 234, 226, .15);
  color: #EDEAE2;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}

.sms-lang-note.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===================== Buttons ===================== */

.sms-btn-primary {
  display: inline-block;
  background: #2E7D4F;
  color: #fff;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 0 40px rgba(46, 125, 79, .4);
}

.sms-btn-primary:hover {
  background: #38995F;
  box-shadow: 0 0 60px rgba(46, 125, 79, .65);
  transform: translateY(-2px);
  color: #fff;
}

.sms-btn-outline {
  display: inline-block;
  border: 1px solid rgba(237, 234, 226, .25);
  color: #EDEAE2;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s;
}

.sms-btn-outline:hover {
  background: #2E7D4F;
  border-color: #2E7D4F;
  box-shadow: 0 0 30px rgba(46, 125, 79, .4);
  color: #EDEAE2;
}

.sms-btn-outline--soft:hover {
  background: rgba(237, 234, 226, .08);
  border-color: rgba(237, 234, 226, .25);
  box-shadow: none;
}

/* ===================== Cards ===================== */

.sms-card-sector {
  transition: all .35s;
  cursor: pointer;
}

.sms-card-sector:hover {
  transform: translateY(-8px);
  border-color: rgba(156, 199, 174, .4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(46, 125, 79, .15);
}

.sms-card-method {
  transition: all .35s;
}

.sms-card-method:hover {
  border-color: rgba(156, 199, 174, .35);
  background: rgba(237, 234, 226, .06);
}

.sms-card-fragrance-home {
  transition: all .35s;
  cursor: pointer;
}

.sms-card-fragrance-home:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  border-color: rgba(237, 234, 226, .3);
}

.sms-card-fragrance {
  transition: all .35s;
  cursor: pointer;
}

.sms-card-fragrance:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  border-color: rgba(237, 234, 226, .3);
}

.sms-card-testimonial {
  transition: all .35s;
}

.sms-card-testimonial:hover {
  border-color: rgba(156, 199, 174, .35);
}

.sms-format-card {
  transition: all .35s;
}

.sms-format-card:hover {
  border-color: rgba(156, 199, 174, .35);
}

/* ===================== Form fields ===================== */

.sms-input,
.sms-select,
.sms-textarea {
  border: 1px solid rgba(237, 234, 226, .15);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  color: #EDEAE2;
  background: rgba(237, 234, 226, .05);
  outline: none;
  transition: border-color .25s;
  box-sizing: border-box;
  width: 100%;
}

.sms-select {
  background: rgba(20, 32, 48, 1);
}

.sms-textarea {
  resize: vertical;
}

.sms-input:focus,
.sms-select:focus,
.sms-textarea:focus {
  border-color: #9CC7AE;
}

.sms-input::placeholder,
.sms-textarea::placeholder {
  color: rgba(237, 234, 226, .4);
}

/* ===================== Hero badge ===================== */

.sms-hero-badge {
  transition: all .3s;
}

.sms-hero-badge:hover {
  background: #2E7D4F;
  color: #fff;
}

/* ===================== Scroll reveal ===================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ===================== Footer ===================== */

.sms-footer {
  border-top: 1px solid rgba(237, 234, 226, .07);
  background: #03060B;
  color: rgba(237, 234, 226, .7);
}

.sms-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 28px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
}

.sms-footer__brand {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sms-footer__brand img {
  height: 56px;
  width: auto;
  align-self: flex-start;
}

.sms-footer__brand p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
  color: rgba(237, 234, 226, .5);
}

.sms-footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.sms-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
}

.sms-footer__heading {
  font-size: 11px;
  letter-spacing: .24em;
  color: #7FB598;
  margin-bottom: 4px;
}

.sms-footer__col a {
  color: rgba(237, 234, 226, .7);
  transition: color .25s;
}

.sms-footer__col a:hover {
  color: #9CC7AE;
}

.sms-footer__cta {
  color: #9CC7AE !important;
}

.sms-footer__cta:hover {
  color: #EDEAE2 !important;
}

.sms-footer__legal {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(237, 234, 226, .35);
}
