/* =============================================
   VARIABLES
   ============================================= */
:root {
    --black: #1e1e1e;
    --dark: #353535;
    --grey: #8a8a8a;
    --grey-2: #c4c4c4;
    --light: #f9f9f9;
    --white: #ffffff;
    --article-text: #21243d;
}

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

* {
    margin: 0;
    padding: 0;
    min-width: 0;
    min-height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
button {
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

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

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
}

/* =============================================
   GLOBAL
   ============================================= */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    height: 100%;
}

body.no-scroll {
    overflow: hidden;
}

#wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

#wrapper header {
    flex: 0 0 auto;
}

#wrapper main {
    flex: 1 0 auto;
}

#wrapper footer {
    flex-shrink: 0;
}

.container {
    width: 100%;
    max-width: 1920px;
    padding: 0 80px;
    margin: 0 auto;
}

.load {
    opacity: 0;
    transition: opacity 0.4s;
}

.load.ready {
    opacity: 1;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.logo-font {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.16px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: var(--black);
    color: var(--white);
    box-shadow: 0 6px 2px -4px rgba(14, 14, 44, 0.1), inset 0 -1px 0 0 rgba(14, 14, 44, 0.4);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.85;
}

.btn--light {
    background: var(--white);
    color: var(--dark);
    border: 1px solid rgba(30, 30, 30, 0.3);
    box-shadow: 0 6px 2px -4px rgba(14, 14, 44, 0.1), inset 0 -1px 0 0 rgba(14, 14, 44, 0.4);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.header.scrolled::before {
    border-color: var(--grey-2);
}

.header__inner {
    width: 100%;
}

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 16px 80px;
}

.header__logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 34px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__nav ul li a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--dark);
    text-transform: capitalize;
    padding: 4px 0;
    position: relative;
    transition: all 0.3s linear;
}

.header__nav ul li:not(.current-menu-item) a:hover {
    text-shadow: 0.7px 0 0 rgba(53, 53, 53);
}

.header__nav ul li.current-menu-item a {
    text-decoration: underline;
}

.header__nav ul li a.active {
    border-bottom: 1px solid var(--dark);
}

.header__nav .header__social {
    display: none;
}

.header__menu {
    display: none;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.header__menu:before,
.header__menu strong,
.header__menu:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--black);
    border-radius: 4px;
    transition: all .3s linear;
}

.header__menu:before {
    top: 0;
}

.header__menu strong {
    top: 50%;
    transform: translateY(-50%);
}

.header__menu:after {
    bottom: 0;
}

.header__menu.open:before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.header__menu.open strong {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.header__menu.open:after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--light);
}

.footer__inner {
    padding: 48px 80px;
}

.footer__top {
    display: flex;
    gap: 160px;
    align-items: stretch;
    padding-bottom: 48px;
}

.footer__bio {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 437px;
}

.footer__bio .footer__social {
    margin-top: auto;
}

.footer__bio-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 23px;
    color: var(--dark);
    text-transform: uppercase;
}

.footer__description {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
}

.footer__social img {
    width: 20px;
    height: 20px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
    transition: opacity 0.2s;
}

.footer__nav a:hover {
    opacity: 0.6;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: var(--grey-2);
    margin-bottom: 48px;
}

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

.footer__copyright,
.footer__legal a {
    font-size: 16px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.6;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    transition: opacity 0.2s;
}

.footer__legal a:hover {
    opacity: 0.7;
}

.footer__info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__info a {
    font-weight: 500;
    line-height: 1.25;
    font-size: 16px;
    text-align: center;
    color: #8A8A8A;
}

@media screen and (max-width: 1420px) {

    .footer__legal ul,
    .footer__info {
        gap: 10px;
    }
}

/* =============================================
   MAIN - PAGE OFFSET
   ============================================= */
.main {
    padding-top: 100px;
}

/* =============================================
   HERO - HOME
   ============================================= */
.hero-home {
    position: relative;
}

.hero-home__inner {
    position: relative;
    height: 900px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 64px 80px;
    gap: 12px;
}

.hero-home__bg {
    position: absolute;
    inset: 0;
}

.hero-home__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-home__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.5) 81%);
}

.hero-home__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.hero-home__title {
    font-size: 96px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--white);
    line-height: 1;
    text-transform: capitalize;
}

.hero-home__subtitle {
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    max-width: 1280px;
}

/* =============================================
   HERO - INNER PAGES (news, collections, etc.)
   ============================================= */
.hero-inner {
    background: var(--white);
}

.hero-inner__inner {
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

}

.hero-inner__inner.hero-inner__inner--calendar {
    padding-top: 24px;
    padding-bottom: 24px;
}

.hero-inner__content {
    text-align: center;
    max-width: 566px;
}

.hero-inner__title {
    font-size: 40px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
    text-transform: capitalize;
}

.hero-inner__text,
.hero-inner__content>p {
    font-size: 16px;
    font-weight: 400;
    color: var(--article-text);
    line-height: 1.25;
}

@media screen and (max-width: 992px) {
    .hero-home__content {
        gap: 20px;
    }
}

/* =============================================
   FILTER TABS
   ============================================= */
.filter {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter__btn {
    height: 40px;
    padding: 8px 20px;
    border: 1px solid var(--grey-2);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s;
}

.filter__btn:hover,
.filter__btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* =============================================
   SECTION TITLES
   ============================================= */
.section-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1;
    text-align: center;
}

