@charset "UTF-8";
/* ==========================================================================
  // Elements / Normalize
  // ========================================================================== */
/* Modern CSS Normalize
   Based on the reset by Andy.set with some tweaks.
   Original by Andy.set: https://piccalil.li/blog/a-more-modern-css-reset/
   Review by Chris collier: https://chriscoyier.net/2023/10/03/being-picky-about-a-css-reset-for-fun-pleasure/
*/
/* Box sizing rules */
*,
*:after,
*:before {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dd,
figure,
blockquote {
  margin-block: unset;
}

/* Remove list styles on ul, ol elements with a class, which suggests default styling will be removed */
ul[class],
ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Set core defaults */
html {
  line-height: 1.5;
}

body {
  margin: unset;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
h5,
h6,
input,
label,
button {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/* Remove a elements default styles if they have a class */
a[class] {
  color: inherit;
  text-decoration: none;
}

/* Make assets easier to work with */
img,
svg,
canvas,
picture,
video {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
select,
textarea {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 1rlh;
}

/* Reduced mootion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *:after,
  *:before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button {
  color: inherit;
  border-color: inherit;
  background-color: transparent;
}

:root {
  --max-width: 1440px;
  --container-width: min(100% - var(--gutter) * 2, var(--max-width));
  --color-mahogany: #402022;
  --color-parchment: #f9f0d8;
  --color-olive: #3e451f;
  --color-gold: #ddb945;
  --color-current: var(--color-mahogany);
  --color-black: #000000;
  --color-white: #ffffff;
  --color-black-90: #1a1a1a;
  --color-black-80: #333333;
  --color-black-70: #4d4d4d;
  --color-black-60: #666666;
  --color-black-50: #808080;
  --color-black-40: #999999;
  --color-black-30: #b2b2b2;
  --color-black-20: #cccccc;
  --color-black-10: #e5e5e5;
  --color-background: var(--color-parchment);
  --color-surface: var(--color-mahogany);
  --color-text: var(--color-black-90);
  --color-muted: var(--color-black-60);
  --color-primary: var(--color-mahogany);
  --color-secondary: var(--color-olive);
  --color-accent: var(--color-gold);
  --color-error: #E30000;
  --color-error-bg: #FFF2F4;
  --clr--black: var(--color-black);
  --clr--white: var(--color-white);
  --clr--blue: var(--color-primary);
  --clr--light-blue: var(--color-accent);
  --clr--dark-grey: var(--color-muted);
  --clr--line-grey: var(--color-surface);
  --text-root: 16px;
  --font-body: 'Founders Grotesk', 'Inter', Arial, sans-serif;
  --font-headings: 'PP Editorial New', Georgia, 'Times New Roman', serif;
  --font-serif: var(--font-headings);
  --font-inter: var(--font-body);
  --font-inter-tight: var(--font-body);
  --font-normal: 300;
  --font-medium: 300;
  --font-semibold: 400;
  --font-bold: 400;
  --font-heading-weight: 200;
  --text-xs: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.18vw, 1rem);
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.75vw, 3rem);
  --text-3xl: clamp(2rem, 1.45rem + 2.75vw, 4rem);
  --text-4xl: clamp(2.5rem, 1.6rem + 4.5vw, 5.75rem);
  --text-5xl: clamp(3rem, 1.85rem + 5.75vw, 7rem);
  --text-6xl: clamp(3.5rem, 2rem + 7.5vw, 9rem);
  --text-7xl: clamp(4rem, 2.1rem + 9.5vw, 11rem);
  --line-height-tight: 0.95;
  --line-height-heading: 0.95;
  --line-height-body: 1.35;
  --ease-fluid: cubic-bezier(0.3, 0, 0, 1);
  --ease-snappy: cubic-bezier(0.2, 0, 0, 1);
  --transition-base: 180ms var(--ease-snappy);
  --spacing: initial;
  --spacing-1: 0.125rem;
  --spacing-2: 0.25rem;
  --spacing-3: 0.5rem;
  --spacing-4: 0.75rem;
  --spacing-5: 1rem;
  --spacing-6: 1.5rem;
  --spacing-7: 2rem;
  --spacing-8: 3rem;
  --spacing-9: 4rem;
  --spacing-10: 5rem;
  --spacing-11: 6rem;
  --spacing-12: 7rem;
  --spacing-13: 8rem;
  --spacing-14: 9rem;
  --spacing-15: 10rem;
  --spacing-16: 11rem;
  --spacing-17: 12rem;
  --spacing-18: 13rem;
  --spacing-19: 14rem;
  --spacing-20: 15rem;
  --gutter: clamp(1rem, 3vw, 3rem);
  --block-space: 9rem;
  --block-space-sm: 6rem;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --shadow-soft: none;
  --grid-columns: 12;
  --grid-col-gap: clamp(1rem, 2vw, 1.75rem);
  --grid-row-gap: clamp(2rem, 4vw, 3rem);
}

@media (max-width: 768px) {
  :root {
    --block-space: 6rem;
  }
}
.bg-black {
  background-color: #000000;
  --color-bg: #000000;
}

.text-black {
  color: #000000;
}

.bg-white {
  background-color: #ffffff;
  --color-bg: #ffffff;
}

.text-white {
  color: #ffffff;
}

.bg-mahogany {
  background-color: #402022;
  --color-bg: #402022;
}

.text-mahogany {
  color: #402022;
}

.bg-parchment {
  background-color: #f9f0d8;
  --color-bg: #f9f0d8;
}

.text-parchment {
  color: #f9f0d8;
}

.bg-olive {
  background-color: #3e451f;
  --color-bg: #3e451f;
}

.text-olive {
  color: #3e451f;
}

.bg-gold {
  background-color: #ddb945;
  --color-bg: #ddb945;
}

.text-gold {
  color: #ddb945;
}

.bg-black-90 {
  background-color: #1a1a1a;
  --color-bg: #1a1a1a;
}

.text-black-90 {
  color: #1a1a1a;
}

.bg-black-80 {
  background-color: #333333;
  --color-bg: #333333;
}

.text-black-80 {
  color: #333333;
}

.bg-black-70 {
  background-color: #4d4d4d;
  --color-bg: #4d4d4d;
}

.text-black-70 {
  color: #4d4d4d;
}

.bg-black-60 {
  background-color: #666666;
  --color-bg: #666666;
}

.text-black-60 {
  color: #666666;
}

.bg-black-50 {
  background-color: #808080;
  --color-bg: #808080;
}

.text-black-50 {
  color: #808080;
}

.bg-black-40 {
  background-color: #999999;
  --color-bg: #999999;
}

.text-black-40 {
  color: #999999;
}

.bg-black-30 {
  background-color: #b2b2b2;
  --color-bg: #b2b2b2;
}

.text-black-30 {
  color: #b2b2b2;
}

.bg-black-20 {
  background-color: #cccccc;
  --color-bg: #cccccc;
}

.text-black-20 {
  color: #cccccc;
}

.bg-black-10 {
  background-color: #e5e5e5;
  --color-bg: #e5e5e5;
}

.text-black-10 {
  color: #e5e5e5;
}

.bg-primary {
  background-color: #402022;
  --color-bg: #402022;
}

.text-primary {
  color: #402022;
}

.bg-secondary {
  background-color: #3e451f;
  --color-bg: #3e451f;
}

.text-secondary {
  color: #3e451f;
}

.bg-accent {
  background-color: #ddb945;
  --color-bg: #ddb945;
}

.text-accent {
  color: #ddb945;
}

.bg-current {
  background-color: #402022;
  --color-bg: #402022;
}

.text-current {
  color: #402022;
}

img[class*="aspect:"],
[class*="aspect:"]:not(img) img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

[class*="aspect:"]:not(img) img {
  aspect-ratio: inherit;
}

.aspect\:21\/9 {
  aspect-ratio: 21/9;
}
@media (max-width: 480px) {
  .aspect\:21\/9 {
    aspect-ratio: 16/9;
  }
}

.aspect\:16\/9 {
  aspect-ratio: 16/9;
}

.aspect\:6\/4, .aspect\:3\/2 {
  aspect-ratio: 6/4;
}

.aspect\:4\/5 {
  aspect-ratio: 4/5;
}

.aspect\:4\/3 {
  aspect-ratio: 4/3;
}

.aspect\:3\/4 {
  aspect-ratio: 3/4;
}

.aspect\:1\/1 {
  aspect-ratio: 1/1;
}

/** Scrollness **/
[data-scroll-class=scroll__slide-in] {
  translate: -5% 0;
  opacity: 0;
  transition: translate 0.75s ease, opacity 0.75s ease;
  will-change: translate, opacity;
}

[data-scroll-class=scroll__slide-in].scroll__slide-in {
  translate: 0 0;
  opacity: 1;
}

.has-overlay[data-scroll]:not(.is-inview) {
  --_overlay-opacity: 1;
}

.has-gutter {
  padding-inline: var(--gutter);
}

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  scroll-margin-top: var(--block-space);
}
.container.has-gutter {
  max-width: calc(var(--max-width) + var(--gutter) * 2);
}

/* Grid! */
/* Base grid styles */
.grid {
  display: grid;
  --_grid-cols: 12;
  grid-template-columns: repeat(var(--_grid-cols), 1fr);
  column-gap: var(--grid-col-gap, 1rem);
  row-gap: var(--grid-row-gap, 1rem);
}
@media (max-width: 768px) {
  .grid {
    --_grid-cols: 6;
  }
}
@media (max-width: 480px) {
  .grid {
    --_grid-cols: 4;
  }
}
.grid.no-row-gap {
  row-gap: 0;
}
.grid .subgrid {
  display: grid;
  grid-template-columns: subgrid;
  column-gap: inherit;
  row-gap: inherit;
}

/* Preset column counts */
.grid.cols-1 {
  --_grid-cols: 1;
}

@media (max-width: 768px) {
  .grid.cols-1 {
    --_grid-cols: 1;
  }
}
@media (max-width: 480px) {
  .grid.cols-1 {
    --_grid-cols: 1;
  }
}
.grid.cols-2 {
  --_grid-cols: 2;
}

@media (max-width: 768px) {
  .grid.cols-2 {
    --_grid-cols: 2;
  }
}
@media (max-width: 480px) {
  .grid.cols-2 {
    --_grid-cols: 2;
  }
}
.grid.cols-3 {
  --_grid-cols: 3;
}

@media (max-width: 768px) {
  .grid.cols-3 {
    --_grid-cols: 2;
  }
}
@media (max-width: 480px) {
  .grid.cols-3 {
    --_grid-cols: 1;
  }
}
.grid.cols-4 {
  --_grid-cols: 4;
}

@media (max-width: 768px) {
  .grid.cols-4 {
    --_grid-cols: 2;
  }
}
@media (max-width: 480px) {
  .grid.cols-4 {
    --_grid-cols: 1;
  }
}
.grid.cols-6 {
  --_grid-cols: 6;
}

@media (max-width: 768px) {
  .grid.cols-6 {
    --_grid-cols: 3;
  }
}
@media (max-width: 480px) {
  .grid.cols-6 {
    --_grid-cols: 2;
  }
}
.grid.cols-9 {
  --_grid-cols: 9;
}

@media (max-width: 768px) {
  .grid.cols-9 {
    --_grid-cols: 6;
  }
}
@media (max-width: 480px) {
  .grid.cols-9 {
    --_grid-cols: 4;
  }
}
/* Define layouts as a map */
/*
"5-x-6": (5, 6, x),
"6-x-4": (6, 4, x),
"6-x-5": (6, 5, x),
"6-5": (6, 5, span),
"7-5": (7, 5, span),
"7-x-4": (7, 4, x),
"4-x-6": (4, 6, x),
"4-x-7": (4, 7, x),
"3-9": (3, 9, span),
"9-3": (9, 3, span)
*/
/* Mixin to generate layout styles */
body .grid.layout\:4-x-6 > *:last-child {
  grid-column-start: 6;
}
@media (max-width: 768px) {
  body .grid.layout\:4-x-6 > *:last-child {
    grid-column-start: auto;
  }
}

/* Apply the mixin inside the grid class */
.grid.layout\:5-x-6 > *:first-child {
  grid-column: 1/6;
}
.grid.layout\:5-x-6 > *:nth-child(2n) {
  grid-column: 7/span 6;
}
@media (max-width: 768px) {
  .grid.layout\:5-x-6 > *:first-child {
    grid-column: 1/span 5;
  }
  .grid.layout\:5-x-6 > *:nth-child(2n) {
    grid-column: auto/ span 6;
  }
}
@media (max-width: 480px) {
  .grid.layout\:5-x-6 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:5-x-6 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:6-x-4 > *:first-child {
  grid-column: 1/7;
}
.grid.layout\:6-x-4 > *:nth-child(2n) {
  grid-column: 8/span 4;
}
@media (max-width: 768px) {
  .grid.layout\:6-x-4 > *:first-child {
    grid-column: 1/span 6;
  }
  .grid.layout\:6-x-4 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
@media (max-width: 480px) {
  .grid.layout\:6-x-4 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:6-x-4 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:6-x-5 > *:first-child {
  grid-column: 1/7;
}
.grid.layout\:6-x-5 > *:nth-child(2n) {
  grid-column: 8/span 5;
}
@media (max-width: 768px) {
  .grid.layout\:6-x-5 > *:first-child {
    grid-column: 1/span 6;
  }
  .grid.layout\:6-x-5 > *:nth-child(2n) {
    grid-column: auto/ span 5;
  }
}
@media (max-width: 480px) {
  .grid.layout\:6-x-5 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:6-x-5 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:6-5 > *:first-child {
  grid-column: 1/span 6;
}
.grid.layout\:6-5 > *:nth-child(2n) {
  grid-column: auto/ span 5;
}
@media (max-width: 768px) {
  .grid.layout\:6-5 > *:first-child {
    grid-column: 1/span 6;
  }
  .grid.layout\:6-5 > *:nth-child(2n) {
    grid-column: auto/ span 5;
  }
}
@media (max-width: 480px) {
  .grid.layout\:6-5 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:6-5 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:7-5 > *:first-child {
  grid-column: 1/span 7;
}
.grid.layout\:7-5 > *:nth-child(2n) {
  grid-column: auto/ span 5;
}
@media (max-width: 768px) {
  .grid.layout\:7-5 > *:first-child {
    grid-column: 1/span 6;
  }
  .grid.layout\:7-5 > *:nth-child(2n) {
    grid-column: auto/ span 5;
  }
}
@media (max-width: 480px) {
  .grid.layout\:7-5 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:7-5 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:7-x-4 > *:first-child {
  grid-column: 1/8;
}
.grid.layout\:7-x-4 > *:nth-child(2n) {
  grid-column: 9/span 4;
}
@media (max-width: 768px) {
  .grid.layout\:7-x-4 > *:first-child {
    grid-column: 1/span 6;
  }
  .grid.layout\:7-x-4 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
@media (max-width: 480px) {
  .grid.layout\:7-x-4 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:7-x-4 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:4-x-6 > *:first-child {
  grid-column: 1/5;
}
.grid.layout\:4-x-6 > *:nth-child(2n) {
  grid-column: 6/span 6;
}
@media (max-width: 768px) {
  .grid.layout\:4-x-6 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:4-x-6 > *:nth-child(2n) {
    grid-column: auto/ span 6;
  }
}
@media (max-width: 480px) {
  .grid.layout\:4-x-6 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:4-x-6 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:4-x-7 > *:first-child {
  grid-column: 1/5;
}
.grid.layout\:4-x-7 > *:nth-child(2n) {
  grid-column: 6/span 7;
}
@media (max-width: 768px) {
  .grid.layout\:4-x-7 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:4-x-7 > *:nth-child(2n) {
    grid-column: auto/ span 6;
  }
}
@media (max-width: 480px) {
  .grid.layout\:4-x-7 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:4-x-7 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:4-8 > *:first-child {
  grid-column: 1/span 4;
}
.grid.layout\:4-8 > *:nth-child(2n) {
  grid-column: auto/ span 8;
}
@media (max-width: 768px) {
  .grid.layout\:4-8 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:4-8 > *:nth-child(2n) {
    grid-column: auto/ span 6;
  }
}
@media (max-width: 480px) {
  .grid.layout\:4-8 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:4-8 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:3-9 > *:first-child {
  grid-column: 1/span 3;
}
.grid.layout\:3-9 > *:nth-child(2n) {
  grid-column: auto/ span 9;
}
@media (max-width: 768px) {
  .grid.layout\:3-9 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:3-9 > *:nth-child(2n) {
    grid-column: auto/ span 6;
  }
}
@media (max-width: 480px) {
  .grid.layout\:3-9 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:3-9 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
.grid.layout\:9-3 > *:first-child {
  grid-column: 1/span 9;
}
.grid.layout\:9-3 > *:nth-child(2n) {
  grid-column: auto/ span 3;
}
@media (max-width: 768px) {
  .grid.layout\:9-3 > *:first-child {
    grid-column: 1/span 6;
  }
  .grid.layout\:9-3 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}
@media (max-width: 480px) {
  .grid.layout\:9-3 > *:first-child {
    grid-column: 1/span 4;
  }
  .grid.layout\:9-3 > *:nth-child(2n) {
    grid-column: auto/ span 4;
  }
}

.grid > *,
.subgrid > * {
  --grid-col-start: auto;
  --grid-col-span: auto;
  grid-column: var(--grid-col-start)/span var(--grid-col-span);
}

.span-auto {
  --grid-col-span: auto;
}

.start-auto {
  --grid-col-start: auto;
}

.span-full {
  --grid-col-span: var(--_grid-cols);
  --grid-col-start: auto;
}

.span-1 {
  --grid-col-span: 1;
}

.start-1 {
  --grid-col-start: 1;
}

.span-2 {
  --grid-col-span: 2;
}

.start-2 {
  --grid-col-start: 2;
}

.span-3 {
  --grid-col-span: 3;
}

.start-3 {
  --grid-col-start: 3;
}

.span-4 {
  --grid-col-span: 4;
}

.start-4 {
  --grid-col-start: 4;
}

.span-5 {
  --grid-col-span: 5;
}

.start-5 {
  --grid-col-start: 5;
}

.span-6 {
  --grid-col-span: 6;
}

.start-6 {
  --grid-col-start: 6;
}

.span-7 {
  --grid-col-span: 7;
}

.start-7 {
  --grid-col-start: 7;
}

.span-8 {
  --grid-col-span: 8;
}

.start-8 {
  --grid-col-start: 8;
}

.span-9 {
  --grid-col-span: 9;
}

.start-9 {
  --grid-col-start: 9;
}

.span-10 {
  --grid-col-span: 10;
}

.start-10 {
  --grid-col-start: 10;
}

.span-11 {
  --grid-col-span: 11;
}

.start-11 {
  --grid-col-start: 11;
}

.span-12 {
  --grid-col-span: 12;
}

.start-12 {
  --grid-col-start: 12;
}

@media (max-width: 1200px) {
  .xl\:span-1 {
    --grid-col-span: 1;
  }
  .xl\:start-1 {
    --grid-col-start: 1;
  }
  .xl\:span-2 {
    --grid-col-span: 2;
  }
  .xl\:start-2 {
    --grid-col-start: 2;
  }
  .xl\:span-3 {
    --grid-col-span: 3;
  }
  .xl\:start-3 {
    --grid-col-start: 3;
  }
  .xl\:span-4 {
    --grid-col-span: 4;
  }
  .xl\:start-4 {
    --grid-col-start: 4;
  }
  .xl\:span-5 {
    --grid-col-span: 5;
  }
  .xl\:start-5 {
    --grid-col-start: 5;
  }
  .xl\:span-6 {
    --grid-col-span: 6;
  }
  .xl\:start-6 {
    --grid-col-start: 6;
  }
  .xl\:span-7 {
    --grid-col-span: 7;
  }
  .xl\:start-7 {
    --grid-col-start: 7;
  }
  .xl\:span-8 {
    --grid-col-span: 8;
  }
  .xl\:start-8 {
    --grid-col-start: 8;
  }
  .xl\:span-9 {
    --grid-col-span: 9;
  }
  .xl\:start-9 {
    --grid-col-start: 9;
  }
  .xl\:span-10 {
    --grid-col-span: 10;
  }
  .xl\:start-10 {
    --grid-col-start: 10;
  }
  .xl\:span-11 {
    --grid-col-span: 11;
  }
  .xl\:start-11 {
    --grid-col-start: 11;
  }
  .xl\:span-12 {
    --grid-col-span: 12;
  }
  .xl\:start-12 {
    --grid-col-start: 12;
  }
  .xl\:span-auto {
    --grid-col-span: auto;
  }
  .xl\:start-auto {
    --grid-col-start: auto;
  }
  .xl\:span-full {
    --grid-col-span: var(--_grid-cols);
  }
}
@media (max-width: 1024px) {
  .lg\:span-1 {
    --grid-col-span: 1;
  }
  .lg\:start-1 {
    --grid-col-start: 1;
  }
  .lg\:span-2 {
    --grid-col-span: 2;
  }
  .lg\:start-2 {
    --grid-col-start: 2;
  }
  .lg\:span-3 {
    --grid-col-span: 3;
  }
  .lg\:start-3 {
    --grid-col-start: 3;
  }
  .lg\:span-4 {
    --grid-col-span: 4;
  }
  .lg\:start-4 {
    --grid-col-start: 4;
  }
  .lg\:span-5 {
    --grid-col-span: 5;
  }
  .lg\:start-5 {
    --grid-col-start: 5;
  }
  .lg\:span-6 {
    --grid-col-span: 6;
  }
  .lg\:start-6 {
    --grid-col-start: 6;
  }
  .lg\:span-7 {
    --grid-col-span: 7;
  }
  .lg\:start-7 {
    --grid-col-start: 7;
  }
  .lg\:span-8 {
    --grid-col-span: 8;
  }
  .lg\:start-8 {
    --grid-col-start: 8;
  }
  .lg\:span-9 {
    --grid-col-span: 9;
  }
  .lg\:start-9 {
    --grid-col-start: 9;
  }
  .lg\:span-10 {
    --grid-col-span: 10;
  }
  .lg\:start-10 {
    --grid-col-start: 10;
  }
  .lg\:span-11 {
    --grid-col-span: 11;
  }
  .lg\:start-11 {
    --grid-col-start: 11;
  }
  .lg\:span-12 {
    --grid-col-span: 12;
  }
  .lg\:start-12 {
    --grid-col-start: 12;
  }
  .lg\:span-auto {
    --grid-col-span: auto;
  }
  .lg\:start-auto {
    --grid-col-start: auto;
  }
  .lg\:span-full {
    --grid-col-span: var(--_grid-cols);
  }
}
@media (max-width: 768px) {
  .md\:span-1 {
    --grid-col-span: 1;
  }
  .md\:start-1 {
    --grid-col-start: 1;
  }
  .md\:span-2 {
    --grid-col-span: 2;
  }
  .md\:start-2 {
    --grid-col-start: 2;
  }
  .md\:span-3 {
    --grid-col-span: 3;
  }
  .md\:start-3 {
    --grid-col-start: 3;
  }
  .md\:span-4 {
    --grid-col-span: 4;
  }
  .md\:start-4 {
    --grid-col-start: 4;
  }
  .md\:span-5 {
    --grid-col-span: 5;
  }
  .md\:start-5 {
    --grid-col-start: 5;
  }
  .md\:span-6 {
    --grid-col-span: 6;
  }
  .md\:start-6 {
    --grid-col-start: 6;
  }
  .md\:span-7 {
    --grid-col-span: 7;
  }
  .md\:start-7 {
    --grid-col-start: 7;
  }
  .md\:span-8 {
    --grid-col-span: 8;
  }
  .md\:start-8 {
    --grid-col-start: 8;
  }
  .md\:span-9 {
    --grid-col-span: 9;
  }
  .md\:start-9 {
    --grid-col-start: 9;
  }
  .md\:span-10 {
    --grid-col-span: 10;
  }
  .md\:start-10 {
    --grid-col-start: 10;
  }
  .md\:span-11 {
    --grid-col-span: 11;
  }
  .md\:start-11 {
    --grid-col-start: 11;
  }
  .md\:span-12 {
    --grid-col-span: 12;
  }
  .md\:start-12 {
    --grid-col-start: 12;
  }
  .md\:span-auto {
    --grid-col-span: auto;
  }
  .md\:start-auto {
    --grid-col-start: auto;
  }
  .md\:span-full {
    --grid-col-span: var(--_grid-cols);
  }
}
@media (max-width: 480px) {
  .sm\:span-1 {
    --grid-col-span: 1;
  }
  .sm\:start-1 {
    --grid-col-start: 1;
  }
  .sm\:span-2 {
    --grid-col-span: 2;
  }
  .sm\:start-2 {
    --grid-col-start: 2;
  }
  .sm\:span-3 {
    --grid-col-span: 3;
  }
  .sm\:start-3 {
    --grid-col-start: 3;
  }
  .sm\:span-4 {
    --grid-col-span: 4;
  }
  .sm\:start-4 {
    --grid-col-start: 4;
  }
  .sm\:span-5 {
    --grid-col-span: 5;
  }
  .sm\:start-5 {
    --grid-col-start: 5;
  }
  .sm\:span-6 {
    --grid-col-span: 6;
  }
  .sm\:start-6 {
    --grid-col-start: 6;
  }
  .sm\:span-7 {
    --grid-col-span: 7;
  }
  .sm\:start-7 {
    --grid-col-start: 7;
  }
  .sm\:span-8 {
    --grid-col-span: 8;
  }
  .sm\:start-8 {
    --grid-col-start: 8;
  }
  .sm\:span-9 {
    --grid-col-span: 9;
  }
  .sm\:start-9 {
    --grid-col-start: 9;
  }
  .sm\:span-10 {
    --grid-col-span: 10;
  }
  .sm\:start-10 {
    --grid-col-start: 10;
  }
  .sm\:span-11 {
    --grid-col-span: 11;
  }
  .sm\:start-11 {
    --grid-col-start: 11;
  }
  .sm\:span-12 {
    --grid-col-span: 12;
  }
  .sm\:start-12 {
    --grid-col-start: 12;
  }
  .sm\:span-auto {
    --grid-col-span: auto;
  }
  .sm\:start-auto {
    --grid-col-start: auto;
  }
  .sm\:span-full {
    --grid-col-span: var(--_grid-cols);
  }
}
/**
 * FLEX!!!
 */
.flex-row {
  display: flex;
  gap: var(--grid-col-gap);
  flex-direction: row;
}

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

.space-between {
  justify-content: space-between;
}

.space-around {
  justify-content: space-around;
}

.space-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-self-top {
  align-self: flex-start;
}

.flex-column {
  display: flex;
  gap: var(--grid-col-gap);
  flex-direction: column;
}

.flex-row.gap-xs,
.flex-column.gap-xs {
  gap: 0.125rem;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  /* Variable font weight range */
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic-VariableFont.ttf") format("truetype");
  font-weight: 100 900;
  /* Variable font weight range */
  font-style: italic;
}
@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/FoundersGrotesk-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP Editorial New";
  src: url("../fonts/PPEditorialNew-Ultralight.woff") format("woff"), url("../fonts/PPEditorialNew-Ultralight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
.prose {
  font-family: var(--font-serif);
}
.prose p a:not(.cta),
.prose li a:not(.cta),
.prose blockquote a:not(.cta) {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose ul,
.prose ol,
.prose dl {
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  line-height: 1.5;
}
.prose li {
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.prose img {
  object-fit: cover;
}
.prose iframe {
  width: 100%;
  display: block;
}
.prose iframe[title*=video], .prose iframe[class*=video] {
  aspect-ratio: 16/9;
  height: auto;
}
.prose blockquote {
  padding-left: 0;
  margin-right: auto;
  margin-left: 0;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.prose blockquote:last-child {
  margin-bottom: 0;
}
.prose blockquote > * {
  color: var(--color-primary);
  font-family: var(--font-headings);
  font-size: var(--text-xl);
  margin: 0;
}

.serif {
  font-family: var(--font-headings);
}

.sans {
  font-family: var(--font-body);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.heading {
  font-family: var(--font-headings);
  font-weight: var(--font-heading-weight);
  line-height: var(--line-height-heading);
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}
h1.light,
.h1.light,
h2.light,
.h2.light,
h3.light,
.h3.light,
h4.light,
.h4.light,
h5.light,
.h5.light,
h6.light,
.h6.light,
.heading.light {
  font-weight: 400;
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child,
.heading:last-child {
  margin-bottom: 0;
}

h1,
.h1 {
  font-size: 6rem;
  line-height: 114%;
}
@media (max-width: 768px) {
  h1,
  .h1 {
    font-size: 5rem;
  }
}

h2,
.h2 {
  font-size: 6rem;
  line-height: var(--line-height-tight);
}
@media (max-width: 768px) {
  h2,
  .h2 {
    font-size: 4rem;
  }
}

h3,
.h3 {
  font-size: var(--text-xl);
  line-height: 1;
}

h4,
.h4 {
  font-size: var(--text-3xl);
  line-height: 1.3;
}

h5,
.h5 {
  font-size: var(--text-2xl);
  line-height: 1.3;
}

h6,
.h6 {
  font-size: var(--text-xl);
  line-height: 1.4;
}

p {
  line-height: var(--line-height-body);
  font-family: var(--font-body);
  font-weight: var(--font-normal);
}

p:not(:last-child) {
  margin-bottom: 1.5rem;
}

a {
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--color-primary);
}

.label,
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-normal);
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.bold {
  font-weight: bold;
}

.semibold {
  font-weight: 500;
}

.fw-normal {
  font-weight: 400;
}

.fw-light {
  font-weight: 300;
}

p:empty {
  display: none;
}

.text-xs {
  font-size: var(--text-xs);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-md {
  font-size: var(--text-md);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

.text-2xl {
  font-size: var(--text-2xl);
}

.text-3xl {
  font-size: var(--text-3xl);
}

.text-4xl {
  font-size: var(--text-4xl);
}

.text-5xl {
  font-size: var(--text-5xl);
}

.text-6xl {
  font-size: var(--text-6xl);
}

.text-7xl {
  font-size: var(--text-7xl);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  [data-scroll-fade] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--scroll-delay, 0s), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--scroll-delay, 0s);
  }
  [data-scroll-fade].is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  [data-scroll-fade-simple] {
    opacity: 0;
    transition: opacity 1s ease var(--scroll-delay, 0s);
  }
  [data-scroll-fade-simple].is-visible {
    opacity: 1;
  }
}
html {
  font-size: var(--text-root);
  overflow-x: hidden;
  background-color: var(--color-secondary);
}

body {
  font-size: var(--text-base);
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--color-surface);
}

html,
body {
  font-family: var(--font-body);
  font-size: var(--text-root);
  color-scheme: light;
  color: var(--color-text);
  line-height: var(--line-height-body);
  font-weight: var(--font-normal);
  -webkit-font-smoothing: antialiased;
  tab-size: 4;
  --column-width-vw: calc((100vw - var(--gutter)*2 - var(--grid-col-gap) * 11) / 12);
}
@media (max-width: 768px) {
  html,
  body {
    --column-width-vw: calc((100vw - var(--gutter)*2 - var(--grid-col-gap) * 5) / 6);
  }
}
@media (max-width: 480px) {
  html,
  body {
    --column-width-vw: calc((100vw - var(--gutter)*2 - var(--grid-col-gap) * 3) / 4);
  }
}

@media screen and (min-width: 1560px) {
  html,
  body {
    --column-width-vw: calc((1560px - var(--grid-col-gap) * 11) / 12);
  }
}
.cta {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  gap: 0.5rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-normal);
  letter-spacing: 0.12em;
  color: currentColor;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 0;
  background-color: transparent;
  padding: 0;
}
.cta .icon {
  transition: rotate 350ms ease;
}
.cta:hover .icon {
  rotate: 90deg;
}

.cta.cta__text .icon {
  color: var(--color-primary);
}
.cta.cta__text:hover {
  font-weight: 600;
}

.cta.cta__pill {
  font-family: var(--font-body);
  line-height: 1;
  letter-spacing: 0.12em;
  gap: 0.625rem;
  padding: 0.85rem 1rem;
  border-radius: 0;
  background-color: transparent;
  color: currentColor;
}
.cta.cta__pill .icon svg {
  width: 0.75rem;
  height: 0.75rem;
}
.cta.cta__pill:hover {
  color: var(--color-accent);
}

.cta.cta__pill::before,
.cta.cta__pill::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(currentColor, currentColor) left top/0.35rem 1px no-repeat, linear-gradient(currentColor, currentColor) left top/1px 0.35rem no-repeat, linear-gradient(currentColor, currentColor) right top/0.35rem 1px no-repeat, linear-gradient(currentColor, currentColor) right top/1px 0.35rem no-repeat, linear-gradient(currentColor, currentColor) left bottom/0.35rem 1px no-repeat, linear-gradient(currentColor, currentColor) left bottom/1px 0.35rem no-repeat, linear-gradient(currentColor, currentColor) right bottom/0.35rem 1px no-repeat, linear-gradient(currentColor, currentColor) right bottom/1px 0.35rem no-repeat;
  transition: opacity var(--transition-base);
}

.cta.cta__pill.secondary {
  background-color: var(--color-muted);
}
.cta.cta__pill.secondary:hover {
  background-color: var(--color-surface);
}

.cta.cta__pill.cta__ghost {
  background-color: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}
.cta.cta__pill.cta__ghost:hover {
  color: var(--color-primary);
  background-color: var(--color-white);
}

.cta.cta__white {
  color: var(--color-white);
}
.cta.cta__white .icon {
  color: var(--color-white);
}

.button-row {
  gap: 0.75rem;
}

.mobile-only {
  display: none;
}

/* Core */
.sr-only {
  display: none;
}

.mobile-only {
  display: none;
}

.image-wrap img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

.image-wrap.portrait img {
  aspect-ratio: 4/5;
}

.image-wrap.landscape img {
  aspect-ratio: 6/4;
}

img {
  object-position: center center;
  /* Fallback */
}

img[data-focal-x] {
  object-position: var(--_focal-x) var(--_focal-y);
}

.eyebrow {
  font-size: var(--text-sm);
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0;
}

.link {
  text-decoration: underline;
  color: currentColor;
}

.posted-on {
  color: var(--color-primary);
  font-size: var(--text-sm);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}

.posted-on .updated:not(.published) {
  display: none;
}

p iframe {
  width: 100%;
}

iframe.video {
  aspect-ratio: 16/9;
  width: 100%;
  background-color: var(--color-black);
}

.media-wrap .video {
  width: 100%;
}

/**
 * Base animation
 */
[data-scroll] .card {
  translate: 0 2rem;
  opacity: 0.8;
  --_transition-delay: calc(50ms + (var(--_item-index) * 75ms));
  transition: translate 350ms ease var(--_transition-delay), opacity 350ms ease var(--_transition-delay);
  will-change: translate, opacity;
}

[data-scroll].is-inview .card {
  translate: 0 0;
  opacity: 1;
}

.btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  box-sizing: border-box;
  padding: 12px 16px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: var(--font-normal);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transform: scale(1);
  transform-origin: center;
  transition: transform 220ms var(--ease-snappy);
  cursor: pointer;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  transform: scale(1.045);
}
.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(currentColor, currentColor) left top/0.5rem 1.5px no-repeat, linear-gradient(currentColor, currentColor) left top/1.5px 0.5rem no-repeat, linear-gradient(currentColor, currentColor) right top/0.5rem 1.5px no-repeat, linear-gradient(currentColor, currentColor) right top/1.5px 0.5rem no-repeat, linear-gradient(currentColor, currentColor) left bottom/0.5rem 1.5px no-repeat, linear-gradient(currentColor, currentColor) left bottom/1.5px 0.5rem no-repeat, linear-gradient(currentColor, currentColor) right bottom/0.5rem 1.5px no-repeat, linear-gradient(currentColor, currentColor) right bottom/1.5px 0.5rem no-repeat;
}

.btn__text {
  display: inline-block;
}

.btn--light {
  color: var(--color-parchment);
}

.btn--dark {
  color: var(--color-parchment);
  background-color: var(--color-mahogany);
  box-shadow: inset 0 0 0 1.5px var(--color-parchment);
}

.btn--dark::before,
.btn--dark::after {
  display: none;
}

/** MEGA MENU STYLES */
#masthead {
  --color-nav-text: var(--color-black);
  --color-nav-bg: var(--color-secondary);
  --_color-border: color-mix(in srgb, var(--color-nav-text), transparent 80%);
  --_nav-transition-in-duration: 400ms;
  --_nav-item-transition-in-duration: 300ms;
  --_nav-item-transition-delay: 220ms;
  --_nav-item-transition-stagger: 45ms;
}

#masthead {
  position: relative;
  z-index: 20;
}
#masthead #siteNavigation {
  position: relative;
  z-index: 20;
  align-items: center;
  transition: color 250ms ease;
}
#masthead .main-navigation__wrap {
  transition: opacity 250ms ease;
  opacity: 1;
}
@media (max-width: 768px) {
  #masthead .main-navigation__wrap {
    display: none;
  }
}
@media (max-width: 1024px) {
  #masthead.menu-active .main-navigation__wrap {
    opacity: 0;
  }
}
#masthead.menu-active .menu-toggle svg line:nth-of-type(1) {
  transform: translateX(8px) rotate(45deg) scaleX(0.6667);
}
#masthead.menu-active .menu-toggle svg line:nth-of-type(2) {
  transform: translateX(8px) rotate(-45deg) scaleX(0.6667);
}

body:has(header.has-layout-hero) #masthead > .site-navigation {
  color: var(--color-white);
}

body:has(header.has-layout-hero) #masthead.menu-active > .site-navigation {
  color: var(--color-white);
}

body.has-page-builder-hero #masthead {
  position: absolute;
  inset: 0 0 auto;
  color: var(--color-background);
  background: transparent;
}

body.admin-bar.has-page-builder-hero #masthead {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar.has-page-builder-hero #masthead {
    top: 46px;
  }
}

