/* =========================================================
   AM FOKUS - v17 CSS
   Cleaned, normalized, and visually unchanged
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */
:root {
  --bg: #000;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted-2: rgba(255, 255, 255, 0.66);

  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.1);
  --line-3: rgba(255, 255, 255, 0.12);

  --focus: 2px solid rgba(255, 255, 255, 0.65);

  --max: 1120px;
  --pad: 12px;

  --z-header: 9990;
  --z-drawer: 10000;

  --hdr-h: 112px;
  --hdr-h-scrolled: 72px;

  --adminbar: 0px;
  --scroll-offset: calc(var(--hdr-h-scrolled) + var(--adminbar) + 18px);
}

body.admin-bar {
  --adminbar: 32px;
}

@media (max-width: 782px) {
  body.admin-bar {
    --adminbar: 46px;
  }
}

/* =========================================================
   TEMPLATE SCOPE RESET
========================================================= */
.photo-home {
  background: var(--bg);
  color: var(--text);
}

.photo-home picture {
  display: block;
  line-height: 0;
}

.photo-home picture > img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-home .container {
  max-width: var(--max);
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.photo-home a,
.photo-home a:visited,
.photo-home a:active,
.photo-home a:hover,
.photo-home a:focus-visible {
  color: inherit;
  text-decoration: none;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

#service,
#packages,
#contact {
  scroll-margin-top: var(--scroll-offset);
}

/* =========================================================
   BASE FOCUS
========================================================= */
.am-nav__link:focus-visible,
.navlink:focus-visible,
.plainlink:focus-visible,
.am-navtoggle:focus-visible,
.am-mobile-nav__link:focus-visible,
.am-mobile-nav__lang:focus-visible,
.am-langswitch__link:focus-visible,
.am-brand:focus-visible,
.form button:focus-visible,
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

/* =========================================================
   HEADER
========================================================= */
#wrapper-navbar {
  position: relative;
  z-index: var(--z-header);
}

