:root {
    --primary-bg: #FAF9F6;
    --secondary-bg: #F3F2EE;
    --accent-bg: #E5E2DA;
    --text-primary: #1A1A1A;
    --text-secondary: #5E5E5E;
    --brand-primary: #2D241E;
    --brand-secondary: #8B735B;
    --brand-accent: #A68966;
    --brand-highlight: #D4AF37;
    --ui-border: #E5E2DA;
    --ui-card-bg: #FFFFFF;
    --ui-divider: #D1CEC4;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.text-muted {
    color: #5E5E5E !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--brand-accent);
}

/* ===== header ===== */
.rovalen-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rovalen-header .js-mobile-menu {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rovalen-header a {
    text-decoration: none;
}

.rovalen-header .js-mobile-menu.flex {
    display: flex;
}

/* ===== hero ===== */
.rovalen-hero .rovalen-hero-title {
    font-family: 'Cormorant Garamond', serif;
}

.rovalen-hero .rovalen-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
}

.rovalen-hero .rovalen-hero-desc {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.rovalen-hero a {
    text-decoration: none;
}

.rovalen-hero .line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
    .rovalen-hero .rovalen-hero-title {
        font-size: 16px;
    }

    .rovalen-hero .rovalen-hero-subtitle {
        font-size: 14px;
    }

    .rovalen-hero .rovalen-hero-desc {
        font-size: 14px;
    }
}

/* ===== news-grid ===== */
.news-grid-block {
    font-family: 'Inter', sans-serif;
}

.news-grid-block .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.news-grid-block .filter-tabs .js-filter-btn.active {
    background-color: #FFFFFF;
    color: #2D241E;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.news-grid-block .js-news-card {
    height: 100%;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.news-grid-block .js-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(45, 36, 30, 0.08);
}

.news-grid-block .js-news-card img {
    transition: transform 0.4s ease-in-out;
}

.news-grid-block .js-news-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .news-grid-block .news-grid-header {
        text-align: center;
        align-items: center;
    }

    .news-grid-block .controls {
        justify-content: center;
    }
}

/* ===== brands-grid ===== */
.brands-grid-section {
    font-family: 'Inter', sans-serif;
}

.brands-grid-section .font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.brands-grid-section .brand-card {
    height: 100%;
    border-bottom: 1px solid #E5E2DA;
    padding-bottom: 2rem;
    transition: border-color 0.3s ease;
}

@media (min-width: 1024px) {
    .brands-grid-section .brand-card {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.brands-grid-section .brand-card-btn {
    position: relative;
    transition: color 0.3s ease;
}

.brands-grid-section .brand-card-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #A68966;
    transition: width 0.3s ease;
}

.brands-grid-section .brand-card:hover .brand-card-btn::after {
    width: 100%;
}

.brands-grid-section .brand-card-img-link {
    display: block;
    position: relative;
}

.brands-grid-section .brand-card-img-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(45, 36, 30, 0.05);
    z-index: 1;
    pointer-events: none;
}

.brands-grid-section .line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== exhibitions-grid ===== */
.exhibitions-grid {
    font-family: 'Inter', sans-serif;
}

.exhibitions-grid h2,
.exhibitions-grid h3 {
    font-family: 'Cormorant Garamond', serif;
}

.exhibitions-grid .exhibition-card img {
    transition: transform 0.4s ease;
}

.exhibitions-grid .exhibition-card:hover img {
    transform: scale(1.05);
}

.exhibitions-grid .js-filter-btn {
    transition: all 0.2s ease;
    cursor: pointer;
}

.exhibitions-grid .js-filter-btn.active {
    background-color: #2D241E;
    color: #FFFFFF;
    border-color: #2D241E;
}

.exhibitions-grid .js-filter-btn:not(.active):hover {
    background-color: #F3F2EE;
    border-color: #2D241E;
    color: #2D241E;
}

@media (max-width: 767px) {
    .exhibitions-grid .exhibition-card {
        padding-bottom: 2rem;
        border-bottom: 1px solid #E5E2DA;
    }

    .exhibitions-grid .exhibition-card:last-child {
        border-bottom: none;
    }
}

/* ===== newsletter ===== */
.rovalen-newsletter {
    position: relative;
    width: 100%;
}

.rovalen-newsletter .js-newsletter-input::placeholder {
    color: #5E5E5E;
    opacity: 0.6;
}

.rovalen-newsletter .js-newsletter-input:focus::placeholder {
    opacity: 0.3;
}

/* ===== footer ===== */
.footer-block {
    position: relative;
    z-index: 10;
}

.footer-block a {
    text-decoration: none;
    display: inline-block;
}

.footer-block .footer-nav ul li,
.footer-block .footer-contacts ul li,
.footer-block .footer-legal ul li {
    list-style: none;
}

