html,
body {
  height: 100%;
  margin: 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #000;
  color: #fff;
  font: 16px/1.5 Arial, sans-serif;
  text-align: center;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

:root {
  --header-h: 72px;
}
body.has-fixed-header {
  padding-top: var(--header-h);
}
[id] {
  scroll-margin-top: var(--header-h);
}

header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 25px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-header.scrolled {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.lang-toggle {
  -webkit-appearance: none;
  appearance: none;
  margin-right: 10px;
  padding: 11px 12px;
  border: 1px solid #ffffff83;
  border-radius: 6px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  transition: 0.2s;
}
.lang-toggle:hover {
  background: #fff;
  color: #000;
}

.about-section {
  margin: 13% 18%;
}

.burger {
  position: relative;
  width: 44px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.burger-bar,
.burger-bar::before,
.burger-bar::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.25s;
  position: relative;
}
.burger-bar::before {
  position: absolute;
  top: -6px;
}
.burger-bar::after {
  position: absolute;
  top: 6px;
}
.burger[aria-expanded="true"] .burger-bar {
  background: transparent;
}
.burger[aria-expanded="true"] .burger-bar::before {
  transform: translateY(6px) rotate(45deg);
}
.burger[aria-expanded="true"] .burger-bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1400;
}
.backdrop.show {
  opacity: 1;
  pointer-events: all;
}

.offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 420px);
  height: 100dvh;
  background: #000;
  color: #fff;
  border-left: 1px solid #ffffff12;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  z-index: 1500;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.offcanvas.open {
  transform: translateX(0);
}

.offcanvas header.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px;
  position: sticky;
  top: 0;
  background: inherit;
  z-index: 1;
}
.menu-title {
  display: inline-block;
}
.menu-top .menu-title img {
  display: block;
  height: 20px;
  width: auto;
  max-width: 100%;
}

.menu-close-icon {
  position: relative;
  border: 1px solid #ffffff83;
  border-radius: 8px;
  background: transparent;
  width: 44px;
  height: 40px;
  cursor: pointer;
}
.menu-close-icon::before,
.menu-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
}
.menu-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-btn-box {
  margin: 0 9px;
}
.contact-btn {
  padding: 10px 24px;
  border: 1px solid #ffffff83;
  border-radius: 6px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 90%;
  width: 100%;
}
.contact-btn:hover,
.contact-btn:focus {
  background: #fff;
  color: #000;
}

.menu-links {
  list-style: none;
  padding: 0;
  margin: 0 9px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-links a {
  color: #fff;
  text-decoration: none;
  border: 1px solid #ffffff83;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 90%;
  transition: 0.2s;
  display: block;
  text-align: center;
}
.menu-links a:hover,
.menu-links a:focus {
  background: #fff;
  color: #000;
}

main {
  display: grid;
  place-items: center;
  padding: 16px;
}

.brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: 3% auto;
}

.lemaronLogo {
  margin: 0 10px 50px;
  width: 50%;
}
.lemaronName {
  text-align: center;
  margin: 10px;
  width: 100%;
}

.lemaronText {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  margin: 25px auto 0;
}
.lemaronText img {
  display: block;
  max-width: 85%;
  height: 100%;
  width: auto;
  height: auto;
}

#backToTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
#backToTop:hover {
  transform: translateY(-2px);
}
#backToTop.show {
  display: flex;
  opacity: 1;
}
#backToTop svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

html {
  scroll-behavior: smooth;
}

.seo-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

@media (max-width: 768px) {
  .menu-title {
    font-size: 20px;
  }
  .menu-links a {
    padding: 12px;
    font-size: 95%;
  }

  main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    flex-direction: column;
  }

  .about-section {
    margin: auto 10px;
  }

  .brand-wrap {
    width: 100%;
    margin: 24% 10px;
  }
  .lemaronLogo {
    margin: 5px auto 30px;
    max-width: 90vw;
    width: 50%;
  }
  .lemaronName {
    margin: 10px auto 10px;
    max-width: 90vw;
    width: 90%;
  }

  .lemaronText {
    height: 25px;
    margin: 10px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas,
  .backdrop,
  .burger-bar {
    transition: none !important;
  }
}

.seo-section {
  max-width: 900px;
  font-size: 1px;
  line-height: 1.6;
  color: #000000;
  text-align: left;
}

.seo-section h1 {
  font-size: 1px;
  margin-bottom: 1px;
  color: #000000;
  text-align: center;
}

.seo-section p {
  margin-bottom: 1px;
}