/* =============================================
   NEWS SECTION (home - 2x2 grid)
   ============================================= */
.news-section {
    background: var(--white);
}

.news-section__inner {
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.news-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.news-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.news-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.600460829;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-card:hover .news-card__img img {
    transform: scale(1.03);
}

.news-card__title {
    font-size: 32px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1;
    text-align: center;
}

/* =============================================
   NEWS PAGE (3-column grid)
   ============================================= */
.news-page {
    background: var(--white);
}

.news-page__inner {
    padding: 0 80px 80px;
}

.news-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-page-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.news-page-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 570 / 467;
    overflow: hidden;
    border-radius: 0;
}

.news-page-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-page-card:hover .news-page-card__img img {
    transform: scale(1.03);
}

.news-page-card__category {
    font-size: 16px;
    font-weight: 600;
    color: var(--grey-2);
    border-bottom: 2px solid var(--grey-2);
    display: inline-block;
    padding-bottom: 2px;
}

.news-page-card__title {
    font-size: 36px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.222222;
}

.news-page-card__date {
    display: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--grey);
}

/* =============================================
   SPOTLIGHT ON SECTION (home)
   ============================================= */
.spotlight-section {
    background: var(--white);
}

.spotlight-section__inner {
    padding: 0 0 64px;
}

.spotlight-section__title {
    text-align: center;
    margin-bottom: 48px;
}

.spotlight-section__feature {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 80px;
    overflow: hidden;
}

.spotlight-section__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 559px;
}

.spotlight-section__text {
    font-size: 32px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
}

.spotlight-section__image {
    width: 946px;
    height: 550px;
    flex-shrink: 0;
    overflow: hidden;
}

.spotlight-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* =============================================
   SUBSCRIBE SECTION
   ============================================= */
.subscribe {
    background: var(--black);
}

.subscribe__inner {
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    min-height: 298px;
    justify-content: center;
}

.subscribe__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    color: var(--white);
}

.subscribe__title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 16px;
}

.subscribe__subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}

.subscribe__form {
    display: flex;
    gap: 12px;
    align-items: center;
}

.subscribe__form .wpcf7-form-control-wrap {
    display: inline-block;
}

.subscribe__form .btn {
    margin-left: 12px;
}

.subscribe__input {
    width: 410px;
    height: 44px;
    padding: 16px 24px;
    border: 1px solid var(--white);
    border-radius: 8px;
    background: transparent;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    outline: none;
}

.subscribe__input::placeholder {
    color: var(--grey);
}

.subscribe__form .btn.btn--light {
    box-shadow: none;
    border: none;
}


/* =============================================
   COLLECTIONS SECTION (home - 3 cards)
   ============================================= */
.collections-section {
    background: var(--white);
    width: 100%;
}

.collections-section__inner {
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.collections-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

.collection-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.collection-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.11504425;
    overflow: hidden;
    border-radius: 0;
}

.collection-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.collection-card:hover .collection-card__img img {
    transform: scale(1.03);
}

.collection-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    color: var(--dark);
}

@media screen and (max-width: 768px) {
    .collection-card__content {
        gap: 8px;
    }

}

.collection-card__name {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.collection-card__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.1px;
}

/* =============================================
   COLLECTIONS PAGE (3x3 grid)
   ============================================= */
.collections-page {
    background: var(--white);
}

.collections-page__inner {
    padding: 0 80px 80px;
}

.collections-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collections-page-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.collections-page-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 570 / 767;
    overflow: hidden;
    border-radius: 0;
}

.collections-page-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.collections-page-card:hover .collections-page-card__img img {
    transform: scale(1.03);
}

.collections-page-card__name {
    font-size: 36px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

.collections-page-card__season {
    font-size: 16px;
    font-weight: 400;
    color: #21243D;
}

/* =============================================
   CALENDAR SECTION (home - 2 column)
   ============================================= */
.calendar-preview {
    background: #e2e2e2;
}

.calendar-preview__inner {
    padding: 0 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 666px;
}

.calendar-preview__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    max-width: 490px;
}

.calendar-preview__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-preview__title {
    font-size: 40px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1;
    text-transform: capitalize;
}

.calendar-preview__desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
}

.calendar-preview__events {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px 24px;
    width: 892px;
}

.event-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.event-item__img {
    width: 273px;
    height: 273px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
}

.event-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-item__date {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 180px;
    min-width: 180px;
}

.event-item__day {
    display: flex;
    align-items: baseline;
    gap: 0.25em;
    max-width: 100%;
    min-width: 0;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    text-transform: capitalize;
}

.event-item__day-num {
    flex-shrink: 0;
}

.event-item__day-month {
    min-width: 0;
}

.event-item__time {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

.event-item__divider {
    width: 1px;
    align-self: stretch;
    background: var(--grey-2);
    flex-shrink: 0;
}

.event-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-item__content p:empty {
    display: none;
}

.event-item__title {
    font-size: 32px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.25;
    text-transform: capitalize;
}

.event-item__desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
}

/* =============================================
   CALENDAR PAGE - FULL WIDGET
   ============================================= */
.calendar-page {
    background: var(--white);
}

.calendar-page__inner {
    padding: 0 80px 80px;
}

.calendar-page__layout {
    display: flex;
    gap: 108px;
    align-items: center;
    padding-top: 0;
}