@media (max-width: 767px) {
    .footer-block .footer-container {
        text-align: center;
    }

    .footer-block .footer-brand {
        align-items: center;
    }

    .footer-block .footer-brand p {
        max-width: 100%;
    }

    .footer-block .footer-bottom {
        flex-direction: column;
    }
}

.rovalen-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rovalen-header .js-mobile-menu {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rovalen-header a {
    text-decoration: none;
}

.rovalen-header .js-mobile-menu.flex {
    display: flex;
}

.footer-block {
    position: relative;
    z-index: 10;
}

.footer-block a {
    text-decoration: none;
    display: inline-block;
}

.footer-block .footer-nav ul li,
.footer-block .footer-contacts ul li,
.footer-block .footer-legal ul li {
    list-style: none;
}

@media (max-width: 767px) {
    .footer-block .footer-container {
        text-align: center;
    }

    .footer-block .footer-brand {
        align-items: center;
    }

    .footer-block .footer-brand p {
        max-width: 100%;
    }

    .footer-block .footer-bottom {
        flex-direction: column;
    }
}

.webinar-options .js-webinar-option.is-active {
    border-color: #A68966;
    background-color: #FAF9F6;
}

.exhibition-card {
    transition: transform 0.3s ease;
}


/* ===== PAGE: privacy ===== */
.policy-document-container {
  background-color: #FAF9F6;
  padding: 40px 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.policy-document-container .privacy-content-wrapper {
  max-width: 800px;
  width: 100%;
  background-color: #FFFFFF;
  padding: 32px;
  border: 1px solid #E5E2DA;
}

.policy-document-container .privacy-intro-section {
  margin-bottom: 48px;
  border-bottom: 1px solid #D1CEC4;
  padding-bottom: 24px;
}

.policy-document-container .privacy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.2;
  color: #2D241E;
  font-weight: 300;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .policy-document-container .privacy-title {
    font-size: 42px;
  }
  .policy-document-container .privacy-content-wrapper {
    padding: 64px;
  }
}

.policy-document-container .privacy-update-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B735B;
  font-weight: 600;
}

.policy-document-container .privacy-section {
  margin-bottom: 40px;
}

.policy-document-container .privacy-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.3;
  color: #2D241E;
  font-weight: 600;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .policy-document-container .privacy-subtitle {
    font-size: 26px;
  }
}

.policy-document-container p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.policy-document-container .privacy-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 16px;
}

.policy-document-container .privacy-list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  padding-left: 20px;
  position: relative;
  margin-bottom: 12px;
}

.policy-document-container .privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background-color: #A68966;
  border-radius: 50%;
}

.policy-document-container .privacy-link {
  color: #8B735B;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.policy-document-container .privacy-link:hover {
  border-bottom-color: #8B735B;
}

/* ===== PAGE: terms ===== */
.policy-document-container { padding: 64px 24px; max-width: 800px; margin: 0 auto; background-color: #FAF9F6; }.policy-document-container .policy-article { display: flex; flex-direction: column; }.policy-document-container .policy-date { font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: #8B735B; margin-bottom: 32px; }.policy-document-container .policy-heading { font-family: 'Cormorant Garamond', serif; color: #2D241E; font-size: 16px; font-weight: 300; margin-top: 32px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }@media (min-width: 768px) { .policy-document-container .policy-heading { font-size: 32px; margin-top: 48px; } }.policy-document-container .policy-text { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.7; color: #5E5E5E; margin-bottom: 16px; }@media (min-width: 768px) { .policy-document-container .policy-text { font-size: 16px; } }.policy-document-container .policy-list { list-style: none; padding-left: 0; margin-bottom: 24px; }.policy-document-container .policy-list li { font-family: 'Inter', sans-serif; font-size: 14px; color: #5E5E5E; padding-left: 24px; position: relative; margin-bottom: 12px; line-height: 1.6; }@media (min-width: 768px) { .policy-document-container .policy-list li { font-size: 16px; } }.policy-document-container .policy-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 8px; height: 1px; background-color: #A68966; }.policy-document-container a { color: #2D241E; text-decoration: none; border-bottom: 1px solid #D1CEC4; transition: border-color 0.2s ease; }.policy-document-container a:hover { border-color: #A68966; }

/* ===== PAGE: disclaimer ===== */
.policy-document-container {
  padding: 40px 20px;
  background-color: #FAF9F6;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  max-width: 100%;
}

.rovalen-legal-section {
  max-width: 800px;
  margin: 0 auto;
}

.rovalen-legal-header {
  margin-bottom: 48px;
  border-bottom: 1px solid #E5E2DA;
  padding-bottom: 24px;
}

.rovalen-legal-date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #8B735B;
}

.rovalen-content-block {
  margin-bottom: 40px;
}

.rovalen-content-block h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 20px;
  color: #2D241E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .rovalen-content-block h2 {
    font-size: 32px;
  }
  .policy-document-container {
    padding: 80px 40px;
  }
}

.rovalen-content-block p {
  margin-bottom: 20px;
  color: #5E5E5E;
  font-size: 16px;
}