.am-header {
  position: fixed;
  top: var(--adminbar);
  right: 0;
  left: 0;
  z-index: var(--z-header);
  display: flex;
  align-items: center;
  height: var(--hdr-h);
  background: rgba(0, 0, 0, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition:
    height 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    backdrop-filter 0.22s ease;
}

.am-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

.am-brand,
.am-brand:visited,
.am-brand:active,
.am-brand:hover,
.am-brand:focus-visible {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.am-brand__logo svg {
  display: block;
  width: 250px;
  height: auto;
  transform: scale(1);
  transform-origin: left center;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease;
}

.am-brand__logo svg path:nth-of-type(1) {
  fill: #fff;
}

.am-brand__logo svg path:nth-of-type(2) {
  fill: #111;
}

.am-brand__logo svg path:nth-of-type(3) {
  fill: #fff;
}

.am-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.am-nav__link,
.am-nav__link:visited,
.am-nav__link:active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    font-weight 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;
}

.am-nav__link:hover,
.am-nav__link:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.am-nav__link:hover {
  font-weight: 800;
}

.am-nav__arr {
  opacity: 0.86;
  transform: translateX(0);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.am-nav__link:hover .am-nav__arr,
.am-nav__link:focus-visible .am-nav__arr {
  opacity: 1;
  transform: translateX(3px);
}

.am-header.is-scrolled {
  height: var(--hdr-h-scrolled);
  background: rgba(0, 0, 0, 0.62);
  border-bottom-color: var(--line-2);
  backdrop-filter: blur(10px);
}

.am-header.is-scrolled .am-brand {
  gap: 0;
}

.am-header.is-scrolled .am-brand__logo svg {
  transform: scale(0.45);
}

.am-header.is-scrolled .am-brand__logo svg path:nth-of-type(3) {
  opacity: 0;
  visibility: hidden;
}

/* =========================================================
   LANGUAGE SWITCH
========================================================= */
.am-langswitch {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 1.2rem;
}

.am-langswitch__link,
.am-langswitch__link:visited,
.am-langswitch__link:active {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.6;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.am-langswitch__link:hover,
.am-langswitch__link:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  opacity: 1;
}

.am-langswitch__link.is-active {
  opacity: 1;
}

/* =========================================================
   MOBILE NAV TOGGLE
========================================================= */
.am-navtoggle {
  display: none;
  padding: 10px;
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  line-height: 0;
}

.am-navtoggle__lines {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 18px;
}

.am-navtoggle__lines > span,
.am-navtoggle__lines > span::before,
.am-navtoggle__lines > span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.18s ease,
    top 0.18s ease,
    opacity 0.18s ease;
}

.am-navtoggle__lines > span {
  top: 8px;
}

.am-navtoggle__lines > span::before {
  top: -8px;
}

.am-navtoggle__lines > span::after {
  top: 8px;
}

.am-header.is-open .am-navtoggle__lines > span {
  opacity: 0;
}

.am-header.is-open .am-navtoggle__lines > span::before {
  top: 0;
  opacity: 1;
  transform: rotate(45deg);
}

.am-header.is-open .am-navtoggle__lines > span::after {
  top: 0;
  opacity: 1;
  transform: rotate(-45deg);
}

/* =========================================================
   MOBILE NAV
========================================================= */
.am-mobile-nav {
  position: fixed;
  inset: 0;
  top: var(--adminbar);
  z-index: var(--z-drawer);
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.am-mobile-nav[hidden] {
  display: none;
}

.am-mobile-nav.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.am-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  width: min(52vw, 320px);
  height: 100%;
  padding: 18px 14px;
  background: #0b0b0b;
  border-left: 1px solid var(--line-2);
  opacity: 0;
  transform: translateX(14px);
  transition:
    transform 0.16s ease,
    opacity 0.16s ease;
}

.am-mobile-nav.is-open .am-mobile-nav__panel {
  opacity: 1;
  transform: translateX(0);
}

.am-mobile-nav__inner {
  display: grid;
  gap: 0;
  width: 100%;
  padding-top: 6px;
}

.am-mobile-nav__link,
.am-mobile-nav__link:visited,
.am-mobile-nav__link:active {
  display: block;
  padding: 14px 10px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.am-mobile-nav__link + .am-mobile-nav__link {
  border-top: 1px solid var(--line);
}

.am-mobile-nav__link:hover,
.am-mobile-nav__link:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.am-mobile-nav__langs {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.am-mobile-nav__lang,
.am-mobile-nav__lang:visited,
.am-mobile-nav__lang:active {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.7;
}

.am-mobile-nav__lang:hover,
.am-mobile-nav__lang:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  opacity: 1;
}

.am-mobile-nav__lang.is-active {
  opacity: 1;
}

html.am-nav-open,
html.am-nav-open body {
  overflow: hidden;
}

/* =========================================================
   TYPE
========================================================= */
.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.h2 {
  margin: 0 0 14px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(30px, 3.3vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.section--intro .copy .h2 {
  margin-top: 26px;
}

.p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.85;
}

.section {
  padding: clamp(58px, 6vw, 102px) 0;
  border-top: 1px solid var(--line);
}

.section--intro {
  padding-bottom: clamp(28px, 3.2vw, 54px);
}

.desktop-break {
  display: none;
}

@media (min-width: 992px) {
  .desktop-break {
    display: inline;
  }
}

/* =========================================================
   HERO
========================================================= */
.hero {
  position: relative;
  min-height: clamp(640px, 90vh, 960px);
  overflow: hidden;
  background: var(--bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media > picture {
  position: absolute;
  inset: 0;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1.18);
  transform-origin: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(780px 520px at 18% 78%, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0) 62%),
    radial-gradient(900px 720px at 20% 30%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.6)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.06) 55%, rgba(0, 0, 0, 0.64));
}

.hero__grain,
.contact__grain,
.legal-hero__grain {
  position: absolute;
  inset: -12%;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.hero__grain {
  opacity: 0.16;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: inherit;
  padding: clamp(48px, 6vw, 84px) 0;
}

.hero__content {
  max-width: 980px;
}

.hero__eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 18px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(44px, 6.1vw, 102px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.hero__rule {
  width: min(640px, 96%);
  height: 1px;
  margin: 12px 0 6px;
  background: rgba(255, 255, 255, 0.18);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.has-js .hero__rule {
  transform: scaleX(0);
}

html.has-js .is-line-visible {
  transform: scaleX(1);
}

.scrollhint {
  position: absolute;
  right: 14px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
}

.scrollhint__line {
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.35);
  transform-origin: top;
  animation: scrollline 1.8s ease-in-out infinite;
}

.scrollhint__txt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes scrollline {
  0% {
    opacity: 0.35;
    transform: scaleY(0.25);
  }

  50% {
    opacity: 0.9;
    transform: scaleY(1);
  }

  100% {
    opacity: 0.35;
    transform: scaleY(0.25);
  }
}

/* =========================================================
   LINK SYSTEM
========================================================= */
.navlink,
.navlink:visited,
.navlink:active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-decoration: none;
  transition:
    font-weight 0.15s ease,
    color 0.15s ease,
    opacity 0.15s ease;
}

.navlink__txt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: font-weight 0.15s ease;
}

.navlink__arr {
  opacity: 0.86;
  transform: translateX(0);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.navlink:hover,
.navlink:focus-visible {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.navlink:hover {
  font-weight: 800;
}

.navlink:hover .navlink__txt,
.navlink:focus-visible .navlink__txt {
  font-weight: 800;
}

.navlink:hover .navlink__arr,
.navlink:focus-visible .navlink__arr {
  opacity: 1;
  transform: translateX(3px);
}

.plainlink,
.plainlink:visited,
.plainlink:active {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  transition:
    font-weight 0.15s ease,
    opacity 0.15s ease;
}

.plainlink:hover,
.plainlink:focus-visible {
  font-weight: 800;
  text-decoration: none;
}

/* =========================================================
   TRUSTBAR
========================================================= */
.trustbar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trustbar__inner {
  padding: 8px 0;
}

.trustbar__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trustbar__item {
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trustbar__item + .trustbar__item::before {
  content: "·";
  margin-right: 18px;
  opacity: 0.35;
}

/* =========================================================
   GRID + SWAP
========================================================= */
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 50px);
  align-items: start;
}

.copy,
.media {
  min-width: 0;
}

.bullets {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bullets__title {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.bullets ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.9;
}

.bullets__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 22px;
  margin-bottom: 64px;
}

.mediaframe {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.mediaframe--swap {
  width: 100%;
  min-height: clamp(520px, 70vh, 900px);
}

.mediaframe--swap .swapimg__wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mediaframe--swap .swapimg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.mediaframe--swap .swapimg.is-active {
  opacity: 1;
}

.shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(900px 650px at 65% 35%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.4));
}

/* =========================================================
   STRIPS
========================================================= */
.strips {
  border-top: 1px solid var(--line);
}

.strips__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-right: 1px solid var(--line);
}