.calendar-widget {
    width: 495px;
    height: auto;

    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    padding: 0 48px;
    padding-bottom: 4px;
    background: var(--white);
    border-radius: 8px;

    box-shadow: 0px 4px 32px rgba(170, 170, 170, 0.03);
}

.calendar-widget__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
    padding-top: 23px;
}

.calendar-widget__month {
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    font-weight: 700;
    color: #333333;
}

.calendar-widget__nav {
    display: flex;
    gap: 13px;
}

.calendar-widget__nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    transition: opacity 0.2s;
    transform: scale(1.4, 1.2);
}

.calendar-widget__nav button:hover {
    opacity: 0.5;
}

.calendar-widget__grid {
    width: 100%;
}

.calendar-widget__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 5px;
    gap: 20px;
}

.calendar-widget__weekdays span {
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    text-align: center;
    padding: 5px 0;
}

.calendar-widget__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 7px 20px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans';
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.calendar-day:hover {
    background: var(--light);
}

.calendar-day.today {
    background: #FB3F4A;
    color: var(--white);
    font-weight: 700;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #eb5757;
    transition: all .3s linear;
}

.calendar-day.today.has-event::after {
    background: #eb5757;
}

.calendar-day.active {
    background: rgba(251, 63, 74, 0.1);
    color: #666666;
}

.calendar-day.active::after {
    background: #D13046;
}

.calendar-day.other-month {
    color: rgba(102, 102, 102, 0.5);
}

.calendar-page__events {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
}

.calendar-event-item {
    display: flex;
    align-items: flex-start;
    gap: 72px;
}

@media screen and (max-width: 1840px) and (min-width: 1450px) {
    .calendar-widget {
        padding-left: 16px;
        padding-right: 16px;
        width: 363px;
    }

    .calendar-page__layout {
        gap: 40px;
    }

    .calendar-event-item {
        gap: 36px;
    }

    .calendar-widget__days {
        gap: 4px 9px;
    }

    .calendar-widget__weekdays {
        gap: 9px;
    }
}

@media screen and (max-width: 1450px) and (min-width: 992px) {
    .calendar-page__layout {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
    }
}

@media screen and (max-width: 992px) {
    .calendar-event-item {
        gap: 32px;
    }
}

.calendar-event-item__img {
    width: 162px;
    height: 162px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
}

.calendar-event-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calendar-event-item__date {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
    width: 180px;
    min-width: 180px;
}

.calendar-event-item__day {
    display: flex;
    align-items: baseline;
    gap: 0.25em;
    max-width: 100%;
    min-width: 0;
    font-size: 24px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.75);
    text-transform: capitalize;
}

.calendar-event-item__day-num {
    flex-shrink: 0;
}

.calendar-event-item__time {
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
}

.calendar-event-item__divider {
    width: 1px;
    align-self: stretch;
    background: var(--grey-2);
    flex-shrink: 0;
}

.calendar-event-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calendar-event-item__title {
    font-size: 32px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1;
    text-transform: capitalize;
}

.calendar-event-item__desc,
.calendar-event-item__content>p {
    font-size: 16px;
    font-weight: 400;
    color: var(--article-text);
    line-height: 1.6;
}

/* =============================================
   CATEGORY DROPDOWN / SEARCH / SELECT
   ============================================= */
.category-dropdown {
    position: relative;
    width: 566px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.category-dropdown__toggle {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 16px 10px 20px;
    border: 1px solid #8A8A8A;
    border-radius: 12px;
    background-color: var(--white);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    text-align: left;
}

.category-dropdown__toggle:focus-visible {
    border-color: var(--dark);
}

.category-dropdown__label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-dropdown__arrow {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml,<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="18" height="18" rx="9" fill="%23F9F9F9"/><path d="M6.45033 7L9.00033 9.47467L11.5503 7L12.3337 7.76533L9.00033 11L5.66699 7.76533L6.45033 7Z" fill="%23C4C4C4"/></svg>') no-repeat center / contain;
    transition: transform 0.2s;
}

.category-dropdown.is-open .category-dropdown__arrow {
    transform: rotate(180deg);
}

.category-dropdown__panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 10px;
    background: var(--white);
    border: 1px solid #8A8A8A;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.category-dropdown__panel[hidden] {
    display: none;
}

.category-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 360px;
    overflow-y: auto;
}

.category-dropdown__option {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    user-select: none;
}

.category-dropdown__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.category-dropdown__check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #C4C4C4;
    border-radius: 4px;
    background-color: var(--white);
    transition: background-color 0.15s, border-color 0.15s;
    position: relative;
}

.category-dropdown__checkbox:checked+.category-dropdown__check {
    background-color: var(--dark);
    border-color: var(--dark);
}

.category-dropdown__checkbox:checked+.category-dropdown__check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.category-dropdown__checkbox:focus-visible+.category-dropdown__check {
    outline: 2px solid var(--dark);
    outline-offset: 2px;
}

.category-dropdown__text {
    padding-left: 5px;
}

.category-dropdown__divider {
    height: 1px;
    background-color: #C4C4C4;
    margin: 10px;
}