.rovalen-legal-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.rovalen-legal-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #5E5E5E;
}

.rovalen-legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background-color: #A68966;
}

.rovalen-link {
  color: #2D241E;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.rovalen-link:hover {
  color: #A68966;
}

/* ===== PAGE: cookies ===== */
.policy-document-container { background-color: #FAF9F6; min-height: 100vh; }.policy-document-container__wrapper { max-width: 800px; margin: 0 auto; padding: 3rem 1.25rem; font-family: 'Inter', sans-serif; color: #1A1A1A; }.policy-document-container__section { margin-bottom: 3.5rem; }.policy-document-container__heading { font-family: 'Cormorant Garamond', serif; font-weight: 300; color: #2D241E; border-bottom: 1px solid #E5E2DA; padding-bottom: 0.75rem; margin-bottom: 1.5rem; letter-spacing: -0.01em; }.policy-document-container__subheading { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: #8B735B; margin-bottom: 1rem; }.policy-document-container__text { font-size: 1rem; line-height: 1.8; color: #5E5E5E; margin-bottom: 1.25rem; }.policy-document-container__grid { display: grid; gap: 2rem; grid-template-columns: 1fr; } @media (min-width: 768px) { .policy-document-container__grid { grid-template-columns: repeat(2, 1fr); } }.policy-document-container__list { list-style: none; padding: 0; margin-top: 1.5rem; }.policy-document-container__list-item { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #5E5E5E; line-height: 1.6; }.policy-document-container__list-item::before { content: ''; position: absolute; left: 0; top: 0.75rem; width: 0.5rem; height: 1px; background-color: #A68966; }.policy-document-container__link { color: #2D241E; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s ease; }.policy-document-container__link:hover { border-color: #D4AF37; }

/* ===== PAGE: editorial-contacts ===== */
.editorial-contacts-page .ec-heading {
  margin-top: 0;
}
.editorial-contacts-page .ec-info-image {
  border-radius: 2px;
}
.editorial-contacts-page input, 
.editorial-contacts-page textarea {
  border-radius: 0;
  transition: border-color 0.2s ease;
}
.editorial-contacts-page button {
  transition: all 0.2s ease;
}
.editorial-contacts-page .ec-detail-item svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .editorial-contacts-page .ec-heading {
    font-size: 16px !important;
    line-height: 1.2;
  }
  .editorial-contacts-page .ec-info-content h2 {
    text-align: center;
  }
  .editorial-contacts-page .ec-details-grid {
    text-align: center;
  }
  .editorial-contacts-page .ec-detail-item .flex {
    justify-content: center;
  }
}

.comment-block {
    transition: background-color 0.2s ease;
}

.avatar-initials {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    letter-spacing: -0.01em;
}

.reply-trigger {
    border-bottom: 1px solid transparent;
}

.reply-trigger:hover {
    border-bottom-color: #2D241E;
}

.reply-block {
    position: relative;
}

.reply-block::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    height: 2rem;
    border-left: 2px solid #2D241E;
}

.avatar-initials {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.comment-body p {
    max-width: 65ch;
}


/* ===== PAGE TEMPLATE: industry-news ===== */
.detail-page-template .editorial-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-page-template .editorial-text ul {
    margin: 1.5rem 0;
}

.detail-page-template .editorial-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 14px;
}

.detail-page-template .editorial-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: #A68966;
}

.detail-page-template .gallery-block {
    position: relative;
    overflow: hidden;
}

.detail-page-template .js-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rovalen-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rovalen-header .js-mobile-menu {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rovalen-header .js-mobile-menu.flex {
    display: flex;
}

/* ===== PAGE TEMPLATE: global-brands ===== */
.detail-page-template .editorial-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-page-template .editorial-text ul {
    margin: 1.5rem 0;
}

.detail-page-template .editorial-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 14px;
}

.detail-page-template .editorial-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: #A68966;
}

.detail-page-template .gallery-block {
    position: relative;
    overflow: hidden;
}

.detail-page-template .js-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rovalen-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rovalen-header .js-mobile-menu {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rovalen-header .js-mobile-menu.flex {
    display: flex;
}

/* ===== PAGE TEMPLATE: trends-exhibitions ===== */
.detail-page-template .editorial-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-page-template .editorial-text ul {
    margin: 1.5rem 0;
}

.detail-page-template .editorial-text li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 14px;
}

.detail-page-template .editorial-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 1px;
    background: #A68966;
}

.detail-page-template .gallery-block {
    position: relative;
    overflow: hidden;
}

.detail-page-template .js-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.rovalen-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.rovalen-header .js-mobile-menu {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rovalen-header .js-mobile-menu.flex {
    display: flex;
}

/* Items that supply their own icon must not also render the generic dash marker. */
.detail-page-template .editorial-text li.has-own-icon {
    padding-left: 0;
}

.detail-page-template .editorial-text li.has-own-icon::before {
    content: none;
}
