:root {
  --ink: #0c0710;
  --ink-2: #130a16;
  --violet: #17102a;
  --violet-2: #1e1436;
  --wine: #23101e;
  --burgundy: #2a0e1a;
  --coral: #f8646e;
  --coral-lite: #ff8a8f;
  --crimson: #e11d48;
  --rose-deep: #a01238;
  --gold: #f4a65a;
  --gold-soft: #f6c177;
  --text: #f5ecea;
  --muted: #b6a3ac;
  --muted-2: #8c7a84;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --card: rgba(255, 255, 255, 0.04);
  --card-brd: rgba(255, 255, 255, 0.09);
  --grad-coral: linear-gradient(120deg, #ff8a8f 0%, #f8646e 42%, #e11d48 100%);
  --grad-warm: linear-gradient(120deg, #f6c177 0%, #f8646e 55%, #e11d48 100%);
  --grad-mixed: linear-gradient(120deg, #f6c177 0%, #f8646e 45%, #a01238 100%);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 18px 55px rgba(225, 29, 72, 0.28);
  --radius: 20px;
  --radius-lg: 28px;
  --container: 1240px;
  --ff-display: "Bricolage Grotesque", sans-serif;
  --ff-body: "Hanken Grotesk", sans-serif;
  --ease: cubic-bezier(0.22, 0.7, 0.24, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden;}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.7;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.25rem);
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--coral-lite);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--grad-coral);
  border-radius: 2px;
}

.eyebrow--center { justify-content: center; }

.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }

.h2 { font-size: clamp(2rem, 3.7vw, 3.35rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--muted); }

.text-gradient {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.reveal.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 1.05s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.reveal--left { transform: translateX(-30px); }
.reveal.reveal--right { transform: translateX(30px); }
.reveal.reveal--zoom { transform: translateY(34px) scale(0.93); }
.reveal.reveal.in { opacity: 1; transform: none; }

.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--text);
  background: var(--btn-bg);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease), background 0.35s var(--ease);
  will-change: transform;
}

.btn i { font-size: 0.85em; transition: transform 0.35s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover i { transform: translateX(3px); }
.btn:focus-visible { outline: 2px solid var(--coral-lite); outline-offset: 3px; }

.btn--primary {
  border: none;
  background: var(--grad-coral);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { box-shadow: 0 24px 60px rgba(225, 29, 72, 0.42); }

.btn--ghost:hover { border-color: var(--coral); background: rgba(248, 100, 110, 0.08); }

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-top: 1px solid var(--line);
  background: linear-gradient(0deg, rgba(12, 7, 16, 0.72), rgba(12, 7, 16, 0));
  backdrop-filter: blur(6px);
  padding: 1.05rem 0;
}

.site-header.is-stuck {
  top: 0;
  bottom: auto;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 7, 15, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
  animation: hdrDown 0.5s var(--ease);
}

@keyframes hdrDown {
  from { transform: translateY(-100%); opacity: 0.4; }
  to { transform: translateY(0); opacity: 1; }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__img { height: 38px; width: auto; }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list a {
  position: relative;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.3s var(--ease);
}

.site-nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--grad-coral);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}

.site-nav__list a:hover { color: var(--text); }
.site-nav__list a:hover::after { width: 100%; }
.site-nav__list a.is-active { color: var(--text); }
.site-nav__list a.is-active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}
.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav-toggle span:last-child { width: 65%; align-self: flex-end; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: radial-gradient(120% 90% at 80% 0%, #23112a 0%, var(--ink) 60%);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.mobile-menu__logo { height: 30px; width: auto; }
.mobile-menu__close {
  width: 48px; height: 48px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: transparent;
  color: var(--coral-lite);
  font-size: 1.35rem;
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: clamp(1.5rem, 6vh, 3.5rem) clamp(1.15rem, 5vw, 2.25rem);
  flex: 1;
  justify-content: center;
}
.mobile-menu__nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2rem, 9vw, 3.1rem);
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 0.35rem 0;
  width: max-content;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu__nav a:hover { color: var(--coral); transform: translateX(8px); }

body.menu-open { overflow: hidden; }


.site-footer {
  background:
    radial-gradient(90% 130% at 50% 0%, rgba(225, 29, 72, 0.12), transparent 55%),
    var(--ink-2);
  border-top: 1px solid var(--line);
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.8rem;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.footer__brand { display: inline-flex; }
.footer__brand-img { height: 40px; width: auto; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem clamp(1.6rem, 3vw, 2.6rem);
}
.footer__nav a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.footer__nav a:hover { color: var(--coral-lite); }

.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.7;
}
.footer__address span,
.footer__address a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.footer__address i { color: var(--coral-lite); margin-top: 0.35em; }
.footer__address a { color: var(--coral-lite); font-weight: 500; }

.footer__bar {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem 1.7rem;
  text-align: center;
}
.footer__bar p { color: var(--muted-2); font-size: 0.9rem; margin: 0; }

.media-ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #2e2a33, #46414e);
  border: 1px solid var(--line-2);
}
.media-ph img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

.nowrap{
  white-space: nowrap;
}

/* Accessibility */

#mdp-readabler-popup {
  top: auto !important;
  bottom: 15px !important;
  right: 15px !important;
  left: auto !important;
  height: auto !important;
  max-height: calc(100vh - 130px) !important;
}

#mdp-readabler-popup #mdp-readabler-popup-main{
  max-height: 45dvh;
}

@media screen and (max-height: 620px){
  #mdp-readabler-popup #mdp-readabler-popup-main{
    max-height: 20dvh !important;
  }

  #mdp-readabler-popup{
    max-height: 96dvh !important;
  }

  #mdp-readabler-popup-footer .mdp-readabler-statement,
  #mdp-readabler-popup #mdp-readabler-popup-footer button{
    font-size: 12px !important;
  }

  #mdp-readabler-popup #mdp-readabler-popup-footer button:nth-child(2){
    margin-top: 0 !important;
  }

  #mdp-readabler-popup #mdp-readabler-popup-footer{
    padding: 12px !important;
    padding-bottom: 16px !important;
  }
}

@media screen and (min-height: 621px) and (max-height: 880px){
  #mdp-readabler-popup #mdp-readabler-popup-main{
  max-height: 35dvh !important;
  }

  #mdp-readabler-popup{
  max-height: 90dvh !important;
  }
}

#mdp-readabler-popup-box[aria-hidden=false]{
  position: relative;
  z-index: 999999;
}

#mdp-readabler-popup-footer .mdp-readabler-statement{
  display: none !important;
}

h2.h2{
  font-weight: 600;
}