/* ==================== FONT FACES ==================== */
@font-face {
    font-family: 'DM Serif Display';
    font-style: normal;
    font-weight: 400;
    src: local('DM Serif Display Regular'), url('assets/fonts/DMSerifDisplay-Regular.woff') format('woff');
}

@font-face {
    font-family: 'DM Serif Display';
    font-style: italic;
    font-weight: 400;
    src: local('DM Serif Display Italic'), url('assets/fonts/DMSerifDisplay-Italic.woff') format('woff');
}

@font-face {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: 300;
    src: url('assets/fonts/avenir-light.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: 400;
    src: url('assets/fonts/avenir-book.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: 500;
    src: url('assets/fonts/avenir-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: 700;
    src: url('assets/fonts/avenir-heavy.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir';
    font-style: normal;
    font-weight: 900;
    src: url('assets/fonts/avenir-black.ttf') format('truetype');
}

/* ==================== HEADER STYLES ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    background-color: #FFFFFF;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 170px;
    height: 30px;
    object-fit: contain;
}

/* Logo styling */
.logo img[src*="logo.png"] {
}

.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #292929;
    text-decoration: none;
    font-family: 'Avenir', sans-serif;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e5be56;
    transition: width 0.25s ease;
}

.main-nav a:hover {
    color: #e5be56;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active {
    color: #e5be56;
}

.main-nav a.active::after {
    width: 100%;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-link {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.25s ease;
    border-radius: 2px;
    overflow: hidden;
}

.lang-link:hover {
    opacity: 0.8;
}

.lang-link.active {
    opacity: 1;
}

.lang-link img {
    display: block;
    width: 24px;
    height: 16px;
    object-fit: cover;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Adjust body padding for fixed header */
body {
    padding-top: 70px;
}

/* Reset and Base Styles */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-text-size-adjust: none;
}

mark {
    background-color: transparent;
    color: inherit;
}

input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="text"], input[type="email"], select, textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

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

/* Root Variables */
:root {
    --background-height: 100vh;
    --site-language-alignment: left;
    --site-language-direction: ltr;
    --site-language-flex-alignment: flex-start;
    --site-language-indent-left: 1;
    --site-language-indent-right: 0;
    --site-language-margin-left: 0;
    --site-language-margin-right: auto;
    --viewport-height: 100vh;
}

/* Body Styles */
html {
    font-size: 16pt;
}

body {
    line-height: 1.0;
    min-height: var(--viewport-height);
    min-width: 320px;
    overflow-x: hidden;
    word-wrap: break-word;
    background-color: #2B2738;
}

body::before {
    background-attachment: scroll;
    content: '';
    display: block;
    height: var(--background-height);
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: scale(1);
    width: 100vw;
    z-index: 0;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20height%3D%22512%22%20preserveAspectRatio%3D%22none%22%3E%20%3Cstyle%20type%3D%22text%2Fcss%22%3E%20path%20%7B%20fill%3A%20none%3B%20stroke%3A%20rgba(255,255,255,0.071)%3B%20stroke-width%3A%201.01px%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20%7D%20%3C%2Fstyle%3E%20%3Cpath%20vector-effect%3D%22non-scaling-stroke%22%20d%3D%22M424%2C331.8c0%2C12.5-6.7%2C24.1-17.5%2C30.3l-132%2C76.2c-10.8%2C6.3-24.2%2C6.3-35%2C0l-132-76.2%20C96.7%2C355.8%2C90%2C344.3%2C90%2C331.8V179.2c0-12.5%2C6.7-24.1%2C17.5-30.3l132-76.2c10.8-6.3%2C24.2-6.3%2C35%2C0l132%2C76.2%20c10.8%2C6.3%2C17.5%2C17.8%2C17.5%2C30.3V331.8z%20M238.5%2C73l-256%2C147.6%20M273.5%2C439l252.1-145.4%20M256%2C634.7V378.3c0-12.5%2C6.7-24.1%2C17.5-30.3%20l252.1-145.4%20M256-122.7v256.4c0%2C12.5-6.7%2C24.1-17.5%2C30.3l-256%2C147.6%22%2F%3E%3C%2Fsvg%3E');
    background-size: 794px;
    background-position: center;
    background-repeat: repeat;
}

body::after {
    background-color: #2B2738;
    content: '';
    display: block;
    pointer-events: none;
    position: fixed;
    transform: scale(1);
    z-index: 1;
    height: 100%;
    left: 0;
    opacity: 0;
    top: 0;
    transition: opacity 0.5s ease-in-out 0s, visibility 0.5s 0s;
    visibility: hidden;
    width: 100%;
}

body.is-loading::after {
    opacity: 1;
    visibility: visible;
}

/* Typography */
u {
    text-decoration: underline;
}

strong {
    color: inherit;
    font-weight: bolder;
}

em {
    font-style: italic;
}

code {
    background-color: rgba(144,144,144,0.25);
    border-radius: 0.25em;
    font-family: 'Lucida Console', 'Courier New', monospace;
    font-size: 0.9em;
    font-weight: normal;
    letter-spacing: 0;
    margin: 0 0.25em;
    padding: 0.25em 0.5em;
    text-indent: 0;
}

mark {
    background-color: rgba(144,144,144,0.25);
}

spoiler-text {
    -webkit-text-stroke: 0;
    background-color: rgba(32,32,32,0.75);
    text-shadow: none;
    text-stroke: 0;
    color: transparent;
    cursor: pointer;
    transition: color 0.1s ease-in-out;
}

spoiler-text.active {
    color: #FFFFFF;
    cursor: text;
}

s {
    text-decoration: line-through;
}

sub {
    font-size: smaller;
    vertical-align: sub;
}

sup {
    font-size: smaller;
    vertical-align: super;
}

a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.25s ease;
}

a[onclick]:not([href]) {
    cursor: pointer;
}

unloaded-script {
    display: none;
}

/* Site Wrapper */
.site-wrapper {
    -webkit-overflow-scrolling: touch;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--viewport-height);
    overflow: visible;
    position: relative;
    z-index: 2;
}

/* Site Main */
.site-main {
    --alignment: center;
    --flex-alignment: center;
    --indent-left: 1;
    --indent-right: 1;
    --margin-left: auto;
    --margin-right: auto;
    --border-radius-tl: 0;
    --border-radius-tr: 0;
    --border-radius-br: 0;
    --border-radius-bl: 0;
    align-items: center;
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    justify-content: center;
    max-width: 100%;
    position: relative;
    text-align: var(--alignment);
    z-index: 1;
    transition: opacity 0.25s ease-in-out 0s;
}

.site-main > .inner {
    --padding-horizontal: 3rem;
    --padding-vertical: 0;
    --spacing: 2rem;
    --width: 90rem;
    border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
    max-width: 100%;
    position: relative;
    width: var(--width);
    z-index: 1;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.site-main > .inner > header {
    margin-bottom: var(--spacing);
}

.site-main > .inner > footer {
    margin-top: var(--spacing);
}

.site-main > .inner > * > * {
    margin-top: var(--spacing);
    margin-bottom: var(--spacing);
}

.site-main > .inner > * > :first-child {
    margin-top: 0 !important;
}

.site-main > .inner > * > :last-child {
    margin-bottom: 0 !important;
}

.site-main > .inner > .full {
    margin-left: calc(var(--padding-horizontal) * -1);
    max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
    width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
}

.site-main > .inner > .full:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    margin-top: calc(var(--padding-vertical) * -1) !important;
}

.site-main > .inner > .full:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    margin-bottom: calc(var(--padding-vertical) * -1) !important;
}

