
:root {
  --bg: #fbf7f5;
  --text: #2b1e2f;
  --muted: #6f5b6a;
  --accent: #b035c6;
  --accent-soft: #ffeaf8;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(79, 40, 103, 0.12);
}

body[data-theme="rose-default"] {
  --bg: #fbf7f5;
  --text: #2b1e2f;
  --muted: #6f5b6a;
  --accent: #b035c6;
  --accent-soft: #ffeaf8;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(79, 40, 103, 0.12);
}

body[data-theme="rose-blush"] {
  --bg: #fdf4f7;
  --text: #2a1f2d;
  --muted: #725b67;
  --accent: #c24686;
  --accent-soft: #ffe3ee;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(138, 64, 92, 0.14);
}

body[data-theme="rose-mauve"] {
  --bg: #f8f3f9;
  --text: #281d2c;
  --muted: #6c5a71;
  --accent: #a856c8;
  --accent-soft: #f4e6ff;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(98, 58, 124, 0.14);
}

body[data-theme="rose-coral"] {
  --bg: #fff2f4;
  --text: #2b1d28;
  --muted: #745861;
  --accent: #d35a8a;
  --accent-soft: #ffe1e8;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(174, 74, 110, 0.14);
}

body[data-theme="rose-dusty"] {
  --bg: #fbf6f7;
  --text: #2a1e2a;
  --muted: #6f5f68;
  --accent: #b55d96;
  --accent-soft: #f9e2f0;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(130, 76, 104, 0.14);
}

body[data-theme="rose-berry"] {
  --bg: #f9f1f6;
  --text: #281b26;
  --muted: #6a5662;
  --accent: #9b3f78;
  --accent-soft: #f7dde9;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(120, 58, 87, 0.15);
}

body[data-theme="rose-pearl"] {
  --bg: #fcf5f7;
  --text: #2b202a;
  --muted: #73606a;
  --accent: #c06aa5;
  --accent-soft: #ffe7f2;
  --card: #ffffff;
  --shadow: 0 16px 32px rgba(150, 78, 118, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: sans-serif;
  color: var(--text);
  background: var(--bg);
  position: relative;
  padding-bottom: 96px;
}

body.modal-open {
  overflow: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("../bg.png");
  background-repeat: no-repeat;

  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: multiply;
  top: 125px;
  
}

body > * {
  position: relative;
  z-index: 3;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 100% - 25px);
  margin: 0 auto;
}

.header {
  padding: 24px 0 10px;
  position: relative;
  z-index: 50;
  overflow: visible;
}

.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__row .hero__cta {
  display: none;
}

.theme-switcher {
  position: static;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
    justify-content: center;
  }

  .theme-switcher__label {
    display: none;
  }

  .theme-switcher__select {
    appearance: menulist;
    -webkit-appearance: menulist;
    background-image: none;
    font-size: 16px;
    padding: 8px 12px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
  }

  .direction-menu__summary {
    font-size: 16px;
    padding: 10px 36px 10px 12px;
  }

  .direction-menu__link {
    font-size: 16px;
    padding: 10px 12px;
  }
}

.brand {
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
}

.breadcrumbs {
    padding: 6px 0 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    background: rgba(251, 247, 245, 0.96);
    backdrop-filter: blur(3px);
    box-shadow: 0 3px 10px rgba(43, 30, 47, 0.04);
}

body.is-scrolled .breadcrumbs {
    background: rgba(251, 247, 245, 0.96);
}

.breadcrumbs__row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 16px;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs__item--brand {
  color: #c06aa5;
  font-weight: 700;
  font-size: 20px;
}

.breadcrumbs__item--current {
  color: var(--text);
  font-weight: 600;
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  /* align-items: center; */
  padding: 60px 0 0px;
}

.hero__image {
  border-radius: 10px;
  background-color: #f6e9f5;
  background-image: url("../logo.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 220px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__image-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero__title {
  font-size: clamp(24px, 4vw, 42px);
  margin: 0 0 12px;
  font-family: "Lora", "DM Sans", "Segoe UI", Arial, sans-serif;
}

.hero__text {
  margin: 0 0 18px;
  line-height: 1.6;
  color: var(--muted);
}

.hero__cta {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.section {
  padding: 10px 0;
}

.section__title {
  font-size: clamp(22px, 3vw, 32px);
  margin: 10 0 8px;
  font-family: "Lora", "DM Sans", "Segoe UI", Arial, sans-serif;
}

.section__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
}

.section__subtitle--note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(176, 53, 198, 0.12);
  box-shadow: var(--shadow);
  line-height: 1.6;
}

.direction-article {
  text-align: justify;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 10px;
  padding: 15px 15px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 53, 198, 0.12);
}

.direction-article h3 {
  margin-top: 18px;
}

.direction-article ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.direction-media {
  display: block;
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin: 16px 0 20px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

@media (min-width: 1024px) {
  .editorial-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
  }

  .editorial-grid > .editorial-card:nth-last-child(2) {
    grid-column: 2;
  }

  .editorial-grid > .editorial-card:nth-last-child(1) {
    grid-column: 3;
  }
}

.editorial-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(176, 53, 198, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.editorial-card__thumb {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(79, 40, 103, 0.12);
}

.editorial-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--accent);
  font-family: "Lora", "DM Sans", "Segoe UI", Arial, sans-serif;
}