body:has(#masthead.menu-active) {
  overflow: hidden;
  height: 100svh;
}

/* Header Nav Stuff */
.screen-reader-text {
  visibility: hidden;
  display: none;
}

.site-header {
  padding-block: 2rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .site-header {
    padding: 20px 16px;
  }
}

.site-header .menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.main-navigation__wrap .menu a {
  color: var(--color-parchment);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
}

.legatum-law-logo__wrap,
.legatum-law-logo__picture {
  display: flex;
  align-items: center;
}

.legatum-law-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 20px;
  max-height: 20px;
}
@media (max-width: 768px) {
  .legatum-law-logo {
    height: 2rem;
    width: 44px;
    height: 24px;
  }
}

.site-header .menu-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}
.site-header .menu-button.menu-toggle {
  color: var(--color-parchment);
  display: none;
}
@media (max-width: 768px) {
  .site-header .menu-button.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.site-header .menu-button.menu-toggle svg {
  width: 48px;
  height: 48px;
  display: block;
}
.site-header .menu-button.menu-toggle svg line {
  transition: all 150ms ease;
  transform-box: view-box;
  transform-origin: center;
  opacity: 1;
}
.site-header .menu-button.menu-toggle svg line:nth-of-type(1) {
  transform: translateY(-5px);
}
.site-header .menu-button.menu-toggle svg line:nth-of-type(2) {
  transform: translateY(5px);
}

.main-navigation__utilities {
  display: none;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .main-navigation__utilities {
    display: flex;
  }
}

#fullMenuContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-nav-bg);
  color: var(--color-white);
  z-index: 10;
  padding: 10rem var(--gutter) 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  translate: 100% 0;
  visibility: hidden;
  transition: translate var(--_nav-transition-in-duration) var(--ease-fluid), visibility 0s linear var(--_nav-transition-in-duration);
}
#fullMenuContainer > * {
  max-width: var(--max-width);
  margin-inline: auto;
}
#fullMenuContainer .menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-row-gap) var(--grid-col-gap);
}
@media (max-width: 1024px) {
  #fullMenuContainer .menu {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
  }
}
#fullMenuContainer #fullMenu {
  width: 100%;
}
@media (max-width: 1024px) {
  #fullMenuContainer #fullMenu:has(.menu-item.active) > .menu > .menu-item {
    transition-delay: 0ms;
    --_transition-in-delay: 0ms;
  }
  #fullMenuContainer #fullMenu:has(.menu-item.active) > .menu > .menu-item:not(.active) {
    opacity: 0.2;
  }
}
#fullMenuContainer .menu > li > a {
  display: block;
  font-size: 3rem;
  line-height: var(--line-height-heading);
}
#fullMenuContainer .sub-menu {
  font-size: 3rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: solid 1px currentColor;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  #fullMenuContainer .sub-menu {
    margin-top: 1rem;
    padding-top: 0;
    gap: 1rem;
    overflow: hidden;
    transition: height 350ms ease;
  }
  #fullMenuContainer .sub-menu > *:first-child {
    margin-top: 1.5rem;
  }
}
#fullMenuContainer .menu > li {
  --_item-index: 1;
  opacity: 0;
  translate: 0 1.5rem;
  transition: opacity 300ms ease, translate 350ms var(--ease-fluid);
}
#fullMenuContainer .menu > li:nth-child(1) {
  --_item-index: 1;
}
#fullMenuContainer .menu > li:nth-child(2) {
  --_item-index: 2;
}
#fullMenuContainer .menu > li:nth-child(3) {
  --_item-index: 3;
}
#fullMenuContainer .menu > li:nth-child(4) {
  --_item-index: 4;
}
#fullMenuContainer .menu > li:nth-child(5) {
  --_item-index: 5;
}
#fullMenuContainer .menu > li:nth-child(6) {
  --_item-index: 6;
}
#fullMenuContainer .menu > li:nth-child(7) {
  --_item-index: 7;
}
#fullMenuContainer .menu > li:nth-child(8) {
  --_item-index: 8;
}
#fullMenuContainer {
  /** Mobile menu active! */
}
@media (max-width: 768px) {
  #fullMenuContainer {
    max-width: none;
    right: 0;
    left: unset;
    translate: 100% 0%;
    justify-content: flex-end;
    padding: 8rem var(--gutter) var(--spacing-8);
  }
  #fullMenuContainer .menu a {
    color: var(--color-background);
  }
}