.site-main > .inner > .full.screen {
    border-radius: 0 !important;
    max-width: 100vw;
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    right: auto;
}

.site-main > .inner > * > .full {
    margin-left: calc(-3rem);
    max-width: calc(100% + 6rem + 0.4725px);
    width: calc(100% + 6rem + 0.4725px);
}

.site-main > .inner > * > .full.screen {
    border-radius: 0 !important;
    max-width: 100vw;
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    right: auto;
}

.site-main > .inner > .active > .full:first-child {
    margin-top: -7rem !important;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.site-main > .inner > .active {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.site-main > .inner > .active > .full:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    margin-bottom: -7rem !important;
}

body.is-loading .site-main {
    opacity: 0;
}

.site-main {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

/* Loader */
body #loader {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 6rem;
    left: calc(50% - 3rem);
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: calc(50% - 3rem);
    transition: opacity 1s ease, visibility 1s;
    visibility: hidden;
    width: 6rem;
    z-index: 100000;
}

body.with-loader #loader {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iOTZweCIgaGVpZ2h0PSI5NnB4IiB2aWV3Qm94PSIwIDAgOTYgOTYiIHpvb21BbmRQYW49ImRpc2FibGUiPjxzdHlsZT5yZWN0IHtmaWxsOiAjODg2QkQ3O2hlaWdodDogN3B4O3RyYW5zZm9ybS1ib3g6IGZpbGwtYm94O3RyYW5zZm9ybS1vcmlnaW46IGNlbnRlcjt3aWR0aDogMjBweDt9PC9zdHlsZT48cmVjdCB4PSIyNCIgeT0iNDgiIHJ4PSIzIiByeT0iMyIgb3BhY2l0eT0iMSIgc3R5bGU9InRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKSB0cmFuc2xhdGVZKC01MCUpIj48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iMHMiIGR1cj0iMXMiIHZhbHVlcz0iMC4zNzU7MTswLjM3NTswLjM3NTswLjM3NSIgcmVwZWF0RHVyPSJpbmRlZmluaXRlIiAvPjwvcmVjdD48cmVjdCB4PSIzMSIgeT0iMzEiIHJ4PSIzIiByeT0iMyIgb3BhY2l0eT0iMC4zNzUiIHN0eWxlPSJ0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTUwJSkgdHJhbnNsYXRlWSgtNTAlKSByb3RhdGUoNDVkZWcpIj48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iMC4xMnMiIGR1cj0iMXMiIHZhbHVlcz0iMC4zNzU7MTswLjM3NTswLjM3NTswLjM3NSIgcmVwZWF0RHVyPSJpbmRlZmluaXRlIiAvPjwvcmVjdD48cmVjdCB4PSI0OCIgeT0iMjQiIHJ4PSIzIiByeT0iMyIgb3BhY2l0eT0iMC4zNzUiIHN0eWxlPSJ0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTUwJSkgdHJhbnNsYXRlWSgtNTAlKSByb3RhdGUoOTBkZWcpIj48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iMC4yNHMiIGR1cj0iMXMiIHZhbHVlcz0iMC4zNzU7MTswLjM3NTswLjM3NTswLjM3NSIgcmVwZWF0RHVyPSJpbmRlZmluaXRlIiAvPjwvcmVjdD48cmVjdCB4PSI2NSIgeT0iMzEiIHJ4PSIzIiByeT0iMyIgb3BhY2l0eT0iMC4zNzUiIHN0eWxlPSJ0cmFuc2Zvcm06IHRyYW5zbGF0ZVgoLTUwJSkgdHJhbnNsYXRlWSgtNTAlKSByb3RhdGUoLTQ1ZGVnKSI+PGFuaW1hdGUgYXR0cmlidXRlTmFtZT0ib3BhY2l0eSIgYmVnaW49IjAuMzZzIiBkdXI9IjFzIiB2YWx1ZXM9IjAuMzc1OzE7MC4zNzU7MC4zNzU7MC4zNzUiIHJlcGVhdER1cj0iaW5kZWZpbml0ZSIgLz48L3JlY3Q+PHJlY3QgeD0iNzIiIHk9IjQ4IiByeD0iMyIgcnk9IjMiIG9wYWNpdHk9IjAuMzc1IiBzdHlsZT0idHJhbnNmb3JtOiB0cmFuc2xhdGVYKC01MCUpIHRyYW5zbGF0ZVkoLTUwJSkiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9Im9wYWNpdHkiIGJlZ2luPSIwLjQ4cyIgZHVyPSIxcyIgdmFsdWVzPSIwLjM3NTsxOzAuMzc1OzAuMzc1OzAuMzc1IiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PC9yZWN0PjxyZWN0IHg9IjY1IiB5PSI2NSIgcng9IjMiIHJ5PSIzIiBvcGFjaXR5PSIwLjM3NSIgc3R5bGU9InRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKSB0cmFuc2xhdGVZKC01MCUpIHJvdGF0ZSg0NWRlZykiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9Im9wYWNpdHkiIGJlZ2luPSIwLjYwcyIgZHVyPSIxcyIgdmFsdWVzPSIwLjM3NTsxOzAuMzc1OzAuMzc1OzAuMzc1IiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PC9yZWN0PjxyZWN0IHg9IjQ4IiB5PSI3MiIgcng9IjMiIHJ5PSIzIiBvcGFjaXR5PSIwLjM3NSIgc3R5bGU9InRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKSB0cmFuc2xhdGVZKC01MCUpIHJvdGF0ZSg5MGRlZykiPjxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9Im9wYWNpdHkiIGJlZ2luPSIwLjcycyIgZHVyPSIxcyIgdmFsdWVzPSIwLjM3NTsxOzAuMzc1OzAuMzc1OzAuMzc1IiByZXBlYXREdXI9ImluZGVmaW5pdGUiIC8+PC9yZWN0PjxyZWN0IHg9IjMxIiB5PSI2NSIgcng9IjMiIHJ5PSIzIiBvcGFjaXR5PSIwLjM3NSIgc3R5bGU9InRyYW5zZm9ybTogdHJhbnNsYXRlWCgtNTAlKSB0cmFuc2xhdGVZKC01MCUpIHJvdGF0ZSgtNDVkZWcpIj48YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJvcGFjaXR5IiBiZWdpbj0iMC44NHMiIGR1cj0iMXMiIHZhbHVlcz0iMC4zNzU7MTswLjM3NTswLjM3NTswLjM3NSIgcmVwZWF0RHVyPSJpbmRlZmluaXRlIiAvPjwvcmVjdD48L3N2Zz4=');
    opacity: 1;
    transform: scale(1.0);
    visibility: visible;
}