.strip:last-child {
  border-right: none;
}

.strip img {
  display: block;
  width: 100%;
  height: clamp(320px, 50vh, 620px);
  background: var(--bg);
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  will-change: transform;
}

/* =========================================================
   PACKAGES
========================================================= */
.section--packages {
  padding-bottom: clamp(64px, 6vw, 110px);
}

.pkgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.pkg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 320px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: background, color;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.pkg--1 {
  background: rgba(255, 255, 255, 0.07);
}

.pkg--2 {
  background: rgba(255, 255, 255, 0.045);
}

.pkg--3 {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.16);
}

.pkg__head,
.pkg__price,
.pkg .badge {
  position: relative;
  z-index: 3;
}

.pkg__name {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pkg__for {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.pkg__price {
  margin-top: 16px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 40px;
  letter-spacing: -0.04em;
}

.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.badge--delay {
  opacity: 0;
  transform: translate3d(0, 6px, 0);
  animation: badgeIn 0.6s ease forwards;
  animation-delay: 0.65s;
}

@keyframes badgeIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.pkg__cta {
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.pkg__details {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 18px;
  padding-top: 92px;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.pkg__line {
  height: 1px;
  margin: 10px 0 14px;
  background: rgba(255, 255, 255, 0.16);
}

.pkg__big {
  margin: 0 0 10px;
  font-weight: 700;
}

.pkg__details ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.pkg:hover {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  color: #111;
}

.pkg:hover .pkg__for {
  color: rgba(0, 0, 0, 0.7);
}

.pkg:hover .pkg__cta {
  opacity: 0;
}

.pkg:hover .badge {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.14);
  color: rgba(0, 0, 0, 0.85);
}

.pkg:hover .pkg__details {
  background: #fff;
  color: #111;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pkg:hover .pkg__line {
  background: rgba(0, 0, 0, 0.16);
}

.pkg:hover .pkg__details ul {
  color: rgba(0, 0, 0, 0.72);
}

.pkg:hover .pkg__price,
.pkg:hover .badge,
.pkg:hover .badge--delay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transition: none;
}

.packages-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* =========================================================
   FAQ
========================================================= */
.section--faq {
  padding-top: clamp(58px, 6vw, 96px);
  padding-bottom: clamp(58px, 6vw, 96px);
}

.faq {
  margin-top: 18px;
  border-top: 1px solid var(--line-2);
}

.faq__item {
  border-bottom: 1px solid var(--line-2);
}

.faq__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
}

.faq__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.faq__panel {
  padding: 0 0 18px;
}

.faq__content {
  max-width: 860px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

.faq__item.is-open .faq__icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.92);
  transform: rotate(45deg);
}