.category-dropdown__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.category-dropdown__clear,
.category-dropdown__apply {
    height: 44px;
    width: 156px;
    padding: 0 20px;
    border: none;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.32px;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.category-dropdown__clear {
    background: transparent;
    color: var(--dark);
}

.category-dropdown__clear:hover {
    color: #8A8A8A;
}

.category-dropdown__apply {
    background-color: #C4C4C4;
    color: var(--dark);
}

.category-dropdown__apply:hover {
    background-color: var(--dark);
    color: var(--white);
}

/* Search input for calendar */
.category-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 17px 16px;
    border: 1px solid #828282;
    border-radius: 12px;
    background: var(--white);
    cursor: text;
    transition: border-color 0.2s;
}

.category-search:focus-within {
    border-color: var(--dark);
}

.category-search svg {
    flex-shrink: 0;
}

.category-search__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    background: transparent;
}

.category-search__input::placeholder {
    color: var(--dark);
    font-weight: 400;
}

/* =============================================
   INSTAGRAM SECTION
   ============================================= */
.instagram-section {
    background: var(--white);
}

.instagram-section__inner {
    padding: 64px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.instagram-section__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

.instagram-card {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.instagram-card:hover img {
    transform: scale(1.05);
}

.instagram-section__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.instagram-section__icon {
    width: 31px;
    height: 31px;
}

.instagram-section__icon img {
    width: 100%;
    height: 100%;
}

.instagram-section__follow {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-align: center;
}

/* =============================================
   CONTACT FORM SECTION
   ============================================= */
.contact-form-section {
    background: var(--white);
}

.contact-form-section__inner {
    padding: 64px 80px;
}

.contact-form-section__header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 562px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section__title {
    font-size: 40px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
    text-transform: capitalize;
}

.contact-form-section__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.25;
}

.contact-form {
    max-width: 870px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__label-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
}

.form__label {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
}

.form__required {
    font-size: 16px;
    color: #EB5757;
    font-weight: 700;
}

.form__input,
.form__textarea {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    border: 1px solid var(--grey-2);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s;
}

.form__input::placeholder {
    color: var(--grey);
}

.form__input:focus {
    border-color: var(--dark);
}

.form__textarea {
    height: 110px;
    padding: 16px 24px;
    resize: vertical;
    font-family: inherit;
}

.form__textarea::placeholder {
    color: var(--grey);
}

.form__textarea:focus {
    border-color: var(--dark);
}

.form__submit {
    align-self: center;
}

/* CONTACT FORM — DARK  */
.contact-form-section.contact-form-section--dark {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.contact-form-section.contact-form-section--dark .contact-form-section__title {
    color: var(--white);
}

.contact-form-section.contact-form-section--dark .contact-form-section__subtitle {
    color: rgba(255, 255, 255, 0.65);
}

.contact-form-section.contact-form-section.contact-form-section--dark .form__label {
    color: var(--white);
}

.contact-form-section.contact-form-section--dark .form__required {
    color: #EB5757;
}

.contact-form-section.contact-form-section--dark .form__input,
.contact-form-section.contact-form-section--dark .form__textarea {
    border: 1px solid var(--white);
    background: rgba(255, 255, 255, 0);
    color: var(--white);
}

.contact-form-section.contact-form-section--dark .form__input::placeholder,
.contact-form-section.contact-form-section--dark .form__input:focus {
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-section.contact-form-section--dark .form__textarea::placeholder,
.contact-form-section.contact-form-section--dark .form__textarea:focus {
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-section.contact-form-section--dark .btn {
    color: var(--dark);
    background: var(--white);
}

.contact-form-section.contact-form-section--dark .btn:hover,
.contact-form-section.contact-form-section--dark .btn:focus {
    background: rgba(255, 255, 255, 0.85);
    color: var(--black);
}


/* =============================================
   NEWS PAGE CARD - DESC
   ============================================= */
.news-page-card__desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--article-text);
    line-height: 1.25;
}

/* =============================================
   CALENDAR EVENTS SECTION TITLE (hidden on desktop)
   ============================================= */
.calendar-events-title {
    display: none;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    text-align: center;
}

/* =============================================
   CALENDAR PREVIEW MOBILE BUTTON (hidden on desktop)
   ============================================= */
.calendar-preview__mobile-btn {
    display: none;
}

/* =============================================
   ARTICLE HERO
   ============================================= */
.article-hero {
    position: relative;
}

.article-hero .article-hero__date {
    display: none;
}

.article-hero__inner {
    position: relative;
    height: 730px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 218px;
    gap: 24px;
}

.article-hero__bg {
    position: absolute;
    inset: 0;
}

.article-hero__bg img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center center;
}

.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.8) 68%);
}

.article-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 1484px;
}

.article-hero__category {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    padding-bottom: 3px;
}

.article-hero__title {
    font-size: 55px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    letter-spacing: -0.9px;
    text-align: center;
}

.article-hero__subtitle {
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.4;
    text-align: center;
}
.article-hero.no-bg{
    background-color: #1e1e1e;
}
.article-hero.no-bg .article-hero__inner{
    height: auto;
    aspect-ratio: auto;
}
.article-hero.no-bg .article-hero__overlay{
    display: none;
}

/* =============================================
   ARTICLE BODY
   ============================================= */
.article-body {
    background: var(--white);
}

.article-body__inner {
    padding: 48px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 878px;
    margin-left: auto;
    margin-right: auto;
}

.article-promo {
    font-weight: 700;
    font-size: 24px;
    color: var(--article-text);
    line-height: 1.4;
}