#fullMenuContainer.active {
  translate: 0 0;
  visibility: visible;
  transition: translate var(--_nav-transition-in-duration) var(--ease-fluid), visibility 0s linear 0s;
}
#fullMenuContainer.active .menu > li {
  opacity: 1;
  translate: 0 0;
  transition-delay: calc(var(--_nav-item-transition-delay) + (var(--_item-index) - 1) * var(--_nav-item-transition-stagger));
}

#searchFormContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-nav-bg);
  color: var(--color-nav-text);
  z-index: 10;
  padding: 10rem var(--gutter) 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  translate: 0 -100%;
  transition: all var(--_nav-transition-in-duration) var(--ease-fluid);
}
#searchFormContainer.active {
  translate: 0 0;
}
#searchFormContainer.active .search-form {
  translate: 0 0;
  opacity: 1;
}
#searchFormContainer .search-form {
  --_transition-in-delay: calc(var(--_nav-transition-in-duration) + 25ms);
  translate: -3rem 0%;
  opacity: 0;
  transition: all 300ms var(--ease-fluid) var(--_transition-in-delay);
}

.search-input-group {
  width: 100%;
  display: flex;
  gap: 0.25rem;
}
.search-input-group #searchInput {
  width: 100%;
  padding: 1rem;
  font-size: var(--text-xl);
  border: solid 1px var(--_color-border);
  border-radius: 0.25rem;
}
.search-input-group #searchGoButton {
  padding: 0.5rem;
  font-size: var(--text-xl);
  border: solid 1px var(--_color-border);
  border-radius: 0.25rem;
  background-color: var(--color-green);
  color: var(--color-nav-text);
  cursor: pointer;
  aspect-ratio: 1/1;
  width: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.search-input-group #searchGoButton.loading {
  background-color: var(--color-orange);
}
.search-input-group #searchGoButton.loading svg.loading {
  display: block;
}
.search-input-group #searchGoButton.loading svg.search {
  display: none;
}
.search-input-group #searchGoButton svg.loading {
  display: none;
  animation: spin 1.25s cubic-bezier(0.49, 0.01, 0.25, 0.845) infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideIn {
  0% {
    transform: translate(-2rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.search-results .search-results-title {
  padding: 0.5rem 0.75rem;
  display: block;
  font-size: var(--text-sm);
  opacity: 0.8;
}

.search-results-container {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  overflow-y: auto;
  max-height: 80vh;
  border-top: solid 1px var(--_color-border);
}

.search-result-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding-block: 1rem;
  border-bottom: solid 1px var(--_color-border);
  animation: slideIn 300ms ease;
  animation-fill-mode: forwards;
}
.search-result-link .search-result-title {
  font-size: var(--text-2xl);
  font-weight: 600;
}
.search-result-link .search-result-icon {
  background-color: var(--color-white);
  padding: 0.25rem;
  border-radius: 0.25rem;
  min-width: 2rem;
}
.search-result-link .search-result-icon svg path {
  fill: var(--color-orange);
}

/* Mega menu walker markup: eyebrow (e.g. “Who we are”) above section title */
.mega-menu__page--aside .eyebrow {
  margin-bottom: 24px;
}

/**
 * Block Headers
 */
/* Page Headers */
header.entry-header {
  --_header-margin: 4rem;
}

header.has-layout-minimal {
  margin-top: var(--_header-margin);
}

header.has-layout-feature {
  margin-top: var(--_header-margin);
  position: relative;
  color: var(--clr--white);
  z-index: 2;
  --_header-offset: -11rem;
  --_min-height: calc(70svh - 0rem);
  min-height: var(--_min-height);
}
@media (max-width: 1024px) {
  header.has-layout-feature {
    --_min-height: 0;
  }
}
header.has-layout-feature > * {
  position: relative;
  z-index: 2;
}
header.has-layout-feature::before {
  content: "";
  position: absolute;
  inset: var(--_header-offset) 0 0 0;
  background-color: var(--clr--black);
  opacity: 0.6;
  z-index: 1;
  min-height: var(--_min-height);
}
header.has-layout-feature .page-title {
  row-gap: 2rem;
}

.page-header__video {
  width: 100%;
}

header.has-layout-hero {
  position: relative;
  color: var(--color-white);
  z-index: 2;
  --_header-offset: -7rem;
  translate: 0px var(--_header-offset);
}
header.has-layout-hero .page-header__content {
  padding-top: calc(var(--_header-offset) * -1 + var(--_header-margin));
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
header.has-layout-hero .page-header__image-wrap {
  position: relative;
}

header.post-header {
  padding-top: 2rem;
}
header.post-header .page-header__image {
  aspect-ratio: 16/9;
  object-fit: cover;
}

/*
header [data-scroll] {
    transition: all 350ms ease-out;
    translate: 0rem 3rem;
    opacity: 0.2;

    &.is-inview {
        translate: 0rem 0rem;
        opacity: 1;
    }
}
*/
/**
 *
 *
 */
.site-footer {
  background-color: var(--color-secondary);
  color: var(--color-background);
  padding-block: 5rem 2.5rem;
}
.site-footer a {
  color: currentColor;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 2rem;
  row-gap: 2.5rem;
  align-items: stretch;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(249, 240, 216, 0.3);
}

.site-footer__brand {
  grid-column: 1/span 6;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.site-footer__title {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-headings);
  font-size: clamp(1.75rem, 1.5rem + 0.65vw, 2rem);
  font-weight: var(--font-heading-weight);
  line-height: 1.24;
}

.site-footer__logo {
  display: block;
  margin-top: auto;
  width: min(100%, 26.25rem);
}

.site-footer__logo-img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__label {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.92rem + 0.22vw, 1.25rem);
  font-weight: var(--font-normal);
  line-height: 1.46;
  text-transform: uppercase;
}

.site-footer__block {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.site-footer__block--locations {
  grid-column: 7/span 3;
}

.site-footer__block--contact {
  grid-column: 10/span 3;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-footer__list li {
  font-family: var(--font-headings);
  font-size: clamp(1.375rem, 1.2rem + 0.55vw, 1.75rem);
  font-weight: var(--font-heading-weight);
  line-height: 1.3;
}

.site-footer__note {
  margin: 0;
  font-family: var(--font-headings);
  font-size: clamp(1.375rem, 1.2rem + 0.55vw, 1.75rem);
  font-weight: var(--font-heading-weight);
  font-style: italic;
  line-height: 1.3;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .site-footer__brand {
    grid-column: 1/-1;
  }
  .site-footer__logo {
    margin-top: var(--spacing-8);
  }
  .site-footer__block--locations {
    grid-column: 1/span 6;
  }
  .site-footer__block--contact {
    grid-column: 7/span 6;
  }
}
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .site-footer__brand,
  .site-footer__block--locations,
  .site-footer__block--contact {
    grid-column: 1/-1;
  }
  .site-footer__logo {
    margin-top: var(--spacing-8);
  }
  .site-footer__title {
    font-size: clamp(2rem, 1.65rem + 1.5vw, 2.5rem);
  }
}
.site-footer__mobile {
  display: none;
}

.site-footer__desktop {
  display: block;
}

@media (max-width: 768px) {
  .site-footer__desktop {
    display: none;
  }
  .site-footer {
    padding-block: 0;
  }
  .site-footer__mobile {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-block: 80px 2.5rem;
    padding-inline: var(--gutter);
    color: var(--color-background);
  }
  .site-footer__mobile a {
    color: currentColor;
    text-decoration: none;
  }
  .site-footer__mobile a:hover {
    text-decoration: underline;
    text-underline-offset: 0.12em;
  }
  .site-footer__mobile-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-top: 1px solid rgba(249, 240, 216, 0.3);
    padding-top: 1.5rem;
  }
  .site-footer__mobile-title {
    margin: 0;
    font-family: var(--font-headings);
    font-size: clamp(2.75rem, 2rem + 3.75vw, 4rem);
    font-weight: var(--font-heading-weight);
    line-height: 1.14;
  }
  .site-footer__mobile-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .site-footer__mobile-item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .site-footer__mobile-label {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: var(--font-normal);
    line-height: 1.46;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .site-footer__mobile-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .site-footer__mobile-list span {
    font-family: var(--font-headings);
    font-size: clamp(1.375rem, 1.1rem + 1.25vw, 1.75rem);
    font-weight: var(--font-heading-weight);
    line-height: 1.3;
  }
  .site-footer__mobile-note {
    font-style: italic;
    opacity: 0.5;
    font-size: clamp(1.375rem, 1.1rem + 1.25vw, 1.75rem) !important;
  }
  .site-footer__mobile-logo-wrap {
    border-top: 1px solid rgba(249, 240, 216, 0.3);
    padding-top: 1.5rem;
  }
  .site-footer__mobile-logo-wrap a {
    display: block;
  }
  .site-footer__mobile-logo {
    display: block;
    width: 100%;
    height: auto;
  }
}
ol.breadcrumbs {
  padding-block: 1rem;
  padding-inline: var(--gutter);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
}

.breadcrumbs-container {
  border-bottom: solid 1px color-mix(in srgb, currentColor, transparent 80%);
}
@media (max-width: 768px) {
  .breadcrumbs-container {
    overflow-x: scroll;
  }
  .breadcrumbs-container ol.breadcrumbs {
    width: max-content;
    min-width: 100%;
  }
  .breadcrumbs-container li {
    width: max-content;
  }
}

main > article {
  border-top: solid 1px color-mix(in srgb, currentColor, transparent 80%);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 0;
}

:where(.block__image-cards, .block__image-content, .block__steps, .block__testimonial-slider, .block__accordion) {
  --landing-title-content-gap: 5rem;
}
@media (max-width: 768px) {
  :where(.block__image-cards, .block__image-content, .block__steps, .block__testimonial-slider, .block__accordion) {
    --landing-title-content-gap: 3rem;
  }
}

.landing-card-grid {
  display: grid;
  grid-template-columns: repeat(var(--items-per-row, 3), minmax(0, 1fr));
  gap: var(--grid-col-gap);
}
@media (max-width: 768px) {
  .landing-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .landing-card-grid {
    grid-template-columns: 1fr;
  }
}

.landing-card {
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: var(--radius-md);
  background: transparent;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.landing-card h3 {
  font-size: var(--text-2xl);
}

.block.has-primary-background-color {
  color: var(--color-background);
  background: var(--color-primary);
}

.block.has-secondary-background-color {
  color: var(--color-background);
  background: var(--color-secondary);
}

.block.has-accent-background-color {
  color: var(--color-primary);
  background: var(--color-accent);
}

.block__hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-background);
  overflow: hidden;
  background: var(--color-primary);
}
.block__hero .block-inner {
  position: relative;
  z-index: 1;
}
.block__hero .hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.block__hero .hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.03;
}
@media (prefers-reduced-motion: no-preference) {
  .block__hero .hero__background img {
    animation: hero-bg-zoom-out 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}
.block__hero .hero__gradient {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 306px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(64, 32, 34, 0) 0%, #402022 98.37%);
}
.block__hero .hero__content {
  margin-inline: auto;
  text-align: center;
}
.block__hero .hero__title-line {
  display: block;
}
.block__hero .hero__subtitle {
  max-width: 32rem;
  margin-inline: auto;
  font-size: var(--text-lg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .block__hero .hero__subtitle {
    max-width: 200px;
  }
}
.block__hero .button-row {
  justify-content: center;
  margin-top: var(--spacing-7);
}
@media (prefers-reduced-motion: no-preference) {
  .block__hero h1 {
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
  }
  .block__hero .hero__subtitle {
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  }
  .block__hero .button-row {
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
  }
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hero-bg-zoom-out {
  from {
    transform: scale(4);
  }
  to {
    transform: scale(1);
  }
}
.block__image-cards {
  --image-card-filter: grayscale(100%) sepia(22%) brightness(0.7);
  color: var(--color-parchment);
  background: var(--color-mahogany);
}
.block__image-cards .image-cards__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--landing-title-content-gap);
}
.block__image-cards .image-cards__heading {
  margin-bottom: 0;
  text-align: center;
}
.block__image-cards .image-cards__grid {
  gap: 2rem;
  padding-inline: calc(var(--column-width-vw) + var(--grid-col-gap));
}
.block__image-cards .image-card {
  position: relative;
  aspect-ratio: 370/432;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.block__image-cards .image-card__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.block__image-cards .image-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: var(--image-card-filter);
}
.block__image-cards .image-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(64, 32, 34, 0.55);
}
.block__image-cards .image-card__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: var(--color-parchment);
}
.block__image-cards .image-card__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.block__image-cards .image-card__bullet {
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: var(--color-parchment);
  margin-bottom: 0.4375rem;
}
.block__image-cards .image-card__label-text,
.block__image-cards .image-card__desc {
  font-family: var(--font-body);
  font-weight: var(--font-normal);
  font-size: var(--text-lg);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--color-parchment);
}
@media (max-width: 768px) {
  .block__image-cards .image-cards__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-inline: 0;
  }
}