/* =========================================================
   CONTACT
========================================================= */
.contact {
  position: relative;
  overflow: visible;
  padding: clamp(64px, 6vw, 110px) 0;
  border-top: 1px solid var(--line-2);
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.contact__slidewrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.35s ease;
}

.contact__slide.is-active {
  opacity: 1;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 700px at 25% 30%, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.9)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.64) 50%, rgba(0, 0, 0, 0.86));
}

.contact__grain {
  opacity: 0.16;
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 52px);
  align-items: start;
}

.logo-wrap,
.contact-logo {
  display: inline-block;
  overflow: visible;
}

.contact-logo svg {
  display: block;
  width: min(520px, 100%);
  height: auto;
  max-width: none;
  overflow: visible;
}

.contact-logo svg path:nth-of-type(1) {
  fill: #fff;
}

.contact-logo svg path:nth-of-type(2) {
  fill: #111;
}

.contact-logo svg path:nth-of-type(3) {
  fill: #fff;
  opacity: 1;
  visibility: visible;
}

.contact__info {
  margin-top: 28px;
}

.contact__row {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
}

.langs {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: left;
}

.form {
  padding: 0;
  background: transparent;
}

.form .row {
  margin-bottom: 12px;
}

.form label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form input,
.form textarea,
.form select,
.form button {
  font: inherit;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 12px;
  appearance: none;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  color: var(--text);
  outline: none;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: rgba(255, 255, 255, 0.34);
}

.form button {
  display: block;
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.form button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-1px);
}