@media screen and (max-width: 992px) {
    .article-promo {
        font-size: 20px;
    }
}

.article-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-text p {
    font-size: 18px;
    font-weight: 400;
    color: var(--article-text);
    line-height: 1.6;
}

.article-text blockquote {
    margin: 0;
    padding: 0;
}

.article-text blockquote p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.1;
}

.article-text a {
    text-decoration: underline;

    &:hover {
        text-decoration: none;
    }
}

.article-facts {
    display: flex;
    gap: 68px;
    align-items: flex-start;
    justify-content: center;
    background: var(--light);
    border-radius: 8px;
    padding: 48px;
    text-align: center;
    max-width: 864px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.article-fact {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.article-fact__number {
    font-size: 27px;
    font-weight: 800;
    color: var(--article-text);
    line-height: 1;
}

.article-fact__label {
    font-size: 18px;
    font-weight: 400;
    color: var(--article-text);
    line-height: 1;
}

.article-img-full {
    width: 50%;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.article-img-full img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media screen and (max-width: 991px) {
    .article-img-full {
        width: 75%;
    }
}

.article-img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.article-img-pair__item {
    height: auto;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.article-img-pair__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-img-row {
    display: grid;
    grid-template-columns: repeat(var(--counter-column, 1), minmax(0, 1fr));
    gap: 15px;
}

.article-img-row__item {
    height: auto;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    flex-direction: column;
}

.article-img-row__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-img-caption {
    display: block;
    margin-top: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #000;
    text-align: left;
}

@media screen and (max-width: 767px) {
    .article-img-caption {
        font-size: 11px;
        margin-top: 6px;
    }
}

.article-text-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-text-block__heading {
    font-size: 18px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.75);
    line-height: 1.25;
}

.article-text-block p,
.article-text-block__p {
    font-size: 18px;
    font-weight: 400;
    color: var(--article-text);
    line-height: 1.6;
}

.article-text-img {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: flex-start;
}

.article-text-img__img {
    overflow: hidden;
    border-radius: 0;
    align-self: stretch;
}

.article-text-img__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-text-img__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-source {
    font-size: 18px;
    font-weight: 500;
    color: var(--article-text);
    line-height: 1.6;
}

.article-source a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media screen and (min-width: 640px) {
    .article-text blockquote p {
        font-size: 30px;
    }
}

/* =============================================
   CREATIVE STUDIO HERO
   ============================================= */
.studio-hero {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.studio-hero__inner {
    height: 749px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    padding: 80px;
    position: relative;
}

.studio-hero__bg {
    position: absolute;
    inset: 0;
}

.studio-hero__bg img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center top;
}

.studio-hero__overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 33%, rgba(0, 0, 0, 0.78) 81%);
}

.studio-hero__title {
    font-size: 64px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.studio-hero__subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.6;
    max-width: 566px;
    position: relative;
    z-index: 1;
}

/* =============================================
   CREATIVE STUDIO INTRO (below hero, desktop visible)
   ============================================= */
.studio-intro {
    background: var(--white);
}

.studio-intro__inner {
    padding: 48px 80px;
    text-align: center;
    display: none;
}

.studio-intro__text {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark);
    line-height: 1.6;
    max-width: 566px;
    margin: 0 auto;
}


/* =============================================
   RESPONSIVE - 1400px
   ============================================= */
@media screen and (max-width: 1400px) {
    .hero-home__title {
        font-size: 72px;
    }

    .hero-home__subtitle {
        font-size: 28px;
    }

    .article-hero__title {
        font-size: 72px;
    }

    .collections-section__grid {
        gap: 24px;
    }

    .instagram-section__grid {
        gap: 24px;
    }

    .footer__top {
        gap: 120px;
    }
}

/* =============================================
   RESPONSIVE - 1200px
   ============================================= */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .header__wrapper {
        padding: 16px 40px;
    }

    .news-section__inner {
        padding: 48px 40px;
    }

    .collections-section__inner {
        padding: 48px 40px;
    }

    .instagram-section__inner {
        padding: 48px 40px;
    }

    .subscribe__inner {
        padding: 48px 40px;
    }

    .calendar-preview__inner {
        padding: 0 40px;
    }

    .footer__inner {
        padding: 40px 40px;
    }

    .hero-home__inner {
        padding: 48px 40px;
    }

    .hero-inner__inner {
        padding: 48px 40px;
    }

    .news-page__inner {
        padding: 0 40px 60px;
    }

    .collections-page__inner {
        padding: 0 40px 60px;
    }

    .calendar-page__inner {
        padding: 0 40px 60px;
    }

    .contact-form-section__inner {
        padding: 48px 40px;
    }

    .spotlight-section__feature {
        padding-left: 40px;
    }

    .spotlight-section__image {
        width: 700px;
    }
}

@media screen and (max-width: 992px) {
    .article-body__inner {
        padding: 24px 20px;
        gap: 16px;
    }

    .article-img-pair {
        gap: 16px;
    }

    .article-img-row {
        gap: 16px;
    }
}

/* =============================================
   RESPONSIVE - 992px (tablet)
   ============================================= */
