:root {
  --adl-ink: #0c0b10;
  --adl-paper: #f5f1e8;
  --adl-violet: #5118d8;
  --adl-violet-deep: #25005f;
  --adl-lime: #caff28;
  --adl-pink: #ff5fa2;
  --adl-line: #17121f;
  --adl-paper-soft: #ece5d4;
  --adl-ink-soft: #46425a;
  --adl-radius-s: 0.35rem;
  --adl-radius-m: 0.9rem;
  --adl-gutter: clamp(1.1rem, 3vw, 2.6rem);
  --adl-rail: clamp(4.5rem, 8vw, 6.5rem);
  --adl-max: 1360px;
  --adl-shadow: 0.4rem 0.4rem 0 var(--adl-ink);
  --adl-shadow-s: 0.25rem 0.25rem 0 var(--adl-ink);
  --font-heading: "Urbanist", "Segoe UI", system-ui, sans-serif;
  --font-body: "Urbanist", "Segoe UI", system-ui, sans-serif;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--adl-paper);
  color: var(--adl-ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.08rem);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
}

.adl-skip {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  background: var(--adl-lime);
  color: var(--adl-ink);
  padding: 0.6rem 1rem;
  border-radius: var(--adl-radius-s);
  font-weight: 700;
  z-index: 400;
  transition: top 0.15s ease;
}

.adl-skip:focus-visible {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--adl-pink);
  outline-offset: 2px;
}

.adl-shell {
  max-width: var(--adl-max);
  margin-inline: auto;
  padding-inline: var(--adl-gutter);
}

.adl-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.adl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--adl-violet-deep);
}

.adl-eyebrow::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: var(--adl-pink);
  border-radius: 50%;
}

.adl-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border: 2px solid var(--adl-ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--adl-paper);
}

.adl-heading-xl {
  font-size: clamp(2.3rem, 1.6rem + 3.6vw, 4.4rem);
  font-weight: 800;
}

.adl-heading-l {
  font-size: clamp(1.8rem, 1.4rem + 2vw, 2.7rem);
  font-weight: 800;
}

.adl-heading-m {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
  font-weight: 700;
}

.adl-lede {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  color: var(--adl-ink-soft);
  max-width: 42ch;
}

.adl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  min-height: 44px;
  border-radius: var(--adl-radius-s);
  border: 2px solid var(--adl-ink);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  background: var(--adl-ink);
  color: var(--adl-paper);
  box-shadow: var(--adl-shadow-s);
  transition: transform 0.15s ease;
}

.adl-btn:hover {
  transform: translate(-2px, -2px);
}

.adl-btn--lime {
  background: var(--adl-lime);
  color: var(--adl-ink);
}

.adl-btn--ghost {
  background: transparent;
  color: var(--adl-ink);
}

.adl-btn--pink {
  background: var(--adl-pink);
  color: var(--adl-ink);
}

.adl-siteHeader {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--adl-paper);
  border-bottom: 3px solid var(--adl-ink);
}

.adl-headerBar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 2vw, 2.5rem);
  padding-block: 0.65rem;
  white-space: nowrap;
}

@media (max-width: 939px) {
  .adl-headerBar {
    justify-content: space-between;
  }
}

.adl-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--adl-ink);
  flex-shrink: 0;
}

.adl-brand span {
  color: var(--adl-violet);
}

.adl-navRail {
  display: none;
  flex-shrink: 1;
}

.adl-navRail ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 1vw, 1.2rem);
  list-style: none;
  white-space: nowrap;
}

.adl-navRail a {
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.85rem, 0.88vw, 0.95rem);
  padding: 0.25rem 0.15rem;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.adl-navRail a:hover,
.adl-navRail a[aria-current="page"] {
  border-bottom-color: var(--adl-pink);
}

.adl-headerActions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.adl-headerBtn {
  padding: 0.45rem 0.85rem !important;
  font-size: 0.86rem !important;
  min-height: 38px !important;
  white-space: nowrap !important;
}

.adl-menuToggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--adl-ink);
  background: var(--adl-paper);
  border-radius: var(--adl-radius-s);
  padding: 0.45rem 0.65rem;
  min-height: 38px;
  min-width: 38px;
  font-weight: 700;
  cursor: pointer;
}

.adl-menuToggle__bar {
  width: 20px;
  height: 2px;
  background: var(--adl-ink);
  position: relative;
}

.adl-menuToggle__bar::before,
.adl-menuToggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--adl-ink);
}

.adl-menuToggle__bar::before {
  top: -6px;
}

.adl-menuToggle__bar::after {
  top: 6px;
}

.adl-mobileDrawer {
  position: fixed;
  inset: 0;
  background: var(--adl-ink);
  color: var(--adl-paper);
  z-index: 300;
  padding: var(--adl-gutter);
  display: none;
  flex-direction: column;
  gap: 1.6rem;
}