.block__image-content {
  --image-content-flow-gap: clamp(2rem, 3vw, 2.5rem);
  --landing-copy-width: calc(var(--column-width-vw) * 6 + var(--grid-col-gap) * 5);
  color: var(--color-primary);
  background: var(--color-background);
}
.block__image-content .image-content__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block__image-content .image-content__heading {
  margin-bottom: 0;
  text-align: center;
}
.block__image-content .image-content__image {
  width: min(220px, 50vw);
  aspect-ratio: 220/295;
}
.block__image-content .image-content__image img {
  width: 100%;
  height: 100%;
}
.block__image-content .image-content__heading + .image-content__image {
  margin-top: 24px;
}
.block__image-content .image-content__heading + .image-content__content {
  margin-top: var(--landing-title-content-gap);
}
.block__image-content .image-content__content {
  max-width: var(--landing-copy-width);
  text-align: center;
}
.block__image-content .image-content__image + .image-content__content {
  margin-top: var(--image-content-flow-gap);
}
.block__image-content .image-content__prose p {
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 0.95rem + 0.28vw, 1.125rem);
  line-height: 1.46;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .block__image-content {
    --landing-copy-width: calc(var(--column-width-vw) * 4 + var(--grid-col-gap) * 3);
  }
}
@media (max-width: 480px) {
  .block__image-content .image-content__prose p {
    font-size: var(--text-base);
  }
}