body.is-playing.with-loader #loader {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.25s ease, transform 0.75s ease, visibility 0.25s;
    visibility: hidden;
}

body.is-loading {
    pointer-events: none;
}

body.is-instant .site-main,
body.is-instant .site-main > .inner > *,
body.is-instant .site-main > .inner > section > * {
    transition: none !important;
}

body.is-instant::after {
    display: none !important;
    transition: none !important;
}

/* Container Component */
.container-component {
    position: relative;
}

.container-component > .wrapper {
    vertical-align: top;
    position: relative;
    max-width: 100%;
    border-radius: inherit;
}

.container-component > .wrapper > .inner {
    vertical-align: top;
    position: relative;
    max-width: 100%;
    border-radius: inherit;
    text-align: var(--alignment);
}

.container-component.full:first-child > .wrapper {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.container-component.full:last-child > .wrapper {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.container-component.full:first-child > .wrapper > .inner {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.container-component.full:last-child > .wrapper > .inner {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

/* Container Style 1 */
.container-component.style-1 {
    display: flex;
    width: 100%;
    min-height: var(--viewport-height);
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.container-component.style-1:not(:first-child) {
    margin-top: 0rem !important;
}

.container-component.style-1:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container-component.style-1 > .wrapper > .inner {
    --gutters: 5rem;
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.style-1 > .wrapper {
    max-width: var(--width);
    width: 70%;
}

.container-component.style-1.default > .wrapper > .inner > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.style-1.default > .wrapper > .inner > *:first-child {
    margin-top: 0 !important;
}

.container-component.style-1.default > .wrapper > .inner > *:last-child {
    margin-bottom: 0 !important;
}

.container-component.style-1.columns > .wrapper > .inner {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.container-component.style-1.columns > .wrapper > .inner > * {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: var(--alignment);
    padding: 0 0 0 var(--gutters);
}

.container-component.style-1.columns > .wrapper > .inner > * > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.style-1.columns > .wrapper > .inner > * > *:first-child {
    margin-top: 0 !important;
}

.container-component.style-1.columns > .wrapper > .inner > * > *:last-child {
    margin-bottom: 0 !important;
}

.container-component.style-1.columns > .wrapper > .inner > *:first-child {
    margin-left: calc(var(--gutters) * -1);
}

/* Container Style 2 - White */
.container-component.style-2 {
    display: flex;
    width: 100%;
    min-height: 45rem;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.container-component.style-2:not(:first-child) {
    margin-top: 0rem !important;
}

.container-component.style-2:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container-component.style-2 > .wrapper > .inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.style-2 > .wrapper {
    max-width: 100%;
    width: 100%;
}

.container-component.style-2.default > .wrapper > .inner > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.style-2.default > .wrapper > .inner > *:first-child {
    margin-top: 0 !important;
}

.container-component.style-2.default > .wrapper > .inner > *:last-child {
    margin-bottom: 0 !important;
}

.container-component.style-2.columns > .wrapper > .inner {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.container-component.style-2.columns > .wrapper > .inner > * {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: var(--alignment);
    padding: 0 0 0 var(--gutters);
}

.container-component.style-2.columns > .wrapper > .inner > * > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.style-2.columns > .wrapper > .inner > * > *:first-child {
    margin-top: 0 !important;
}

.container-component.style-2.columns > .wrapper > .inner > * > *:last-child {
    margin-bottom: 0 !important;
}

.container-component.style-2.columns > .wrapper > .inner > *:first-child {
    margin-left: calc(var(--gutters) * -1);
}

.container-component.style-2.columns > .wrapper > .inner > .full {
    align-self: stretch;
    min-height: calc(45rem - (var(--padding-vertical) * 2));
    position: relative;
}

/* 50/50 column widths for style-2 */
.container-component.style-2.columns > .wrapper > .inner > * {
    width: calc(50% + (var(--gutters) / 2));
}

/* Container Style 3 - White */
.container-component.style-3 {
    display: flex;
    width: 100%;
    min-height: 45rem;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
}

.container-component.style-3:not(:first-child) {
    margin-top: 0rem !important;
}

.container-component.style-3:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container-component.style-3 > .wrapper > .inner {
    --gutters: calc(var(--padding-horizontal) * 2);
    padding: var(--padding-vertical) var(--padding-horizontal);
}

.container-component.style-3 > .wrapper {
    max-width: 100%;
    width: 100%;
}

.container-component.style-3.default > .wrapper > .inner > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.style-3.default > .wrapper > .inner > *:first-child {
    margin-top: 0 !important;
}

.container-component.style-3.default > .wrapper > .inner > *:last-child {
    margin-bottom: 0 !important;
}

.container-component.style-3.columns > .wrapper > .inner {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.container-component.style-3.columns > .wrapper > .inner > * {
    flex-grow: 0;
    flex-shrink: 0;
    max-width: 100%;
    text-align: var(--alignment);
    padding: 0 0 0 var(--gutters);
}

.container-component.style-3.columns > .wrapper > .inner > * > * {
    margin-bottom: var(--spacing);
    margin-top: var(--spacing);
}

.container-component.style-3.columns > .wrapper > .inner > * > *:first-child {
    margin-top: 0 !important;
}

.container-component.style-3.columns > .wrapper > .inner > * > *:last-child {
    margin-bottom: 0 !important;
}

.container-component.style-3.columns > .wrapper > .inner > *:first-child {
    margin-left: calc(var(--gutters) * -1);
}

.container-component.style-3.columns > .wrapper > .inner > .full {
    align-self: stretch;
    min-height: calc(45rem - (var(--padding-vertical) * 2));
    position: relative;
}

/* 50/50 column widths for style-3 */
.container-component.style-3.columns > .wrapper > .inner > * {
    width: calc(50% + (var(--gutters) / 2));
}

/* Data Reorder - Flexbox order for alternating layouts */
.container-component.columns > .wrapper > .inner[data-reorder="1,0"] > :nth-child(1) {
    order: 1;
}
.container-component.columns > .wrapper > .inner[data-reorder="1,0"] > :nth-child(2) {
    order: 0;
}

/* Column Width Instances */
.container-component.instance-13 > .wrapper > .inner > :nth-child(1),
.container-component.instance-13 > .wrapper > .inner > :nth-child(2),
.container-component.instance-16 > .wrapper > .inner > :nth-child(1),
.container-component.instance-16 > .wrapper > .inner > :nth-child(2),
.container-component.instance-4 > .wrapper > .inner > :nth-child(1),
.container-component.instance-4 > .wrapper > .inner > :nth-child(2),
.container-component.instance-8 > .wrapper > .inner > :nth-child(1),
.container-component.instance-8 > .wrapper > .inner > :nth-child(2),
.container-component.instance-7 > .wrapper > .inner > :nth-child(1),
.container-component.instance-7 > .wrapper > .inner > :nth-child(2),
.container-component.instance-17 > .wrapper > .inner > :nth-child(1),
.container-component.instance-17 > .wrapper > .inner > :nth-child(2),
.container-component.instance-3 > .wrapper > .inner > :nth-child(1),
.container-component.instance-3 > .wrapper > .inner > :nth-child(2),
.container-component.instance-15 > .wrapper > .inner > :nth-child(1),
.container-component.instance-15 > .wrapper > .inner > :nth-child(2),
.container-component.instance-18 > .wrapper > .inner > :nth-child(1),
.container-component.instance-18 > .wrapper > .inner > :nth-child(2),
.container-component.instance-6 > .wrapper > .inner > :nth-child(1),
.container-component.instance-6 > .wrapper > .inner > :nth-child(2),
.container-component.instance-10 > .wrapper > .inner > :nth-child(1),
.container-component.instance-10 > .wrapper > .inner > :nth-child(2) {
    width: calc(50% + (var(--gutters) / 2));
}

/* Text Component */
.text-component {
    direction: var(--site-language-direction);
    position: relative;
}

.text-component span.p {
    display: block;
    position: relative;
}

.text-component span[style],
.text-component strong,
.text-component a,
.text-component code,
.text-component mark,
.text-component spoiler-text {
    -webkit-text-fill-color: currentcolor;
}

/* Text Style 1 - Large Title */
.text-component.style-1 {
    color: #292929;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 4.75em;
    line-height: 1.25;
    font-weight: 700;
}

.text-component.style-1 u {
    text-decoration-color: #e5be56;
}

.text-component.style-1 mark {
    color: #000000;
    background-color: transparent;
}

.text-component.style-1 a {
    text-decoration: underline;
}

.text-component.style-1 a:hover {
    text-decoration: none;
}

.text-component.style-1 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.style-1 > * {
    display: inline-block;
    line-height: 1.2;
}

/* Text Style 2 - Body Text */
.text-component.style-2 {
    color: #292929;
    font-family: 'Avenir', sans-serif;
    font-size: 17px;
    line-height: 1.875;
    font-weight: 400;
}

.text-component.style-2 mark {
    color: #000000;
    background-color: transparent;
}

.text-component.style-2 a {
    text-decoration: underline;
}

.text-component.style-2 a:hover {
    text-decoration: none;
}

.text-component.style-2 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

/* Text Style 4 - Section Heading */
.text-component.style-4 {
    color: #292929;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 3.75em;
    line-height: 1;
    font-weight: 700;
}

.text-component.style-4 u {
    text-decoration-color: #e5be56;
}

.text-component.style-4 mark {
    color: #3EA39B;
    background-color: transparent;
}

.text-component.style-4 a {
    text-decoration: underline;
}

.text-component.style-4 a:hover {
    text-decoration: none;
}

.text-component.style-4 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.style-4 > * {
    display: inline-block;
    line-height: 1.2;
}

/* Text Style 5 - Large Title */
.text-component.style-5 {
    color: #292929;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 4.75em;
    line-height: 1.25;
    font-weight: 700;
}

.text-component.style-5 u {
    text-decoration-color: #e5be56;
}

.text-component.style-5 mark {
    color: #000000;
    background-color: transparent;
}

.text-component.style-5 a {
    text-decoration: underline;
}

.text-component.style-5 a:hover {
    text-decoration: none;
}

.text-component.style-5 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.style-5 > * {
    display: inline-block;
    line-height: 1.2;
}

/* Text Style 6 - Small Purple Title */
.text-component.style-6 {
    color: #906DF7;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -0.025rem;
    width: 100%;
    font-size: 1.25em;
    line-height: 1;
    font-weight: 700;
}

.text-component.style-6 u {
    text-decoration-color: #D9D9D9;
}

.text-component.style-6 mark {
    color: #3AA6E0;
    background-color: transparent;
}

.text-component.style-6 a {
    text-decoration: underline;
}

.text-component.style-6 a:hover {
    text-decoration: none;
}

.text-component.style-6 span.p:nth-child(n + 2) {
    margin-top: 1rem;
}

.text-component.style-6 > * {
    display: inline-block;
    line-height: 1.2;
}

/* Image Component */
.image-component {
    display: block;
    line-height: 0;
    max-width: 100%;
    position: relative;
}

.image-component > .frame {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    vertical-align: top;
    width: 100%;
}

.image-component > .frame > img {
    border-radius: 0 !important;
    max-width: 100%;
    vertical-align: top;
    width: inherit;
}

.image-component.full > .frame {
    display: block;
}

.image-component.full:first-child > .frame {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}

.image-component.full:last-child > .frame {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.image-component.style-1 > .frame {
    width: 100%;
    height: 100%;
    transition: none;
}

.image-component.style-1 > .frame > img {
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    width: 100% !important;
    transition: none;
}

/* Make image fill parent section height in columns layout */
.container-component.columns > .wrapper > .inner > .full {
    position: relative;
}

.container-component.columns > .wrapper > .inner > .full > .image-component.style-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container-component.columns > .wrapper > .inner > .full > .image-component.style-1 > .frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container-component.columns > .wrapper > .inner > .full > .image-component.style-1 > .frame > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons Component */
.buttons-component {
    cursor: default;
    display: flex;
    justify-content: var(--flex-alignment);
    letter-spacing: 0;
    padding: 0;
}

.buttons-component > li {
    max-width: 100%;
    text-align: var(--alignment);
}

.buttons-component > li > a {
    align-items: center;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    white-space: nowrap;
}

/* Buttons Style 1 - Purple */
.buttons-component.style-1 {
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.buttons-component.style-1:not(:first-child) {
    margin-top: 2.625rem !important;
}

.buttons-component.style-1:not(:last-child) {
    margin-bottom: 2.625rem !important;
}

.buttons-component.style-1 > li > a {
    display: inline-flex;
    width: auto;
    height: 3.25rem;
    line-height: 3.25rem;
    padding: 0 1.625rem;
    vertical-align: middle;
    font-family: 'Avenir', sans-serif;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    background-color: #e5be56;
    color: #FFFFFF;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-1 > li > a > svg {
    display: block;
    fill: rgba(0,0,0,0.361);
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    pointer-events: none;
    width: 1.375em;
    margin-left: 1rem;
    margin-right: calc(-0.125em + 0rem);
    transition: fill 0.25s ease;
}

.buttons-component.style-1 > li > a > .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    width: 100%;
}

.buttons-component.style-1 > li > a:hover {
    background-color: #d4ad4a !important;
    transform: scale(1.025);
}

/* Centered buttons variant */
.buttons-component.style-1.centered {
    justify-content: center;
}

.buttons-component.style-1.centered > li > a {
    flex-direction: row;
    justify-content: center;
    text-align: center;
}

.buttons-component.style-1.centered > li > a > .label {
    text-align: center;
}

/* Buttons Style 2 - Orange */
.buttons-component.style-2 {
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
}

.buttons-component.style-2:not(:first-child) {
    margin-top: 2.625rem !important;
}

.buttons-component.style-2:not(:last-child) {
    margin-bottom: 2.625rem !important;
}

.buttons-component.style-2 > li > a {
    display: inline-flex;
    width: auto;
    height: 3.25rem;
    line-height: 3.25rem;
    padding: 0 1.625rem;
    vertical-align: middle;
    font-family: 'Avenir', sans-serif;
    font-size: 1em;
    font-weight: 500;
    border-radius: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    background-color: #E68055;
    color: #FFFFFF;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.buttons-component.style-2 > li > a > svg {
    display: block;
    fill: rgba(0,0,0,0.361);
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    pointer-events: none;
    width: 1.375em;
    margin-left: 1rem;
    margin-right: calc(-0.125em + 0rem);
    transition: fill 0.25s ease;
}

.buttons-component.style-2 > li > a > .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    width: 100%;
}

.buttons-component.style-2 > li > a:hover {
    background-color: #F08E65 !important;
    transform: scale(1.025);
}

/* Form Component */
.form-component {
    display: flex;
    justify-content: var(--flex-alignment);
}

.form-component > .inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 100%;
}

.form-component label {
    direction: var(--site-language-direction);
    display: block;
}

.form-component input[type="text"],
.form-component input[type="email"],
.form-component input[type="tel"],
.form-component input[type="number"],
.form-component textarea,
.form-component select {
    background-color: transparent;
    border: 0;
    direction: var(--site-language-direction);
    display: block;
    outline: 0;
    text-align: var(--site-language-alignment);
    width: 100%;
}

.form-component .actions {
    max-width: 100%;
}

.form-component .actions button {
    align-items: center;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.form-component .actions button:disabled {
    cursor: default;
    opacity: 0.35;
    pointer-events: none;
}

/* Form Style 1 */
.form-component.style-1:not(:first-child) {
    margin-top: 4rem !important;
}

.form-component.style-1:not(:last-child) {
    margin-bottom: 4rem !important;
}

.form-component.style-1 > .inner > * {
    margin: 0 0 0 1.5rem;
}

.form-component.style-1 > .inner > :first-child {
    margin: 0;
}

.form-component.style-1 > .inner {
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: var(--flex-alignment);
}

.form-component.style-1 input[type="text"],
.form-component.style-1 input[type="email"],
.form-component.style-1 input[type="tel"],
.form-component.style-1 input[type="number"],
.form-component.style-1 textarea,
.form-component.style-1 select {
    font-size: 1em;
    font-family: 'Avenir', sans-serif;
    font-weight: 400;
    border-radius: 0.5rem;
    color: #292929;
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
}

.form-component.style-1 input[type="text"]:focus,
.form-component.style-1 input[type="email"]:focus,
.form-component.style-1 input[type="tel"]:focus,
.form-component.style-1 input[type="number"]:focus,
.form-component.style-1 textarea:focus,
.form-component.style-1 select:focus {
    box-shadow: 0 0 0 2px #886BD6;
    border-color: #886BD6;
}

.form-component.style-1 input[type="text"],
.form-component.style-1 input[type="email"],
.form-component.style-1 input[type="tel"],
.form-component.style-1 input[type="number"],
.form-component.style-1 select {
    height: 3.25rem;
    padding: 0 1.1375rem;
    line-height: 3.25rem;
}

.form-component.style-1 textarea {
    padding: 1.1375rem;
    height: 10rem;
    line-height: 1.875;
    padding-top: 0.809375rem;
}

.form-component.style-1 .actions button {
    display: inline-flex;
    width: auto;
    height: 3.25rem;
    line-height: 3.25rem;
    padding: 0 1.625rem;
    vertical-align: middle;
    font-family: 'Avenir', sans-serif;
    font-size: 1em;
    font-weight: 500;
    border-radius: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    background-color: #E68055;
    color: #FFFFFF;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.form-component.style-1 .actions button svg {
    display: block;
    fill: rgba(0,0,0,0.361);
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    pointer-events: none;
    width: 1.375em;
    margin-left: 1rem;
    margin-right: calc(-0.125em + 0rem);
    transition: fill 0.25s ease;
}

.form-component.style-1 .actions button:hover {
    background-color: #F08E65;
    transform: scale(1.025);
}

.form-component.style-1 .actions button .label {
    direction: var(--site-language-direction);
    overflow: hidden;
    flex-grow: 1;
    flex-shrink: 1;
    text-align: left;
    width: 100%;
}

.form-component.style-1 > .inner .field {
    flex-grow: 1;
    flex-shrink: 1;
    width: 100%;
}

.form-component.style-1 > .inner .actions {
    flex-grow: 0;
    flex-shrink: 0;
}

.form-component.style-1 ::-webkit-input-placeholder {
    color: #292929;
    opacity: 0.5;
}

.form-component.style-1 :-moz-placeholder {
    color: #292929;
    opacity: 0.5;
}

.form-component.style-1 ::-moz-placeholder {
    color: #292929;
    opacity: 0.5;
}

.form-component.style-1 :-ms-input-placeholder {
    color: #292929;
    opacity: 0.5;
}

/* Form Style 2 - Contact Form */
.form-component.style-2:not(:first-child) {
    margin-top: 4rem !important;
}

.form-component.style-2:not(:last-child) {
    margin-bottom: 4rem !important;
}

.form-component.style-2 > .inner {
    width: 100%;
    max-width: 40rem;
    flex-direction: column;
    gap: 1.5rem;
}

.form-component.style-2 .field-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.form-component.style-2 .field-row > .field {
    flex: 1;
}

.form-component.style-2 .field {
    width: 100%;
}

.form-component.style-2 input[type="text"],
.form-component.style-2 input[type="email"],
.form-component.style-2 input[type="tel"],
.form-component.style-2 textarea {
    font-size: 1em;
    font-family: 'Avenir', sans-serif;
    font-weight: 400;
    border-radius: 0.5rem;
    color: #292929;
    background-color: #F5F5F5;
    border: 1px solid #E0E0E0;
    width: 100%;
}

.form-component.style-2 input[type="text"]:focus,
.form-component.style-2 input[type="email"]:focus,
.form-component.style-2 input[type="tel"]:focus,
.form-component.style-2 textarea:focus {
    box-shadow: 0 0 0 2px #886BD6;
    border-color: #886BD6;
    outline: none;
}

.form-component.style-2 input[type="text"],
.form-component.style-2 input[type="email"],
.form-component.style-2 input[type="tel"] {
    height: 3.25rem;
    padding: 0 1.1375rem;
    line-height: 3.25rem;
}

.form-component.style-2 textarea {
    padding: 1.1375rem;
    min-height: 10rem;
    line-height: 1.875;
    resize: vertical;
}

.form-component.style-2 .actions {
    display: flex;
    justify-content: center;
}

.form-component.style-2 .actions button {
    display: inline-flex;
    width: auto;
    height: 3.25rem;
    line-height: 3.25rem;
    padding: 0 2rem;
    vertical-align: middle;
    font-family: 'Avenir', sans-serif;
    font-size: 1em;
    font-weight: 500;
    border-radius: 0.5rem;
    flex-direction: row-reverse;
    justify-content: center;
    background-color: #e5be56;
    color: #FFFFFF;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.form-component.style-2 .actions button svg {
    display: block;
    fill: #292929;
    flex-grow: 0;
    flex-shrink: 0;
    height: 100%;
    min-width: 16px;
    pointer-events: none;
    width: 1.375em;
    margin-left: 0.75rem;
    transition: fill 0.25s ease;
}

.form-component.style-2 .actions button:hover {
    background-color: #d4ad45;
    transform: scale(1.025);
}

.form-component.style-2 .actions button .label {
    direction: var(--site-language-direction);
    overflow: hidden;
}

.form-component.style-2 ::-webkit-input-placeholder {
    color: #292929;
    opacity: 0.5;
}

.form-component.style-2 :-moz-placeholder {
    color: #292929;
    opacity: 0.5;
}

.form-component.style-2 ::-moz-placeholder {
    color: #292929;
    opacity: 0.5;
}

.form-component.style-2 :-ms-input-placeholder {
    color: #292929;
    opacity: 0.5;
}

/* Icons Component */
.icons-component {
    display: flex;
    flex-wrap: wrap;
    justify-content: var(--flex-alignment);
    letter-spacing: 0;
    padding: 0;
}

.icons-component > li {
    position: relative;
    z-index: 1;
}

.icons-component > li > a {
    align-items: center;
    display: flex;
    justify-content: center;
}

.icons-component > li > a > svg {
    display: block;
    pointer-events: none;
    position: relative;
}

.icons-component > li > a + svg {
    display: block;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.icons-component > li > a > .label {
    display: none;
}

/* Icons Style 2 */
.icons-component.style-2 {
    font-size: 1.75em;
    gap: 1.25rem;
}

.icons-component.style-2:not(:first-child) {
    margin-top: 2.5rem !important;
}

.icons-component.style-2:not(:last-child) {
    margin-bottom: 2.5rem !important;
}

.icons-component.style-2 > li > a {
    border-radius: 100%;
    height: 2em;
    width: 2em;
    background-color: #F5F5F5;
    transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.icons-component.style-2 > li > a > svg {
    height: 60%;
    width: 60%;
    fill: #292929;
    transition: fill 0.25s ease;
}

.icons-component.style-2 > li > a:hover {
    background-color: #E0E0E0 !important;
    transform: scale(1.0775);
}

.icons-component.style-2 > li > a + svg {
    transition: transform 0.25s ease, fill 0.25s ease, stroke 0.25s ease;
}

.icons-component.style-2 > li > a:hover + svg {
    transform: scale(1.0775);
}

/* Section Styles */
section.inactive {
    opacity: 0;
    transition: opacity 0.125s ease-in-out;
}

/* Section separators for white backgrounds */
.container-component.style-2,
.container-component.style-3 {
    border-top: 1px solid #E8E8E8;
}

/* Section Title */
.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: #292929;
    text-align: center;
    padding: 3rem 2rem 1.5rem;
    margin: 0;
    background-color: #FFFFFF;
}

.section-title u {
    text-decoration: underline;
    text-decoration-color: #e5be56;
    text-underline-offset: 0.2em;
}

.section-tagline {
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 0 2rem 1rem;
    background-color: #FFFFFF;
    line-height: 1.6;
}

/* Container Style 4 - Brands Section */
.container-component.style-4 {
    display: flex;
    width: 100%;
    min-height: auto;
    align-items: stretch;
    justify-content: center;
    background-color: #FFFFFF;
    padding-bottom: 100px;
}

.container-component.style-4 > .wrapper {
    max-width: 100%;
    width: 100%;
}

.container-component.style-4 > .wrapper > .inner {
    display: flex;
    flex-wrap: wrap;
    min-height: auto;
}

.container-component.style-4 .brand-half {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 3rem 2rem;
    overflow: hidden;
    background-color: #FFFFFF;
}

.container-component.style-4 .brand-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0;
    width: 80%;
    max-width: 650px;
}

.container-component.style-4 .brand-logo {
    width: 230px;
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem;
}

/* Text Style 7 - Brand Title */
.text-component.style-7 {
    color: #292929;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -0.025rem;
    font-size: 1.5em;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Text Style 8 - Brand Description */
.text-component.style-8 {
    color: #292929;
    font-family: 'Avenir', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

@media (max-width: 736px) {
    .container-component.style-4 .brand-half {
        width: 100%;
        min-height: 25rem;
    }

    .container-component.style-4 .brand-half:first-child {
        border-right: none;
        border-bottom: none;
    }
}

/* Container Style 5 - Concept Section with Parallax Image */
.container-component.style-5 {
    display: flex;
    width: 100%;
    min-height: 40rem;
    align-items: stretch;
    justify-content: center;
    background-color: #FFFFFF;
}

.container-component.style-5:not(:first-child) {
    margin-top: 0rem !important;
}

.container-component.style-5:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container-component.style-5 > .wrapper {
    max-width: 100%;
    width: 100%;
}

.container-component.style-5 > .wrapper > .inner {
    display: flex;
    flex-wrap: nowrap;
    min-height: 40rem;
}

.container-component.style-5 .parallax-image-half {
    width: 50%;
    position: relative;
    background-image: url('assets/images/concept-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 40rem;
}

.container-component.style-5 .content-half {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    text-align: left;
}

.container-component.style-5 .content-half > * {
    margin-bottom: 1.5rem;
}

.container-component.style-5 .content-half > *:last-child {
    margin-bottom: 0;
}

.container-component.style-5 .text-component.style-4 u {
    text-decoration-color: #e5be56;
}

#expertise .container-component.style-5 {
    border: none;
    border-bottom: none;
    box-shadow: none;
}

@media (max-width: 980px) {
    .container-component.style-5 .content-half {
        padding: 3rem;
    }
}

@media (max-width: 736px) {
    .container-component.style-5 > .wrapper > .inner {
        flex-direction: column;
    }

    .container-component.style-5 .parallax-image-half {
        width: 100%;
        min-height: 25rem;
        background-attachment: scroll;
    }

    .container-component.style-5 .content-half {
        width: 100%;
        padding: 2.5rem 1.5rem;
    }
}

/* Container Style 6 - Team Section Slider (Reversed layout from style-5) */
.container-component.style-6 {
    display: flex;
    width: 100%;
    min-height: 40rem;
    align-items: stretch;
    justify-content: center;
    background-color: #FFFFFF;
}

.container-component.style-6:not(:first-child) {
    margin-top: 0rem !important;
}

.container-component.style-6:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container-component.style-6 > .wrapper {
    max-width: 100%;
    width: 100%;
}

.container-component.style-6 > .wrapper > .inner {
    display: flex;
    flex-wrap: nowrap;
    min-height: 40rem;
}

.container-component.style-6 .content-half {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    text-align: left;
}

.container-component.style-6 .content-half > * {
    margin-bottom: 1.5rem;
}

.container-component.style-6 .content-half > *:last-child {
    margin-bottom: 0;
}

.container-component.style-6 .text-component.style-4 u {
    text-decoration-color: #e5be56;
}

.container-component.style-6 .team-image-half {
    width: 50%;
    position: relative;
    min-height: 40rem;
    overflow: hidden;
}

.container-component.style-6 .team-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.container-component.style-6 .team-image.active {
    opacity: 1;
}

.container-component.style-6 .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Slider Styles */
.team-slider {
    position: relative;
    min-height: 180px;
}

.team-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.team-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75em;
    font-weight: 700;
    color: #292929;
    margin-bottom: 0.5rem;
}

.team-role {
    font-family: 'Avenir', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #e5be56;
    margin-bottom: 1.5rem;
}

.team-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.team-arrow {
    width: 48px;
    height: 48px;
    border: 2px solid #292929;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.team-arrow svg {
    width: 20px;
    height: 20px;
    fill: #292929;
    transition: fill 0.25s ease;
}

.team-arrow:hover {
    background-color: #e5be56;
    border-color: #e5be56;
}

.team-arrow:hover svg {
    fill: #FFFFFF;
}

.team-counter {
    font-family: 'Avenir', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #292929;
}

.team-counter .current {
    font-weight: 700;
}

@media (max-width: 980px) {
    .container-component.style-6 .content-half {
        padding: 3rem;
    }
}

@media (max-width: 736px) {
    .container-component.style-6 > .wrapper > .inner {
        flex-direction: column-reverse;
    }

    .container-component.style-6 .team-image-half {
        width: 100%;
        min-height: 25rem;
    }

    .container-component.style-6 .content-half {
        width: 100%;
        padding: 2.5rem 1.5rem;
    }

    .team-slider {
        min-height: 200px;
    }
}

/* ==================== SCROLLYTELLING SECTION (Experiences) ==================== */
.scrollytelling-section {
    position: relative;
    width: 100vw;
    background-color: #FFFFFF;
    overflow: visible;
}

.scrollytelling-section.full.screen {
    margin-left: -50vw !important;
    left: 50% !important;
}

.scrollytelling-container {
    position: relative;
    /* Height = number of slides * 100vh to create scroll space */
    height: 400vh;
}

.scrollytelling-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    background-color: #FFFFFF;
}

/* Left side - Images */
.scrollytelling-images {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.scrollytelling-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.scrollytelling-image.active {
    opacity: 1;
    transform: scale(1);
}

.scrollytelling-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right side - Content */
.scrollytelling-content {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #FFFFFF;
    position: relative;
    text-align: left;
    box-sizing: border-box;
}

.scrollytelling-title {
    margin-bottom: 3rem;
    text-align: left;
}

.scrollytelling-title u {
    text-decoration-color: #e5be56;
}

/* Text slides */
.scrollytelling-texts {
    position: relative;
    min-height: 250px;
    width: 100%;
}

.scrollytelling-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.scrollytelling-text.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scrollytelling-text .experience-title {
    font-family: 'DM Serif Display', serif;
    font-size: 2em;
    font-weight: 700;
    color: #292929;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.scrollytelling-text .experience-text,
.scrollytelling-text .experience-detail {
    font-family: 'Avenir', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #292929;
    margin-bottom: 1rem;
}

.scrollytelling-text .experience-text strong,
.scrollytelling-text .experience-detail strong {
    font-weight: 600;
    color: #e5be56;
}

.scrollytelling-text .experience-detail {
    margin-bottom: 0;
}

/* Scroll indicator for scrollytelling section - bottom right */
.scrollytelling-section .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.scrollytelling-section .scroll-indicator:hover {
    opacity: 0.8;
}

.scroll-indicator-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid #999;
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: #999;
    border-radius: 2px;
    margin-top: 6px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator-text {
    font-family: 'Avenir', sans-serif;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll triggers - these create the scroll zones */
.scrollytelling-triggers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400vh;
    pointer-events: none;
    z-index: 0;
}

.scroll-trigger {
    height: 100vh;
    width: 100%;
}

/* Responsive */
@media (max-width: 980px) {
    .scrollytelling-content {
        padding: 3rem;
    }

    .scrollytelling-text .experience-title {
        font-size: 1.75em;
    }

    .scrollytelling-text .experience-text,
    .scrollytelling-text .experience-detail {
        font-size: 17px;
    }
}

@media (max-width: 736px) {
    .scrollytelling-viewport {
        flex-direction: column;
        height: auto;
        position: relative;
    }

    .scrollytelling-images {
        width: 100%;
        height: 50vh;
        position: relative;
    }

    .scrollytelling-image {
        position: absolute;
    }

    .scrollytelling-content {
        width: 100%;
        padding: 2rem 1.5rem;
        min-height: 50vh;
    }

    .scrollytelling-title {
        font-size: 2em;
        margin-bottom: 2rem;
    }

    .scrollytelling-texts {
        min-height: 200px;
    }

    .scrollytelling-text .experience-title {
        font-size: 1.5em;
    }

    .scrollytelling-triggers {
        display: none;
    }

    /* On mobile, show all content stacked */
    .scrollytelling-text {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-bottom: 3rem;
        padding-bottom: 3rem;
        border-bottom: 1px solid #E8E8E8;
    }

    .scrollytelling-text:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Container Style 8 - Why Us Section */
.container-component.style-8 {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.container-component.style-8:not(:first-child) {
    margin-top: 0rem !important;
}

.container-component.style-8:not(:last-child) {
    margin-bottom: 0rem !important;
}

.container-component.style-8 > .wrapper {
    max-width: 1400px;
    width: 100%;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.container-component.style-8 > .wrapper > .inner {
    width: 100%;
}

.why-us-title {
    text-align: center;
    margin-bottom: 5rem;
    color: #292929;
}

.why-us-title u {
    text-decoration-color: #e5be56;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.why-us-card {
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-color: #e5be56;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: #e5be56;
}

.why-us-icon svg {
    width: 100%;
    height: 100%;
}

.why-us-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3em;
    font-weight: 700;
    color: rgba(229, 190, 86, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
}

.why-us-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5em;
    font-weight: 700;
    color: #292929;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.why-us-card-text {
    font-family: 'Avenir', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #292929;
}

@media (max-width: 980px) {
    .container-component.style-8 {
        padding: 5rem 0;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .why-us-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 736px) {
    .container-component.style-8 {
        padding: 3.5rem 0;
    }

    .container-component.style-8 > .wrapper {
        padding: 0 1.5rem;
    }

    .why-us-title {
        margin-bottom: 3rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-us-card {
        padding: 2.5rem 2rem;
    }

    .why-us-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .why-us-icon {
        width: 60px;
        height: 60px;
    }

    .why-us-number {
        font-size: 2.5em;
    }
}

/* ==================== GALLERY SECTION ==================== */
#gallery {
    width: 100%;
    background-color: #FFFFFF;
}

.container-component.style-9 {
    background-color: #FFFFFF;
    padding: 4rem 0 0 0;
    width: 100%;
    max-width: 100%;
}

.container-component.style-9 > .wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.container-component.style-9 > .wrapper > .inner {
    width: 100%;
    max-width: 100%;
}

.gallery-title {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 3rem;
    color: #292929;
}

.gallery-title u {
    text-decoration-color: #e5be56;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.gallery-icon svg {
    width: 24px;
    height: 24px;
    color: #292929;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    color: #e5be56;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #e5be56;
    color: #292929;
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 24px;
    height: 24px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-info {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 600px;
}

.lightbox-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
}

.lightbox-description {
    font-family: 'Avenir', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Gallery Responsive */
@media (max-width: 980px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 736px) {
    .container-component.style-9 {
        padding: 4rem 0 0 0;
    }

    .container-component.style-9 > .wrapper {
        padding: 0;
    }

    .gallery-title {
        margin-bottom: 2rem;
        padding: 0 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .lightbox-title {
        font-size: 1.25rem;
    }

    .lightbox-description {
        font-size: 0.875rem;
    }
}

/* Hero section styles */
#home {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

#home .container-component.style-1 {
    background-image: url('assets/images/head-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#home .text-component.style-1,
#home .text-component.style-2 {
    color: #292929;
}

#home .text-component.style-1 {
    font-size: 3.75em;
}

#home .text-component.style-2 {
    font-size: 17px;
    max-width: 500px;
    margin: auto;
}

/* Scroll indicator - desktop only */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #292929);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #292929, transparent);
    animation: scrollDown 1.4s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(100%);
    }
}

/* Hide scroll indicator on mobile */
@media (max-width: 736px) {
    .scroll-indicator {
        display: none;
    }
}

/* Contact section - white background, full width */
#contact {
    background-color: #FFFFFF;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

#contact .text-component.style-2,
#contact .text-component.style-5 {
    color: #292929;
}

#contact .form-component.style-2 input[type="text"],
#contact .form-component.style-2 input[type="email"],
#contact .form-component.style-2 input[type="tel"],
#contact .form-component.style-2 textarea {
    color: #292929;
    background-color: #f5f5f5;
    border-color: #ddd;
}

#contact .form-component.style-2 ::-webkit-input-placeholder {
    color: #666;
    opacity: 1;
}

#contact .form-component.style-2 :-moz-placeholder {
    color: #666;
    opacity: 1;
}

#contact .form-component.style-2 ::-moz-placeholder {
    color: #666;
    opacity: 1;
}

#contact .form-component.style-2 :-ms-input-placeholder {
    color: #666;
    opacity: 1;
}

#contact .icons-component.style-2 > li > a {
    background-color: #f5f5f5;
}

#contact .icons-component.style-2 > li > a > svg {
    fill: #292929;
}

#contact .icons-component.style-2 > li > a:hover {
    background-color: #e5e5e5 !important;
}

/* Form Success Animation */
.form-component.style-2 .inner {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.form-success.active {
    opacity: 1;
    transform: scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.success-circle {
    stroke: #e5be56;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke-circle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
    stroke: #e5be56;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke-check 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke-circle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes stroke-check {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-message {
    font-family: 'DM Serif Display', serif;
    font-size: 1.75em;
    font-weight: 700;
    color: #292929;
    margin-bottom: 0.5rem;
    text-align: center;
}

.success-submessage {
    font-family: 'Avenir', sans-serif;
    font-size: 1em;
    color: #666;
    text-align: center;
}

#contact .form-component.style-2 .actions button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive Styles */
@media (max-width: 1920px) {}

@media (max-width: 1680px) {
    html {
        font-size: 12pt;
    }
}

@media (max-width: 1280px) {
    html {
        font-size: 12pt;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 980px) {
    html {
        font-size: 10pt;
    }
}

@media (max-width: 980px) {
    .main-nav ul {
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 15px;
    }
}

@media (max-width: 736px) {
    html {
        font-size: 12pt;
    }

    /* Mobile Header */
    .header-inner {
        padding: 0.75rem 1.5rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 54px;
        left: 0;
        right: 0;
        background-color: rgba(43, 39, 56, 0.98);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .main-nav.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .main-nav li {
        width: 100%;
        text-align: center;
    }

    .main-nav a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .main-nav a::after {
        display: none;
    }

    body {
        padding-top: 54px;
    }

    .site-main > .inner {
        --padding-horizontal: 1.5rem;
        --padding-vertical: 5rem;
        --spacing: 2rem;
    }

    .site-main > .inner > * > .full {
        margin-left: calc(-1.5rem);
        max-width: calc(100% + 3rem + 0.4725px);
        width: calc(100% + 3rem + 0.4725px);
    }

    .site-main > .inner > * > .full.screen {
        margin-left: -50vw;
    }

    .site-main > .inner > .active > .full:first-child {
        margin-top: -5rem !important;
    }

    .site-main > .inner > .active > .full:last-child {
        margin-bottom: -5rem !important;
    }

    .container-component.style-1 {
        min-height: 15rem;
    }

    .container-component.style-1:not(:first-child) {
        margin-top: 0rem !important;
    }

    .container-component.style-1:not(:last-child) {
        margin-bottom: 0rem !important;
    }

    .container-component.style-1 > .wrapper > .inner {
        --gutters: 5rem;
    }

    .container-component.style-2.columns > .wrapper > .inner,
    .container-component.style-3.columns > .wrapper > .inner {
        flex-direction: column;
    }

    .container-component.style-2.columns > .wrapper > .inner > *,
    .container-component.style-3.columns > .wrapper > .inner > * {
        width: 100% !important;
        padding: 0;
        margin-left: 0 !important;
    }

    .container-component.style-2.columns > .wrapper > .inner > .full,
    .container-component.style-3.columns > .wrapper > .inner > .full {
        min-height: 20rem;
        position: relative;
    }

    /* Reset image positioning on mobile */
    .container-component.columns > .wrapper > .inner > .full > .image-component.style-1 {
        position: relative;
        height: 100%;
    }

    .container-component.columns > .wrapper > .inner > .full > .image-component.style-1 > .frame {
        position: relative;
        height: 100%;
    }

    /* Reset order on mobile - image always first */
    .container-component.columns > .wrapper > .inner[data-reorder="1,0"] > :nth-child(1),
    .container-component.columns > .wrapper > .inner[data-reorder="1,0"] > :nth-child(2) {
        order: 0;
    }

    .container-component.instance-13 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-13 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-16 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-16 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-4 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-4 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-8 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-8 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-7 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-7 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-17 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-17 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-3 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-3 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-15 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-15 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-18 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-18 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-6 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-6 > .wrapper > .inner > :nth-child(2),
    .container-component.instance-10 > .wrapper > .inner > :nth-child(1),
    .container-component.instance-10 > .wrapper > .inner > :nth-child(2) {
        width: 100% !important;
    }

    .text-component.style-1,
    .text-component.style-5 {
        font-size: 2.5em;
    }

    .text-component.style-4 {
        font-size: 2em;
    }

    .form-component.style-1 > .inner {
        flex-direction: column;
    }

    .form-component.style-1 > .inner > * {
        margin: 1rem 0 0 0;
    }

    .form-component.style-1 > .inner > :first-child {
        margin: 0;
    }

    .form-component.style-1 .actions button {
        width: 100%;
        justify-content: center;
    }

    .form-component.style-2 .field-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-component.style-2 .actions button {
        width: 100%;
    }
}