.adl-mobileDrawer.is-open {
  display: flex;
}

.adl-mobileDrawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adl-mobileDrawer__close {
  border: 2px solid var(--adl-paper);
  background: transparent;
  color: var(--adl-paper);
  border-radius: var(--adl-radius-s);
  padding: 0.5rem 0.7rem;
  min-height: 44px;
  min-width: 44px;
  font-weight: 700;
  cursor: pointer;
}

.adl-mobileDrawer nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.adl-mobileDrawer nav a {
  text-decoration: none;
  color: var(--adl-paper);
}

.adl-mobileDrawer__cta {
  margin-top: auto;
}

body.adl-noScroll {
  overflow: hidden;
}

.adl-siteFooter {
  background: #000000;
  color: #ffffff;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body, 'Urbanist', system-ui, -apple-system, sans-serif);
}

.adl-footerTop {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .adl-footerTop {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.adl-footerBrand {
  flex-shrink: 0;
}

.adl-footerLogo {
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
}

.adl-footerNavGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 2rem;
}

@media (min-width: 640px) {
  .adl-footerNavGrid {
    grid-template-columns: repeat(4, auto);
    gap: 1rem 3rem;
  }
}

.adl-footerNavCol {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.adl-footerNavCol a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.adl-footerNavCol a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.adl-footerAddress {
  text-align: center;
  margin-bottom: 3.5rem;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

.adl-footerAddress p {
  margin: 0 0 0.2rem 0;
}

.adl-footerAddress a {
  color: #ffffff;
  text-decoration: none;
}

.adl-footerAddress a:hover {
  text-decoration: underline;
}

.adl-footerDisclaimer {
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  font-size: 0.73rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
}

.adl-footerDisclaimer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

.adl-footerDisclaimer a:hover {
  color: #ffffff;
}

.adl-section {
  padding-block: clamp(2.8rem, 6vw, 5.5rem);
}

.adl-section--violet {
  background: var(--adl-violet);
  color: var(--adl-paper);
}

.adl-section--violet .adl-eyebrow {
  color: var(--adl-lime);
}

.adl-section--ink {
  background: var(--adl-ink);
  color: var(--adl-paper);
}

.adl-section--soft {
  background: var(--adl-paper-soft);
}

.adl-sectionHead {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 62ch;
}

.adl-breadcrumbs {
  padding-block: 0.9rem;
  font-size: 0.85rem;
}

.adl-breadcrumbs ol {
  display: flex;
  gap: 0.4rem;
  list-style: none;
  flex-wrap: wrap;
}

.adl-breadcrumbs a {
  text-decoration: none;
  font-weight: 600;
}

.adl-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  opacity: 0.6;
}

.adl-formField {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.adl-formField label {
  font-weight: 700;
  font-size: 0.92rem;
}

.adl-formField input,
.adl-formField select,
.adl-formField textarea {
  border: 2px solid var(--adl-ink);
  border-radius: var(--adl-radius-s);
  padding: 0.75rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--adl-paper);
  color: var(--adl-ink);
  min-height: 44px;
}

.adl-formField textarea {
  min-height: 120px;
  resize: vertical;
}

.adl-formField--error input,
.adl-formField--error textarea,
.adl-formField--error select {
  border-color: var(--adl-pink);
}

.adl-formError {
  font-size: 0.85rem;
  color: #9a0049;
  font-weight: 700;
  min-height: 1.1em;
}

.adl-checkRow {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.adl-checkRow input {
  margin-top: 0.25rem;
  width: 20px;
  height: 20px;
  accent-color: var(--adl-violet);
}

.adl-formNotice {
  font-weight: 700;
  padding: 0.9rem 1rem;
  border-radius: var(--adl-radius-s);
  border: 2px solid var(--adl-ink);
  display: none;
}

.adl-formNotice.is-visible {
  display: block;
}

.adl-formNotice--ok {
  background: var(--adl-lime);
}

.adl-formNotice--fail {
  background: var(--adl-pink);
}

/* Brand Logo Image */
.adl-brandLogo {
  max-height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Header Phone */
.adl-headerPhone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--adl-ink);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: var(--adl-radius-s);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.adl-headerPhone:hover {
  background: rgba(81, 24, 216, 0.08);
  border-color: var(--adl-ink);
}
.adl-headerPhone svg {
  color: var(--adl-violet);
  flex-shrink: 0;
}

/* Header Search & Dropdown */
.adl-headerSearch {
  position: relative;
  display: flex;
  align-items: center;
  width: 220px;
  margin-inline: 0.5rem;
}
@media (max-width: 1024px) {
  .adl-headerSearch {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .adl-headerSearch {
    display: none;
  }
  .adl-headerPhone span {
    display: none;
  }
}
.adl-headerSearch__input {
  width: 100%;
  padding: 0.45rem 0.65rem 0.45rem 2.1rem;
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: 600;
  border: 2px solid var(--adl-ink);
  border-radius: var(--adl-radius-s);
  background: var(--adl-paper);
  color: var(--adl-ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.adl-headerSearch__input:focus {
  border-color: var(--adl-violet);
  box-shadow: 0 0 0 3px rgba(81, 24, 216, 0.15);
}
.adl-headerSearch__icon {
  position: absolute;
  left: 0.6rem;
  pointer-events: none;
  color: var(--adl-ink-soft);
  display: flex;
  align-items: center;
}
.adl-searchDropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 320px;
  max-width: 400px;
  max-height: 380px;
  overflow-y: auto;
  background: var(--adl-paper);
  border: 2px solid var(--adl-ink);
  border-radius: var(--adl-radius-s);
  box-shadow: 0.4rem 0.4rem 0 var(--adl-ink);
  z-index: 550;
  display: none;
  padding: 0.4rem;
}
.adl-searchDropdown.is-active {
  display: block;
}
.adl-searchItem {
  display: flex;
  flex-direction: column;
  padding: 0.6rem 0.75rem;
  border-radius: var(--adl-radius-s);
  text-decoration: none;
  color: var(--adl-ink);
  transition: background 0.15s ease;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.adl-searchItem:last-child {
  border-bottom: none;
}
.adl-searchItem:hover, .adl-searchItem:focus {
  background: var(--adl-lime);
  color: var(--adl-ink);
}
.adl-searchItem__title {
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.adl-searchItem__tag {
  font-size: 0.68rem;
  padding: 0.1rem 0.4rem;
  background: var(--adl-violet);
  color: #ffffff;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.adl-searchItem__desc {
  font-size: 0.8rem;
  color: var(--adl-ink-soft);
  margin-top: 0.2rem;
  line-height: 1.3;
}
.adl-searchEmpty {
  padding: 1rem;
  text-align: center;
  color: var(--adl-ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Floating Dark / Light Theme Button */
.adl-themeWidget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
}
.adl-themeBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  background: var(--adl-ink);
  color: var(--adl-paper);
  border: 2px solid var(--adl-paper);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.adl-themeBtn:hover {
  transform: scale(1.05);
}
.adl-themeBtn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Dark Theme Overlay & Variables */
html.dark-theme, body.dark-theme {
  --adl-paper: #121018;
  --adl-ink: #f0ecf6;
  --adl-paper-soft: #1d1928;
  --adl-ink-soft: #b8b2c8;
  --adl-line: #372d4a;
  --adl-shadow: 0.4rem 0.4rem 0 #000000;
  --adl-shadow-s: 0.25rem 0.25rem 0 #000000;
  background: #121018;
  color: #f0ecf6;
}
html.dark-theme .adl-siteHeader,
html.dark-theme .adl-mobileDrawer,
html.dark-theme .adl-searchDropdown,
html.dark-theme .adl-formField input,
html.dark-theme .adl-formField select,
html.dark-theme .adl-formField textarea {
  background: #1a1724;
  color: #f0ecf6;
  border-color: #3d3550;
}
html.dark-theme .adl-siteHeader {
  border-bottom-color: #3d3550;
}
html.dark-theme .adl-btn--lime {
  background: var(--adl-lime);
  color: #0c0b10;
}
html.dark-theme .adl-btn--ghost {
  color: #f0ecf6;
  border-color: #3d3550;
}
html.dark-theme .adl-headerPhone {
  color: #f0ecf6;
}
html.dark-theme .adl-searchItem:hover {
  background: var(--adl-violet);
  color: #ffffff;
}
html.dark-theme .adl-searchItem__desc {
  color: #cfcbdb;
}
html.dark-theme .adl-themeBtn {
  background: var(--adl-lime);
  color: #0c0b10;
  border-color: #121018;
}

/* Content Image Showcase Styling */
.adl-galleryMosaic figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--adl-radius-m);
  border: 2px solid var(--adl-ink);
  box-shadow: var(--adl-shadow-s);
  background: var(--adl-paper-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.adl-galleryMosaic figure:hover {
  transform: translateY(-4px);
  box-shadow: var(--adl-shadow);
}
.adl-galleryImg {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.adl-galleryCaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.8rem;
  background: rgba(18, 16, 24, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.adl-cardImg {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--adl-radius-s);
  border: 2px solid var(--adl-ink);
  margin-bottom: 0.8rem;
  box-shadow: var(--adl-shadow-s);
}
.adl-sectionImg {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--adl-radius-m);
  border: 3px solid var(--adl-ink);
  box-shadow: var(--adl-shadow);
  margin-block: 1.5rem;
}