@media screen and (max-width: 992px) {
    .header__logo a {
        font-size: 24px;
    }

    .header__nav {
        position: fixed;
        z-index: -2;
        top: 0;
        left: 0;
        background: var(--white);
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 84px 20px 64px;
        transform: translateX(-100%);
        opacity: 0;
        transition: all 0.3s linear;
        display: flex;
        flex-direction: column;
    }

    .header__nav.open {
        transform: translateX(0);
        opacity: 1;
    }

    .header__nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        flex: 0 0 auto;
    }

    .header__nav ul li a {
        font-size: 28px;
    }

    .header__nav .header__social {
        display: block;
        width: 20px;
        height: 20px;
        margin-top: 48px;
        flex: 0 0 auto;
    }

    .header__nav .header__social img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) saturate(100%) invert(15%) sepia(4%) saturate(8%) hue-rotate(333deg) brightness(94%) contrast(84%);
    }

    .header__menu {
        display: block;
    }

    .hero-home__inner {
        height: 600px;
    }

    .hero-home__title {
        font-size: 56px;
    }

    .hero-home__subtitle {
        font-size: 20px;
        max-width: 100%;
    }

    .news-section__grid {
        grid-template-columns: 1fr;
    }

    .news-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spotlight-section__feature {
        flex-direction: column;
        height: auto;
        padding: 48px 40px;
        gap: 24px;
    }

    .spotlight-section__image {
        width: 100%;
        height: auto;
    }

    .collections-section__grid {
        grid-template-columns: 1fr;
    }

    .collections-page__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendar-preview__inner {
        flex-direction: column;
        padding: 48px 40px;
    }

    .calendar-preview__events {
        width: 100%;
        padding: 0;
    }

    .event-item {
        flex-wrap: wrap;
    }

    .event-item__img {
        width: 100%;
        height: 250px;
    }

    .calendar-page__layout {
        gap: 35px;
    }

    .calendar-page__layout {
        flex-direction: column;
    }

    .calendar-widget {
        width: 100%;
        padding: 0 27px;
        height: auto;
    }

    .category-dropdown {
        width: 100%;
    }

    .calendar-widget__days {
        gap: 10px 4px;
    }

    .calendar-day {
        font-size: 12px;

    }

    .calendar-day:not(.has-event) {
        opacity: 0.5;
    }

    .calendar-day.today {
        opacity: 1;
    }

    .calendar-widget__weekdays {
        gap: 5px;
    }

    .instagram-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-hero__inner {
        padding: 48px 40px;
    }

    .article-hero__title {
        font-size: 56px;
    }

    .article-hero__subtitle {
        font-size: 22px;
    }

    .article-text-img {
        grid-template-columns: 1fr;
    }

    .footer__top {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
    }

    .footer__info {
        order: 1;
        margin-top: 34px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .footer__info a {
        font-weight: 400;
        line-height: 1;
        font-size: 14px;
        letter-spacing: -0.1px;
        color: #8A8A8A;
    }

    .contact-form .form__row {
        grid-template-columns: 1fr;
    }

    .studio-hero__inner {
        height: auto;
        padding: 60px 40px;
    }

    .studio-hero__title {
        font-size: 48px;
    }
}

/* =============================================
   RESPONSIVE - 768px
   ============================================= */