.editorial-card__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.editorial-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  
  letter-spacing: 0.2px;
  color: var(--accent);
  background: rgba(176, 53, 198, 0.08);
  padding: 6px 10px;
  border-radius: 10px;
}

.editorial-card__more::after {
  content: "→";
  font-style: normal;
}

.editorial-card:focus-visible,
.editorial-card:hover {
  border-color: rgba(176, 53, 198, 0.25);
  box-shadow: 0 18px 36px rgba(79, 40, 103, 0.16);
}

.editorial-card__link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.editorial-card__link::after {
  content: "→";
}

.panel {
  margin-top: 20px;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 234, 248, 0.78);
  border: 1px solid rgba(176, 53, 198, 0.2);
}

.panel h4 {
  margin: 0 0 8px;
}

.panel p {
  margin: 0;
  line-height: 1.6;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.meta-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 53, 198, 0.12);
}

.meta-card h3 {
  margin: 0 0 6px;
  color: var(--accent);
}

.meta-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ticker__item {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(176, 53, 198, 0.12);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  width: 100%;
}

.ticker__item::after {
  content: "✓";
  color: #21a453;
  font-weight: 700;
  margin-left: 12px;
}

.register {
  margin-top: 24px;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.register__button {
  display: inline-flex;
  padding: 12px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  appearance: none;
}

.register__note {
  display: none;
}

.floating-contact {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: calc(74px + env(safe-area-inset-bottom));
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(176, 53, 198, 0.28);
  color: var(--accent);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(176, 53, 198, 0.2);
  z-index: 1000;
  cursor: pointer;
  appearance: none;
}

.floating-cta {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(176, 53, 198, 0.25);
  z-index: 1000;
  cursor: pointer;
  border: none;
  appearance: none;
}

.signup-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 18, 36, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
  padding: 24px;
}

.signup-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.signup-modal__panel {
  width: min(480px, 100%);
  background: var(--card);
  border-radius: 10px;
  padding: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 53, 198, 0.18);
  position: relative;
}

.signup-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(176, 53, 198, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  font-size: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.signup-modal__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-family: "Lora", "DM Sans", "Segoe UI", Arial, sans-serif;
}

.signup-modal__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.signup-modal__actions {
  display: grid;
  gap: 12px;
}

.signup-modal__contact-list {
  display: grid;
  gap: 10px;
}

.signup-modal__contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(176, 53, 198, 0.12);
}

.signup-modal__contact-label {
  display: grid;
  gap: 2px;
  color: var(--text);
  font-weight: 600;
}

.signup-modal__contact-sub {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.signup-modal__contact-action {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(176, 53, 198, 0.2);
  background: rgba(176, 53, 198, 0.08);
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.signup-modal__instruction {
  padding: 14px 16px;
  border-radius: 10px;
    background: rgba(255, 234, 248, 0.7);
    border: 1px solid rgba(176, 53, 198, 0.16);
    color: var(--muted);
    line-height: 1.5;
    font-size: 14px;
}

.signup-modal__instruction p {
  margin: 0 0 8px;
}

.signup-modal__instruction p:last-child {
  margin-bottom: 0;
}

.signup-modal__notice {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
    background: rgb(249 249 249 / 60%);
    border: 1px solid rgba(176, 53, 198, 0.14);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    font-style: italic;
}

 

.signup-modal__primary {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.cancel-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px auto 8px;
  padding: 10px 10px;
  background: rgba(255, 228, 235, 0.95);
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 141, 165, 0.4);
  box-shadow: 0 6px 18px rgba(255, 128, 166, 0.22);
  width: 95%;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  white-space: normal;
  box-sizing: border-box;
}

.cancel-notice:focus-visible {
  outline: 3px solid rgba(255, 128, 166, 0.45);
  outline-offset: 2px;
}

.cancel-notice:hover {
  filter: brightness(0.98);
}

.cancel-notice__icon {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 420px) {
  .cancel-notice {
    font-size: 14px;
    padding: 10px 8px;
  }

  .cancel-notice__icon {
    font-size: 14px;
  }
}

.cancel-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.cancel-modal-backdrop.is-open {
  display: flex;
}

.cancel-modal-card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 16px 40px rgba(176, 53, 198, 0.2);
}

.cancel-modal-card h3 {
  margin: 0 0 10px;
  color: var(--accent);
}

.cancel-modal-card p {
  margin: 0 0 16px;
  line-height: 1.5;
}

.cancel-modal-actions {
  display: flex;
  justify-content: flex-end;
}

.cancel-modal-close {
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.signup-modal__primary--disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}

.signup-modal__consent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 4px;
}

.signup-modal__checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.signup-modal__primary:hover,
.signup-modal__primary:focus-visible {
  box-shadow: 0 14px 28px rgba(176, 53, 198, 0.24);
  transform: translateY(-1px);
  outline: none;
}

.signup-modal__choice {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(176, 53, 198, 0.2);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.signup-modal__choice-icon {
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.signup-modal__choice:hover,
.signup-modal__choice:focus-visible {
  border-color: rgba(176, 53, 198, 0.4);
  box-shadow: 0 12px 24px rgba(176, 53, 198, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.footer {
  padding: 28px 0 40px;
  text-align: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
  font-size: 14px;
  line-height: 1.5;
}

.footer__sep {
  opacity: 0.55;
}

@media (max-width: 640px) {
  .header__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

}


@media (max-width: 420px) {