.block__steps {
  --steps-card-gap: clamp(2.5rem, 6.5vw, 7rem);
  color: var(--color-primary);
  background: var(--color-background);
}
.block__steps .steps__inner {
  display: flex;
  flex-direction: column;
  gap: var(--landing-title-content-gap);
}
.block__steps .steps__heading {
  margin-bottom: 0;
  text-align: center;
}
.block__steps .steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 2rem;
  padding-inline: calc(var(--column-width-vw) + var(--grid-col-gap));
}
.block__steps .step-card {
  border-left: 1px solid color-mix(in srgb, var(--color-primary) 30%, transparent);
  padding: 0.75rem 0 0.75rem 1rem;
  min-height: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--steps-card-gap);
}
.block__steps .step-card h3 {
  margin: 0;
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.75rem);
  line-height: 1.3;
}
.block__steps .step-card p {
  margin: 0;
  font-size: clamp(1.125rem, 1rem + 0.6vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.block__steps .step-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.block__steps .step-card__number {
  flex-shrink: 0;
  color: inherit;
  font-family: var(--font-headings);
  font-size: clamp(1.4rem, 1.2rem + 0.9vw, 1.75rem);
  font-weight: var(--font-heading-weight);
  line-height: 1.3;
}
@media (max-width: 768px) {
  .block__steps .steps__grid {
    grid-template-columns: 1fr;
    padding-inline: 0;
    gap: 1.5rem;
  }
  .block__steps .step-card {
    gap: var(--spacing-7);
  }
}

.block__testimonial-slider {
  color: var(--color-background);
  background: var(--color-primary);
}
.block__testimonial-slider .testimonial-slider__inner {
  display: grid;
  gap: var(--landing-title-content-gap);
  grid-template-columns: minmax(0, 1fr) auto;
}
.block__testimonial-slider .testimonial-slider__inner:not(:has(.testimonial-slider__nav)) .testimonial-slider__head {
  grid-column: 1/-1;
}
.block__testimonial-slider .testimonial-slider__head {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  min-width: 0;
}
.block__testimonial-slider .testimonial-slider__heading {
  margin-bottom: 0;
}
.block__testimonial-slider .testimonial-slider__nav {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
}
.block__testimonial-slider:not(:has(.testimonial-slider__head)) .testimonial-slider__nav {
  grid-column: 2;
}
.block__testimonial-slider:not(:has(.testimonial-slider__head)):not(:has(.testimonial-slider__nav)) .testimonial-slider.swiper {
  grid-column: 1/-1;
  grid-row: 1;
}
.block__testimonial-slider .testimonial-slider.swiper {
  grid-column: 1/-1;
  grid-row: 2;
  width: 100%;
  margin-inline: 0;
  padding-bottom: var(--spacing-4);
  overflow: visible;
}
.block__testimonial-slider .testimonial-slider.swiper .swiper-wrapper {
  align-items: stretch;
}
.block__testimonial-slider .testimonial-slider__arrow {
  width: 5rem;
  height: 5rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: opacity var(--transition-base);
}
.block__testimonial-slider .testimonial-slider__arrow:hover, .block__testimonial-slider .testimonial-slider__arrow:focus-visible {
  opacity: 0.8;
}
.block__testimonial-slider .testimonial-slider__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.block__testimonial-slider .testimonial-slider__arrow img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.block__testimonial-slider .testimonial-slide {
  margin: 0;
  width: calc(var(--column-width-vw) * 5 + var(--grid-col-gap) * 4);
  height: auto;
  min-height: clamp(24rem, 33vw, 31.875rem);
  border: 1px solid color-mix(in srgb, var(--color-background) 70%, transparent);
  padding: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
.block__testimonial-slider .testimonial-slide blockquote {
  margin: 0;
  font-family: var(--font-headings);
  font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem);
  line-height: 1.24;
}
.block__testimonial-slider .testimonial-slide figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.block__testimonial-slider .testimonial-slide strong,
.block__testimonial-slider .testimonial-slide span {
  font-family: var(--font-body);
  font-weight: var(--font-normal);
  font-size: clamp(1.125rem, 1rem + 0.55vw, 1.5rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.block__testimonial-slider .testimonial-slide span {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .block__testimonial-slider .testimonial-slider__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }
  .block__testimonial-slider .testimonial-slider__head {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin-block-end: var(--landing-title-content-gap);
  }
  .block__testimonial-slider .testimonial-slider.swiper {
    grid-column: 1;
    grid-row: 2;
  }
  .block__testimonial-slider:has(.testimonial-slider__nav) .testimonial-slider.swiper {
    padding-bottom: 0;
  }
  .block__testimonial-slider .testimonial-slider__nav {
    grid-column: 1;
    grid-row: 3;
    justify-self: end;
    gap: 0.5rem;
    margin-block-start: 32px;
  }
  .block__testimonial-slider:not(:has(.testimonial-slider__head)):has(.testimonial-slider__nav) .testimonial-slider.swiper {
    grid-row: 1;
  }
  .block__testimonial-slider:not(:has(.testimonial-slider__head)):has(.testimonial-slider__nav) .testimonial-slider__nav {
    grid-row: 2;
  }
  .block__testimonial-slider:not(:has(.testimonial-slider__head)):not(:has(.testimonial-slider__nav)) .testimonial-slider.swiper {
    grid-column: 1;
    grid-row: 1;
  }
  .block__testimonial-slider .testimonial-slider__arrow {
    width: 3.5rem;
    height: 3.5rem;
  }
  .block__testimonial-slider .testimonial-slide {
    width: auto;
  }
}

.block__accordion {
  --accordion-max-width: calc(var(--column-width-vw) * 8 + var(--grid-col-gap) * 7);
  color: var(--color-background);
  background: var(--color-primary);
}
.block__accordion .accordion__inner {
  width: min(100%, var(--accordion-max-width));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--landing-title-content-gap);
}
.block__accordion .accordion__heading {
  margin-bottom: 0;
  text-align: center;
}
.block__accordion .accordion-list {
  border-top: 1px solid color-mix(in srgb, currentColor 30%, transparent);
}
.block__accordion .accordion-item {
  border-bottom: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  padding-block: 20px;
}
.block__accordion .accordion-item summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-headings);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.75rem);
  line-height: 1.3;
  font-weight: var(--font-heading-weight);
  padding: 0;
}
.block__accordion .accordion-item summary::-webkit-details-marker {
  display: none;
}
.block__accordion .accordion-item summary::after {
  content: "+";
  flex-shrink: 0;
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 1.75rem;
  padding-top: 8px;
  line-height: 1;
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .block__accordion .accordion-item summary::after {
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  }
}
.block__accordion .accordion-item[open] summary::after {
  transform: rotate(135deg);
}
.block__accordion .accordion-item .accordion-item__content {
  max-width: 48rem;
  padding-top: 1.5rem;
  color: color-mix(in srgb, var(--color-background) 82%, transparent);
}
.block__accordion .accordion-item .accordion-item__content p {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.28vw, 1.125rem);
  line-height: 1.46;
}
@media (prefers-reduced-motion: no-preference) {
  .block__accordion .accordion-item[open] .accordion-item__content {
    animation: accordion-panel-enter 0.45s cubic-bezier(0.33, 1, 0.68, 1) both;
  }
}
@keyframes accordion-panel-enter {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .block__accordion {
    --accordion-max-width: 100%;
  }
}

/* Smooth height open/close — browsers with ::details-content + interpolate-size (e.g. Chrome 131+) */
@supports (interpolate-size: allow-keywords) and selector(::details-content) {
  .block__accordion .accordion-item {
    interpolate-size: allow-keywords;
  }
  .block__accordion .accordion-item::details-content {
    overflow: clip;
    block-size: 0;
    opacity: 0;
  }
  @media (prefers-reduced-motion: no-preference) {
    .block__accordion .accordion-item::details-content {
      transition: block-size 0.45s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.35s cubic-bezier(0.33, 1, 0.68, 1), content-visibility 0.45s allow-discrete;
    }
  }
  .block__accordion .accordion-item[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
  .block__accordion .accordion-item[open] .accordion-item__content {
    animation: none;
  }
}
.block {
  padding-block: var(--block-space);
  scroll-margin-top: var(--spacing-10);
}

/*# sourceMappingURL=styles.css.map */