.form__note {
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* =========================================================
   REVEAL
========================================================= */
.js-reveal {
  opacity: 1;
  transform: none;
}

html.has-js .js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html.has-js .is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   FOOTER
========================================================= */
.am-footer {
  padding: 22px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.am-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.am-footer__left {
  flex: 0 0 auto;
}

.am-footer__right {
  display: flex;
  gap: 22px;
}

.am-footer a,
.am-footer a:visited,
.am-footer a:active {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.am-footer a:hover,
.am-footer a:focus-visible {
  opacity: 1;
  text-decoration: none;
}

@media (max-width: 780px) {
  .am-footer {
    padding: 18px 0;
  }

  .am-footer__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .am-footer__right {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 18px;
  }

  .am-footer__left {
    order: 2;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
  }

  .am-footer a,
  .am-footer a:visited,
  .am-footer a:active {
    white-space: nowrap;
  }
}

/* =========================================================
   LEGAL PAGE
========================================================= */
.legal-hero {
  position: relative;
  min-height: clamp(420px, 55vh, 620px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.legal-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.legal-bg {
  position: absolute;
  inset: 0;
}

.legal-bg .contact__slidewrap,
.legal-bg .contact__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.legal-bg .contact__slide {
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 900ms ease;
}

.legal-bg .contact__slide.is-active {
  opacity: 1;
}

.legal-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 700px at 25% 30%, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.22) 55%, rgba(0, 0, 0, 0.72));
}

.legal-hero__grain {
  z-index: 2;
  opacity: 0.14;
}

.legal-hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: inherit;
  padding: calc(var(--hdr-h) + 34px) 0 46px;
}

.legal-hero__title {
  margin: 0 0 10px;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section--legal {
  border-top: 0;
}

.legal {
  max-width: 860px;
}

.legal__content {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.legal__content h2 {
  margin: 22px 0 10px;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.legal__content p {
  margin: 0 0 14px;
}

.legal__content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__back {
  margin-top: 26px;
}

.legal__fineprint {
  max-width: 860px;
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.85;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 980px) {
  .am-langswitch {
    display: none;
  }
}

@media (max-width: 780px) {
  :root {
    --pad: 16px;
    --hdr-h: 64px;
    --hdr-h-scrolled: 56px;
    --scroll-offset: calc(var(--hdr-h-scrolled) + var(--adminbar) + 14px);
  }

  /* HEADER */
  #wrapper-navbar {
    position: relative;
    z-index: 10020;
  }

  .am-header {
    position: fixed;
    top: var(--adminbar);
    right: 0;
    left: 0;
    z-index: 10020;
    height: var(--hdr-h);
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.06) 58%,
      rgba(0, 0, 0, 0) 100%
    );
    border-bottom: 0;
    backdrop-filter: none;
    box-shadow: none;
  }

  .am-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    min-height: var(--hdr-h);
  }

  .am-header.is-scrolled {
    height: var(--hdr-h-scrolled);
    background: rgba(0, 0, 0, 0.24);
    border-bottom: 0;
    backdrop-filter: blur(8px);
    box-shadow: none;
  }

  .am-brand {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 52px);
    gap: 0;
  }

  .am-brand__logo {
    display: block;
    min-width: 0;
    max-width: 100%;
  }

  .am-brand__logo svg {
    width: 146px;
    max-width: 100%;
    height: auto;
  }

  .am-header.is-scrolled .am-brand__logo svg {
    transform: scale(0.8);
  }

  .am-navtoggle {
    position: relative;
    z-index: 10021;
    display: inline-flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
  }

  .am-navtoggle__lines {
    width: 22px;
    height: 16px;
  }

  .am-navtoggle__lines > span {
    top: 7px;
  }

  .am-navtoggle__lines > span::before {
    top: -7px;
  }

  .am-navtoggle__lines > span::after {
    top: 7px;
  }

  .am-nav--desktop {
    display: none;
  }

  /* MOBILE DRAWER */
  .am-mobile-nav {
    position: fixed;
    inset: 0;
    top: var(--adminbar);
    z-index: 10019;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease;
  }

  .am-mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    width: min(58vw, 248px);
    height: 100%;
    padding: calc(var(--hdr-h) + 10px) 12px 14px;
    background: rgba(11, 11, 11, 0.68);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateX(14px);
    transition:
      transform 0.16s ease,
      opacity 0.16s ease;
  }

  .am-mobile-nav__inner {
    width: 100%;
    padding-top: 0;
  }

  /* HERO - HOMEPAGE FIX */
  .hero {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding-top: 0;
    background: var(--bg);
  }

  .hero__media {
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    aspect-ratio: 16 / 11;
  }

  .hero__media > picture {
    position: absolute;
    inset: 0;
  }

  .hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    will-change: auto;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.16),
        rgba(0, 0, 0, 0.06) 38%,
        rgba(0, 0, 0, 0.34)
      ),
      radial-gradient(
        520px 320px at 72% 44%,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.18)
      );
  }

  .hero__grain {
    opacity: 0.11;
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    display: block;
    min-height: auto;
    padding: 18px 0 22px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__eyebrow {
    margin: 0 0 10px;
  }

  .hero__title {
    margin: 0 0 14px;
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1.02;
  }

  .hero__rule {
    width: min(92%, 420px);
    margin: 0;
  }

  .scrollhint {
    display: none;
  }

  /* CONTENT */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section--intro .media {
    display: none;
  }

  .section {
    padding: 44px 0;
  }

  .section--intro {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .section--intro .copy .h2 {
    margin-top: 22px;
  }

  .p {
    line-height: 1.75;
  }

  .strips__row {
    grid-template-columns: 1fr;
  }

  .strip {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .strip img {
    height: 260px;
    transform: none;
  }

  /* PACKAGES */
  .pkgs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pkg {
    min-height: auto;
    pointer-events: none;
    cursor: default;
  }

  .pkg * {
    pointer-events: none;
  }

  .pkg__cta {
    display: none;
  }

  .pkg__details {
    position: static;
    padding: 14px 0 0;
    background: transparent;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  /* CONTACT */
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-logo svg {
    width: min(260px, 100%);
    max-width: 260px;
  }

  .form {
    max-width: 560px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .form input,
  .form textarea,
  .form select {
    padding: 14px;
  }

  .legal-hero__inner {
    padding: calc(var(--hdr-h) + 18px) 0 34px;
  }
}

/* =========================================================
   TOUCH DEVICES
========================================================= */
@media (hover: none) and (pointer: coarse) {
  .pkg,
  .pkg:hover {
    background: #000;
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
  }

  .pkg__details {
    position: static;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .pkg__price,
  .badge,
  .badge--delay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    animation: none;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */
@media (prefers-reduced-motion: reduce) {
  html.has-js .js-reveal,
  html.has-js .is-visible,
  .hero__rule,
  .hero__img,
  .contact__slide,
  .legal-bg .contact__slide,
  .pkg,
  .pkg__details,
  .badge--delay,
  .am-header,
  .am-brand__logo svg,
  .am-mobile-nav,
  .am-mobile-nav__panel,
  .am-nav__arr,
  .navlink__arr,
  .faq__icon,
  .form button {
    animation: none !important;
    transition: none !important;
  }

  .hero__img {
    transform: none !important;
    will-change: auto;
  }
}

/* =========================================================
   ABOUT PAGE
========================================================= */
.section--about .legal__content {
  max-width: 1100px;
}

.about__layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.about__media {
  margin: 0;
}

.about__media img {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

.about__text {
  min-width: 0;
}

.about__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about__lead {
  margin-top: 0;
}

.about__text p {
  margin: 0 0 1.4rem;
}

.about__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about__media img {
    max-width: 220px;
  }
}