:root {
  --color-primary: #ffb400;
  --color-primary-dark: #e6a200;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-bg: #ffffff;
  --color-bg-soft: #faf9f7;
  --color-border: #ece8e3;
  --color-footer: #222222;
  --color-blush: #f3e3e0;
  --color-blush-accent: #c48a9e;
  --color-sky: #e3edf3;
  --color-sky-accent: #7a9fb5;
  --color-logo: #b8a48f;
  --font-main: "Nunito Sans", Arial, sans-serif;
  --header-height: 80px;
  --container: min(1140px, calc(100% - 2rem));
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.06);
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  cursor: auto;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
}

address {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.site-logo {
  justify-self: start;
}

.site-logo img {
  width: auto;
  height: 42px;
}

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

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.site-nav__list a {
  display: inline-block;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition);
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  color: var(--color-primary);
}

.site-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switcher {
  position: relative;
}

.lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-bg);
}

.lang-switcher__toggle:hover,
.lang-switcher__toggle:focus-visible {
  border-color: var(--color-primary);
}

.lang-switcher__current-flag,
.lang-switcher__option img {
  border-radius: 2px;
}

.lang-switcher__chevron {
  width: 0.45rem;
  height: 0.45rem;
  border-right: 2px solid var(--color-text-muted);
  border-bottom: 2px solid var(--color-text-muted);
  transform: rotate(45deg) translateY(-1px);
  transition: transform var(--transition);
}

.lang-switcher__toggle[aria-expanded="true"] .lang-switcher__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 160px;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.lang-switcher__menu[hidden] {
  display: none;
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 0;
  border-radius: 8px;
  background: transparent;
  text-align: left;
}

.lang-switcher__option:hover,
.lang-switcher__option:focus-visible,
.lang-switcher__option.is-active {
  background: var(--color-bg-soft);
}

.lang-switcher__option.is-active {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-text);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--color-bg-soft);
}

.hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--color-blush);
}

.hero__media img {
  width: min(100%, 520px);
  margin: 0 auto;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.08));
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem clamp(1.5rem, 5vw, 4rem);
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blush-accent);
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 0 2rem;
  max-width: 34rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.btn--primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-primary-dark);
}

/* Products intro */
.products-intro {
  padding: 5rem 0 2rem;
  text-align: center;
}

.products-intro__inner {
  width: var(--container);
  margin: 0 auto;
}

.products-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
}

.products-intro p {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--color-text-muted);
}

/* Product showcase */
.product-showcase {
  padding: 3rem 0 5rem;
}

.product-showcase--blush {
  background: linear-gradient(180deg, #fff 0%, var(--color-blush) 100%);
}

.product-showcase--sky {
  background: linear-gradient(180deg, #fff 0%, var(--color-sky) 100%);
}

.product-showcase__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.product-showcase__label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-showcase--blush .product-showcase__label {
  color: var(--color-blush-accent);
}

.product-showcase--sky .product-showcase__label {
  color: var(--color-sky-accent);
}

.product-showcase h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
}

.product-showcase__desc {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
}

.product-showcase__includes {
  list-style: none;
}

.product-showcase__includes li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-showcase__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
}

.product-showcase__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.product-showcase__figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.product-showcase__figure--featured {
  grid-column: 1 / -1;
}

.product-showcase__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specs */
.specs {
  padding: 5rem 0;
  background: var(--color-bg-soft);
}

.specs__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.specs h2 {
  margin: 0 0 2rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
}

.specs__block + .specs__block {
  margin-top: 2rem;
}

.specs__block h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.specs__block ul {
  padding-left: 1.1rem;
  color: var(--color-text-muted);
}

.specs__block li + li {
  margin-top: 0.5rem;
}

.specs__certs img {
  width: min(100%, 480px);
  margin: 0 auto;
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: var(--color-bg);
}

.contact__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 300;
}

.contact__lead {
  margin: 0 0 2rem;
  color: var(--color-text-muted);
}

.contact__list {
  list-style: none;
}

.contact__list li + li {
  margin-top: 1.25rem;
}

.contact__label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.contact__list a {
  transition: color var(--transition);
}

.contact__list a:hover,
.contact__list a:focus-visible {
  color: var(--color-primary);
}

.contact__map {
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

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

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--color-footer);
  color: #ffffff;
  text-align: center;
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
}

.site-footer__brand {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: lowercase;
}

.site-footer__distributor,
.site-footer__credit a,
.site-footer__copy {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
}

.site-footer__credit a:hover,
.site-footer__credit a:focus-visible {
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    justify-self: stretch;
    width: 100%;
    padding: 1rem;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
  }

  .hero,
  .product-showcase__inner,
  .specs__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 320px;
    padding: 2rem 1rem;
  }

  .hero__content {
    padding: 2rem 1rem 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