@media screen and (max-width: 768px) {
    .hero-home__title {
        font-size: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .news-card__title {
        font-size: 22px;
    }

    .collection-card__name {
        font-size: 22px;
    }

    .subscribe__title {
        font-size: 28px;
    }

    .subscribe__form {
        flex-direction: column;
        width: 100%;
    }

    .subscribe__form form {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;

    }

    .subscribe__inner {
        gap: 24px;
    }

    .subscribe__title {
        margin-bottom: 8px;
    }

    .subscribe__form form .btn {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        margin-top: 12px;
    }

    .subscribe__input {
        width: 100%;
    }

    .calendar-preview__title {
        font-size: 32px;
    }

    .article-hero__title {
        font-size: 40px;
    }

    .article-hero__subtitle {
        font-size: 18px;
    }

    .article-facts {
        flex-direction: column;
        gap: 32px;
    }

    .article-img-pair__item {
        height: auto;
    }

    .article-img-row {
        grid-template-columns: 1fr;
    }

    .news-page__grid {
        grid-template-columns: 1fr;
    }

    .collections-page__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .instagram-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* =============================================
   RESPONSIVE - 576px
   ============================================= */
@media screen and (max-width: 576px) {
    .article-hero__content {
        gap: 12px;
    }

    .calendar-event-item__desc:empty,
    .calendar-event-item__content>p:empty {
        display: none;
    }

    .calendar-event-item__desc,
    .calendar-event-item__content>p {
        font-size: 16px;
        line-height: 1.4;
    }

    .calendar-widget__header {
        padding-top: 16px;
        padding-bottom: 13px;
    }

    .collections-page-card__img {
        aspect-ratio: 335 / 496;
        margin-bottom: 12px;
    }

    .term-collections .hero-inner__inner {
        padding-top: 8px;
    }

    .term-spotlight .hero-inner__inner {
        padding-top: 12px;
    }

    .hero-inner__text,
    .hero-inner__content>p {
        line-height: 1.25;
    }

    .news-page-card__img {
        margin-bottom: 12px;
    }

    .spotlight-section__feature {
        flex-direction: column-reverse;
        background: rgba(255, 255, 255, 0);
        padding: 0;
        gap: 0;
    }

    .spotlight-section__text {
        font-size: 20px;
        text-align: center;
    }

    .spotlight-section__inner {
        padding-bottom: 24px;
    }

    .spotlight-section__content {
        padding: 24px 20px;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
    }

    .spotlight-section__content .btn {
        width: 100%;
    }

    .spotlight-section__image {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .spotlight-section__title {
        margin-bottom: 24px;
    }

    /* GENERAL */
    .container {
        padding: 0 20px;
    }

    .main {
        padding-top: 64px;
    }

    /* HEADER */
    .header__wrapper {
        padding: 16px 20px;
        height: 64px;
        box-sizing: border-box;
    }

    .header__logo a {
        font-size: 20px;
    }

    /* FOOTER */
    .footer__nav ul {
        gap: 20px;
    }

    .footer__inner {
        padding: 48px 20px;
    }

    .footer__top {
        flex-direction: column;
        gap: 24px;
        padding-bottom: 24px;
    }

    .footer__bio {
        flex-direction: column;
        gap: 24px;
        order: 1;
    }

    .footer__divider {
        margin-bottom: 24px;
    }

    .footer__bio-content {
        display: none;
    }

    .footer .footer__nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        order: -1;
    }

    .footer__nav a {
        font-size: 16px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        text-align: left;
    }

    .footer__legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer .footer__legal ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 14px;
    }

    /* HOME HERO */
    .hero-home__inner {
        height: 500px;
        padding: 40px 20px;
    }

    .hero-home__title {
        font-size: 32px;
    }

    .hero-home__subtitle {
        font-size: 16px;
        max-width: 100%;
    }

    /* SECTION TITLES */
    .section-title {
        font-size: 24px;
        font-weight: 300;
    }

    /* NEWS SECTION (home) */
    .news-section__inner {
        padding: 40px 20px 48px;
        gap: 24px;
    }

    .news-section__inner .btn {
        width: 100%;
    }

    .news-card__title {
        font-size: 20px;
    }

    /* COLLECTIONS (home) — horizontal scroll */
    .collections-section__inner {
        padding: 48px 0 24px;
        gap: 24px;
    }

    .collections-section__header {
        padding: 0 20px;
        margin-bottom: 24px;
    }

    .collections-section__grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding: 0 20px 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .collections-section__inner .btn {
        margin-top: 12px;
        width: calc(100% - 40px);
    }

    .collections-section__grid::-webkit-scrollbar {
        display: none;
    }

    .collection-card {
        min-width: 277px;
        flex: 0 0 auto;
        width: 277px;
    }

    .collection-card__img {
        aspect-ratio: 1 / 1.35379061;
    }

    /* CALENDAR PREVIEW (home) */
    .calendar-preview {
        background: rgba(255, 255, 255, 0);
    }

    .calendar-preview__inner {
        flex-direction: column;
        padding: 24px 20px;
        gap: 0;
        min-height: 0;
    }

    .calendar-preview__text {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .calendar-preview__text>.btn {
        display: none;
    }

    .calendar-preview__desc {
        display: none;
    }

    .calendar-preview__title {
        font-weight: 300;
        font-size: 24px;
    }

    .calendar-preview__events {
        width: 100%;
        padding: 0;
    }

    .event-item {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .event-item__img {
        width: 100%;
        aspect-ratio: auto;
        height: auto;
        border-radius: 0;
    }

    .event-item__date {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        padding: 20px 0 9px;
        border-bottom: 1px solid var(--grey-2);
        width: auto;
        min-width: 0;
    }

    .event-item__day {
        font-weight: 300;
        font-size: 16px;
    }

    .event-item__time {
        font-size: 16px;
    }

    .event-item__divider {
        display: none;
    }

    .event-item__desc {
        display: none;
    }

    .event-item__content {
        padding-top: 24px;
    }

    .event-item__title {
        font-size: 22px;
        line-height: 1.2;
    }

    .calendar-preview__mobile-btn {
        width: 100%;
        display: flex;
        margin-top: 24px;
    }

    /* INSTAGRAM */
    .instagram-section__inner {
        padding: 24px 20px;
        gap: 24px
    }

    .instagram-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .instagram-card:nth-child(n+3) {
        display: none;
    }

    /* SUBSCRIBE */
    .subscribe__inner {
        padding: 40px 20px;
    }

    .subscribe__title {
        font-size: 24px;
    }

    /* HERO INNER PAGES */
    .hero-inner__inner {
        padding: 40px 20px;
    }

    .hero-inner__title {
        font-size: 32px;
    }

    /* NEWS PAGE */
    .news-page__inner {
        padding: 0 20px 48px;
    }

    .news-page__grid {
        gap: 32px;
    }

    .news-page-card__title {
        font-size: 24px;
        font-weight: 600;
    }

    .news-page-card__date {
        display: none;
    }

    .news-page-card__desc {
        display: block;
    }

    /* COLLECTIONS PAGE */
    .article-hero__inner {
        height: auto;
        aspect-ratio: 375 / 532;
    }

    .collections-page__inner {
        padding: 0 20px 40px;
    }

    .collections-page-card__name {
        font-size: 24px;
    }

    .collections-page-card__season {
        font-size: 16px;
    }

    /* HERO INNER / SEARCH & SELECT */
    .category-dropdown {
        width: 100%;
    }

    .category-dropdown__toggle {
        height: 48px;
        font-size: 16px;
        padding: 8px 12px 8px 16px;
    }

    .category-dropdown__option {
        height: 44px;
        font-size: 14px;
    }

    .category-dropdown__clear,
    .category-dropdown__apply {
        width: 50%;
        height: 40px;
        font-size: 14px;
    }

    .category-search {
        padding: 4px 12px;
        height: 52px;
    }

    .category-search__input {
        font-size: 16px;
        color: #8A8A8A;
        height: 100%;
    }

    .category-search__input::placeholder {
        color: #8A8A8A;
    }

    /* CALENDAR PAGE */
    .calendar-page__inner {
        padding: 0 20px 48px;
    }

    .calendar-widget {
        padding: 0 0;
        gap: 23px;
    }

    .calendar-widget__weekdays span {
        font-size: 12px;
        padding: 0;
        line-height: 2.125;
    }

    .calendar-widget__weekdays {
        margin-bottom: 5px;
    }

    .calendar-events-title {
        display: block;
    }

    .calendar-page__events {
        width: 100%;
        gap: 0;
        padding: 0;
    }

    .calendar-event-item {
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding-bottom: 0;
        margin-bottom: 35px;
        border-bottom: none;
    }

    .calendar-event-item:last-child {
        margin-bottom: 0;
    }

    .calendar-event-item__img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }

    .calendar-event-item__date {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        padding: 19px 0 12px;
        border-bottom: 1px solid var(--grey-2);
        width: auto;
        min-width: 0;
        margin-bottom: 12px;
    }

    .calendar-event-item__day,
    .calendar-event-item__time {
        font-weight: 400;
        font-size: 16px;
    }

    .calendar-event-item__title {
        font-size: 24px;
        line-height: 1.2;
        font-weight: 600;
        color: rgb(0 0 0 / 0.75);
    }

    .calendar-event-item__divider {
        display: none;
    }

    /* CONTACT FORM */
    .contact-form-section__inner {
        padding: 24px 20px;
    }

    .contact-form-section--dark.contact-form-section__inner {
        padding: 48px 20px;
    }

    .contact-form .form__row {
        grid-template-columns: 1fr;
    }

    .contact-form-section__title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .contact-form-section.contact-form-section--dark .contact-form-section__subtitle {
        color: #fff;
        line-height: 1.4;
    }

    .contact-form-section__header {
        margin-bottom: 48px;
    }

    .form__submit {
        width: 100%;
    }

    /* STUDIO HERO (mobile — dark image overlay) */
    .studio-hero__inner {
        height: 501px;
        padding: 40px 20px;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .studio-hero__bg {
        display: block;
    }

    .studio-hero__overlay {
        display: block;
    }

    .studio-hero__title {
        font-size: 32px;
        color: var(--white);
    }

    .studio-hero__subtitle {
        display: none;
    }

    /* STUDIO INTRO */
    .studio-intro__inner {
        display: flex;
        padding: 24px 20px;
    }

    .studio-intro__text {
        font-size: 16px;
    }

    /* ARTICLE */
    .article-hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 41.31%, rgba(0, 0, 0, 0.8) 64.37%);
    }

    .article-hero__inner {
        padding: 40px 20px;
    }

    .article-hero__title {
        font-size: 32px;
    }

    .article-hero__subtitle {
        font-size: 16px;
    }

    .article-img-full {
        width: 100%;
        margin: 0;
        height: auto;
    }

    .article-text-block p {
        font-size: 18px;
    }

    .article-text-block__heading {
        font-size: 18px;
        margin-bottom: -12px;
    }

    .article-source {
        font-size: 18px;
    }

    .article-facts {
        flex-direction: column;
        gap: 24px;
    }

    .article-facts {
        margin-top: 0;
        margin-bottom: 0;
        align-items: center;
        gap: 68px;
        padding: 48px 24px;
    }

    .article-text-block {
        gap: 24px;
    }

    .article-text p {
        font-size: 18px;
        line-height: 1.4;
    }

    .article-text-block p {
        line-height: 1.4;
    }
}

.article-text-img__content>p:empty {
    display: none;
}


.news-page__grid.news-page__grid--category-pattern {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.news-page__grid.news-page__grid--category-pattern>.news-page-card {
    width: calc((100% - 48px) / 3);
}

.news-page__grid.news-page__grid--category-pattern>.news-page-card:nth-child(5n+1),
.news-page__grid.news-page__grid--category-pattern>.news-page-card:nth-child(5n+2) {
    width: calc((100% - 24px) / 2);
}

@media (max-width: 991px) {

    .news-page__grid.news-page__grid--category-pattern>.news-page-card,
    .news-page__grid--category-pattern>.news-page-card:nth-child(5n+1),
    .news-page__grid.news-page__grid--category-pattern>.news-page-card:nth-child(5n+2) {
        width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 767px) {

    .news-page__grid.news-page__grid--category-pattern>.news-page-card,
    .news-page__grid.news-page__grid--category-pattern>.news-page-card:nth-child(5n+1),
    .news-page__grid.news-page__grid--category-pattern>.news-page-card:nth-child(5n+2) {
        width: 100%;
    }
}



@media (max-width: 480px) {

    #sb_instagram.sbi_col_3.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_col_4.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_col_5.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_col_6.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_col_7.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_col_8.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_col_9.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_col_10.sbi_mob_col_auto #sbi_images,
    #sb_instagram.sbi_mob_col_1 #sbi_images {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}