:root {
  --color-beige: #F5F2ED;
  --color-ocean: #1B365D;
  --color-sage: #8BA889;
  --color-terracotta:#C05746;
  --color-white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  background-color: #F5F2ED;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #F5F2ED;
  color: #1B365D;
  min-height: 100vh;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F5F2ED;
}

::-webkit-scrollbar-thumb {
  background: #dcd7cf;
  border-radius: 10px;
}

.flash {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  text-align: center;
  border: 1px solid transparent;
}
.flash--error {
  background-color: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}
.flash--success {
  background-color: #f0fdf4;
  border-color: #86efac;
  color: #166534;
}

h1, h2, h3, .serif {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: 3.75rem;
  line-height: 1.1;
  font-weight: 700;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.narrative-text {
  line-height: 1.8;
  font-size: 1.125rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-tight {
  letter-spacing: -0.025em;
}

.italic {
  font-style: italic;
}

.first-letter-accent::first-letter {
  font-size: 4.5rem;
  font-weight: 700;
  margin-right: 0.75rem;
  float: left;
  color: #C05746;
  font-family: "Playfair Display", serif;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 56rem;
}

.container--medium {
  max-width: 42rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-grow {
  flex-grow: 1;
}

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

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

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

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

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

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-16 {
  gap: 4rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
  .md\:text-left {
    text-align: left;
  }
}
.layout-sidebar {
  display: flex;
  gap: 2.5rem;
}
.layout-sidebar__aside {
  width: 25%;
  position: sticky;
  top: 7rem;
  height: fit-content;
}
.layout-sidebar__main {
  width: 75%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-flex {
  display: inline-flex;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}

.overflow-hidden {
  overflow: hidden;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

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

.section {
  padding: 5rem 2rem;
}
.section--white {
  background-color: #FFFFFF;
}
.section--beige {
  background-color: #F5F2ED;
}
.section--hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero__content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 768px) {
  .hero__content {
    flex-direction: row;
  }
}
.hero__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .hero__text {
    width: 50%;
  }
}
.hero__description {
  font-size: 1.25rem;
  opacity: 0.8;
  line-height: 1.6;
  max-width: 32rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__visual {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .hero__visual {
    width: 50%;
  }
}
.hero__image-frame {
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__decoration {
  position: absolute;
  z-index: -1;
  bottom: -2.5rem;
  right: -2.5rem;
  width: 16rem;
  height: 16rem;
  background-color: #EAE3D9;
  border-radius: 50%;
  filter: blur(3rem);
  opacity: 0.5;
}

.hero-detail {
  position: relative;
  height: 70vh;
  width: 100%;
}
.hero-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-detail__fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1B365D, #C05746);
}
.hero-detail__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}
.hero-detail__content {
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
  color: #FFFFFF;
}
.hero-detail__badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.hero-detail__title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .hero-detail__title {
    font-size: 4.5rem;
  }
}
.hero-detail__author {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-detail__author-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.hero-detail__author-profile:hover {
  opacity: 0.8;
}
.hero-detail__author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  flex-shrink: 0;
}
.hero-detail__author-name {
  font-weight: 700;
  margin: 0;
}
.hero-detail__author-date {
  font-size: 0.875rem;
  opacity: 0.8;
}
.hero-detail__coauthors {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  gap: 0.75rem;
}
@media (max-width: 640px) {
  .hero-detail__coauthors {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
  }
}
.hero-detail__coauthors-label {
  font-size: 0.85rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-detail__coauthors-list {
  display: flex;
  align-items: center;
}
.hero-detail__coauthor-link {
  display: block;
  margin-left: -10px;
  transition: transform 0.2s ease, z-index 0.2s;
}
.hero-detail__coauthor-link:first-child {
  margin-left: 0;
}
.hero-detail__coauthor-link:hover {
  transform: translateY(-3px);
  z-index: 10;
  position: relative;
}
.hero-detail__coauthor-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.info-bar {
  background-color: #F5F2ED;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.info-bar__content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.info-bar__item {
  padding: 0 1.5rem;
}
.info-bar__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}
.info-bar__value {
  font-weight: 600;
  font-style: italic;
}
.info-bar__divider {
  border-left: 1px solid #d1d5db;
}

.profile-header {
  background-color: #1B365D;
  color: #FFFFFF;
  padding: 4rem 2rem;
  position: relative;
  background-size: cover;
  background-position: center;
}
.profile-header--cover {
  background-color: transparent;
  min-height: 320px;
}
.profile-header__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.profile-header__content {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .profile-header__content {
    flex-direction: row;
  }
}
.profile-header__avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 1.5rem;
  border: 4px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
  flex-shrink: 0;
}
.profile-header__info {
  flex-grow: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .profile-header__info {
    text-align: left;
  }
}
.profile-header__info h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.profile-header__bio {
  opacity: 0.9;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
.profile-header__edit-btn {
  display: inline-block;
  margin-bottom: 1.5rem;
}
.profile-header__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .profile-header__stats {
    justify-content: flex-start;
  }
}
.profile-header__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .profile-header__stat {
    text-align: left;
  }
}
.profile-header__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}
.profile-header__stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.tabs {
  background-color: #FFFFFF;
  border-bottom: 1px solid #f3f4f6;
  position: sticky;
  top: 0;
  z-index: 10;
}
.tabs__container {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  padding: 0 2rem;
}
.tabs__item {
  padding: 1rem 0;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  background: transparent;
}
.tabs__item.active {
  border-bottom: 3px solid #C05746;
  color: #C05746;
}
.tabs__item:not(.active) {
  opacity: 0.4;
}
.tabs__item:not(.active):hover {
  opacity: 1;
}

.map-container {
  background-color: #e0dcd5;
  border-radius: 1.5rem;
  height: 500px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.map-pin {
  width: 20px;
  height: 20px;
  background-color: #C05746;
  border: 3px solid #FFFFFF;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: absolute;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.map-pin:hover {
  transform: rotate(-45deg) scale(1.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}
.btn--terracotta {
  background-color: #C05746;
  color: #FFFFFF;
}
.btn--terracotta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 87, 70, 0.3);
}
.btn--primary {
  background-color: #C05746;
  color: #FFFFFF;
}
.btn--primary:hover {
  opacity: 0.9;
}
.btn--outline {
  border: 2px solid #1B365D;
  color: #1B365D;
  background: transparent;
}
.btn--outline:hover {
  background-color: #1B365D;
  color: #FFFFFF;
}
.btn--outline-terracotta {
  border: 2px solid #C05746;
  color: #C05746;
  background: transparent;
}
.btn--outline-terracotta:hover {
  background-color: #C05746;
  color: #FFFFFF;
}
.btn--ocean {
  background-color: #1B365D;
  color: #FFFFFF;
}
.btn--ocean:hover {
  opacity: 0.9;
}
.btn--rounded {
  border-radius: 9999px;
}
.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn--md {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.btn--outline-white {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  background: transparent;
  transition: background-color 0.2s ease;
}
.btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn--danger {
  background-color: #ef4444;
  color: #FFFFFF;
}
.btn--danger:hover {
  background-color: #b91c1c;
}
.btn--full {
  width: 100%;
}
.btn--next {
  background-color: #C05746;
  color: #FFFFFF;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.btn--next:hover {
  transform: translateY(-2px);
}

.btn--draft-exit {
  font-size: 0.875rem;
  font-weight: 700;
  opacity: 0.5;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
}
.btn--draft-exit:hover {
  opacity: 1;
}

.btn-add-stage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #C05746;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  transition: background-color 0.2s ease;
}
.btn-add-stage:hover {
  text-decoration: underline;
  background-color: rgba(192, 87, 70, 0.08);
}

.card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.card--travel {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .card--travel {
    flex-direction: row;
    align-items: stretch;
  }
}
.card--travel__image {
  width: 100%;
  height: 200px;
  position: relative;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .card--travel__image {
    width: 45%;
    height: auto;
    min-height: 220px;
  }
}
.card--travel__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.card--travel__no-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card--travel__no-image span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: italic;
  opacity: 0.4;
}
.card--travel__content {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 640px) {
  .card--travel__content {
    width: 55%;
    justify-content: center;
  }
}
.card--travel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.card--travel__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-family: "Playfair Display", serif;
}
.card--travel__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.card--travel__title a:hover {
  color: #C05746;
}
.card--travel__subtitle {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 1rem;
  font-weight: 500;
  font-style: italic;
}
.card--travel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-top: none;
  padding: 0;
  margin-bottom: auto;
  opacity: 0.8;
}
.card--travel__footer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-top: none;
  padding-top: 0;
}
.card--travel__stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.6;
}
.card--travel__link {
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #C05746;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}
.card--travel__link:hover {
  opacity: 0.7;
}
.card--mini {
  background: #FFFFFF;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.2s ease;
}
.card--mini:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.card--mini__image {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  display: block;
}
.card--mini__placeholder {
  width: 100%;
  height: 10rem;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card--mini__placeholder span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: italic;
}
.card--mini__body {
  padding: 1.5rem;
}
.card--mini__destination {
  font-size: 10px;
  font-weight: 700;
  color: #C05746;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}
.card--mini__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}
.card--mini__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  opacity: 0.5;
}
.card--mini__draft-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #C05746;
  text-decoration: underline;
}

.btn-bookmark {
  color: #C05746;
  transition: transform 0.2s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}
.btn-bookmark:hover {
  transform: scale(1.1);
}

.card-featured {
  cursor: pointer;
  display: block;
}
.card-featured__image-wrapper {
  position: relative;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
.card-featured__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-featured:hover .card-featured__image-wrapper img {
  transform: scale(1.1);
}
.card-featured__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card-featured__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
  color: inherit;
}
.card-featured__description {
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 1rem;
}
.card-featured__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.8;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  height: 500px;
}
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.category-card:hover {
  transform: scale(1.03);
}
@media (min-width: 768px) {
  .category-card--wide {
    grid-column: span 2;
  }
}
.category-card--wide-3 {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .category-card--wide-3 {
    grid-column: span 3;
  }
}

.category-overlay {
  background: linear-gradient(to top, rgba(27, 54, 93, 0.8), transparent);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.category-overlay span {
  font-size: 1.875rem;
  color: #FFFFFF;
}
.category-overlay--sm {
  padding: 1.5rem;
}
.category-overlay--sm span {
  font-size: 1.25rem;
  text-align: center;
  width: 100%;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.badge--sage {
  background-color: #8BA889;
  color: #FFFFFF;
}
.badge--light {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  outline: none;
  transition: border-color 0.2s ease;
  background-color: #FFFFFF;
}
.form-input:focus {
  border-color: #1B365D;
}
.form-input--lg {
  font-size: 1.125rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.form-select {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  outline: none;
}
.form-select:focus {
  border-color: #1B365D;
}

.form-checkbox {
  accent-color: #1B365D;
}

.form-range {
  width: 100%;
  accent-color: #1B365D;
}

.step-indicator {
  padding: 1rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.step-indicator.active {
  color: #C05746;
  border-bottom: 2px solid #C05746;
}
.step-indicator:not(.active) {
  opacity: 0.3;
}

.type-selector {
  padding: 1rem;
  border: 2px solid #f3f4f6;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: border-color 0.2s ease;
  cursor: pointer;
  background: transparent;
}
.type-selector:hover, .type-selector.selected {
  border-color: #1B365D;
}
.type-selector__icon {
  font-size: 1.5rem;
}
.type-selector__label {
  font-size: 0.75rem;
  font-weight: 700;
}

.comment-input {
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.comment-input input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  outline: none;
  border: none;
  font-size: 0.875rem;
}
.comment-input button {
  background-color: #1B365D;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.editor-container {
  min-height: 300px;
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group--highlight {
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form-group--green {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.form-group--red {
  background-color: #fff1f2;
  border: 1px solid #fecdd3;
}

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

.form-input--serif {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-style: italic;
}
.form-input--bold {
  font-weight: 700;
}
.form-input--italic {
  font-style: italic;
}
.form-input--dashed {
  border-style: dashed;
  background-color: #f9fafb;
}

.form-label--small {
  font-size: 10px;
  letter-spacing: 0.1em;
  opacity: 0.4;
}
.form-label--green {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #15803d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-label--red {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b91c1c;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-input-file {
  display: block;
  width: 100%;
  font-size: 0.875rem;
}

.form-hint {
  font-size: 0.75rem;
  color: #d1d5db;
  margin-top: 0.25rem;
}

.form-range__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.form-checkbox-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 640px) {
  .form-checkbox-list {
    grid-template-columns: 1fr;
  }
}

.form-checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
  padding: 0.25rem 0;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
  line-height: 1.2;
}

.auth-form__forgot {
  text-align: right;
  margin-top: 0.5rem;
}
.auth-form__link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1B365D;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.auth-form__link:hover {
  color: #C05746;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 50;
}
.header--transparent {
  background: transparent;
  position: absolute;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
}
.header--sticky {
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.header--simple {
  background-color: #FFFFFF;
  border-bottom: 1px solid #f3f4f6;
}
.header--blur {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f3f4f6;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__logo-icon {
  width: 2rem;
  height: 2rem;
  background-color: #1B365D;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}
.header__logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
  font-size: 0.875rem;
}
.header__nav a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease;
}
.header__nav a:hover {
  opacity: 0.6;
}
.header__nav a.active {
  opacity: 1;
}
.header__nav a.muted {
  opacity: 0.5;
}
.header__nav a.muted:hover {
  opacity: 1;
}
.header__profile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.header__profile-wrapper:hover .header__profile-dropdown {
  display: flex;
}
.header__profile-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  overflow: hidden;
  z-index: 100;
  margin-top: -0.5rem;
  flex-direction: column;
}
.header__profile-dropdown a {
  padding: 0.75rem 1.25rem !important;
  color: #333333 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  transition: background 0.2s ease !important;
}
.header__profile-dropdown a:hover {
  background-color: #f5f5f5 !important;
  opacity: 1 !important;
}
.header__notification-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e53e3e;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 4px;
  margin-left: -5px;
  margin-right: 5px;
  box-shadow: 0 0 0 2px white;
  position: relative;
  top: -8px;
}
.header__notification-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #e53e3e;
  border-radius: 50%;
  margin-left: 6px;
}

.footer {
  padding: 3rem 2rem;
  text-align: center;
}
.footer--dark {
  background-color: #1B365D;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer--light {
  opacity: 0.3;
  font-size: 0.75rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Playfair Display", serif;
  color: #FFFFFF;
  font-size: 1.25rem;
}
.footer__logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #FFFFFF;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1B365D;
  flex-shrink: 0;
}
.footer__logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.footer__tagline {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footer__nav a {
  transition: color 0.2s ease;
}
.footer__nav a:hover {
  color: #FFFFFF;
}
.footer__content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copy {
  font-size: 0.75rem;
  opacity: 0.5;
  font-style: italic;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline__line {
  width: 2px;
  background-color: #C05746;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
}
.timeline__item {
  position: relative;
  margin-bottom: 4rem;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__dot {
  width: 32px;
  height: 32px;
  background-color: #C05746;
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  position: absolute;
  left: -3rem;
  z-index: 10;
}
.timeline__content {
  gap: 2rem;
}
@media (min-width: 768px) {
  .timeline__content {
    flex-direction: row;
  }
}
.timeline__text {
  flex: 1;
}
.timeline__text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.timeline__text .timeline__subtitle {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.6;
  margin-bottom: 1rem;
  display: block;
  font-family: "Playfair Display", serif;
  margin-top: -0.25rem;
}
.timeline__description {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
}
.timeline__image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 10rem;
}
.timeline__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advice-box {
  background-color: #F5F2ED;
  border-left: 4px solid #8BA889;
  padding: 2.5rem;
  border-radius: 0 1rem 1rem 0;
  margin-bottom: 5rem;
}
.advice-box .travel-section__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.advice-box__list {
  list-style: none;
}
.advice-box__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 0.9;
}
.advice-box__list li:last-child {
  margin-bottom: 0;
}
.advice-box__check {
  color: #8BA889;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.timeline__gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-top: 1rem;
  scrollbar-width: thin;
}
.timeline__gallery::-webkit-scrollbar {
  height: 6px;
}
.timeline__gallery::-webkit-scrollbar-thumb {
  background-color: rgba(192, 87, 70, 0.4);
  border-radius: 4px;
}
.timeline__gallery .gallery-item {
  flex: 0 0 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.timeline__gallery .gallery-item:hover {
  transform: scale(1.05);
}
.timeline__gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.visible {
  display: flex;
  opacity: 1;
}
.lightbox-overlay .lightbox-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay .lightbox-wrapper img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}
.lightbox-overlay .lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  outline: none;
  z-index: 10001;
}
.lightbox-overlay .lightbox-close:hover {
  opacity: 0.8;
}

.stage-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stage-card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(229, 231, 235, 0.5);
}
@media (min-width: 768px) {
  .stage-card {
    flex-direction: row;
    min-height: 220px;
    height: 220px;
  }
}
.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.stage-card:hover .stage-card__image {
  transform: scale(1.05);
}
.stage-card__image-wrapper {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .stage-card__image-wrapper {
    height: auto;
    width: 45%;
  }
}
.stage-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.stage-card__no-image {
  width: 100%;
  height: 100%;
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(27, 54, 93, 0.4);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.stage-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #FFFFFF;
  color: #C05746;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.stage-card__content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.stage-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.2rem;
  color: #1B365D;
  font-weight: 700;
}
.stage-card__subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgb(49.95, 99.9, 172.05);
  font-style: italic;
  margin-bottom: 0.5rem;
  display: block;
}
.stage-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.stage-card__tag {
  background-color: #f3f4f6;
  color: rgb(38.475, 76.95, 132.525);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.stage-card__description {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgb(49.95, 99.9, 172.05);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .stage-card__description {
    margin-bottom: 0.75rem;
    -webkit-line-clamp: 3;
  }
}
.stage-card__action {
  margin-top: auto;
  display: inline-block;
  width: auto;
  border: 1px solid #C05746;
  border-bottom: 2px solid #C05746;
  color: #C05746;
  background: transparent;
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  align-self: flex-start;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.stage-card__action:hover {
  background-color: #C05746;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border-color: #C05746;
}

.stage-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(27, 54, 93, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.stage-modal-overlay.is-visible {
  display: flex;
  opacity: 1;
}

.stage-modal {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.is-visible .stage-modal {
  transform: translateY(0);
}
.stage-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: #1B365D;
  transition: 0.2s ease;
}
.stage-modal__close:hover {
  background-color: #FFFFFF;
  transform: rotate(90deg);
}
.stage-modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.stage-modal__image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.stage-modal__content {
  padding: 2.5rem;
}
.stage-modal__header {
  margin-bottom: 2rem;
}
.stage-modal__day-badge {
  display: inline-block;
  background-color: #C05746;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.stage-modal__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #1B365D;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.stage-modal__subtitle {
  font-size: 1.1rem;
  color: rgb(49.95, 99.9, 172.05);
  font-style: italic;
  display: block;
  margin-bottom: 1rem;
}
.stage-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.stage-modal__tag {
  background-color: #f3f4f6;
  color: rgb(38.475, 76.95, 132.525);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  letter-spacing: 0.03em;
}
.stage-modal__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgb(38.475, 76.95, 132.525);
  margin-bottom: 2rem;
}
.stage-modal__body p {
  margin-bottom: 1rem;
}
.stage-modal__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
}
.stage-modal__gallery-title {
  grid-column: 1/-1;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1B365D;
}
.stage-modal__gallery img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.stage-modal__gallery img:hover {
  transform: scale(1.02);
}

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.section__subtitle {
  opacity: 0.6;
  margin-top: 0.25rem;
}

.section__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.section__link:hover {
  opacity: 0.7;
}

.section__title {
  margin-bottom: 3rem;
}

.text-terracotta {
  color: #C05746;
}

.page-explore .sidebar-item:hover {
  background-color: rgba(27, 54, 93, 0.05);
}

.container.layout-sidebar {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.sidebar__title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.sidebar__form {
  display: flex;
  flex-direction: column;
}

.feed__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1rem;
}

.feed__count {
  font-size: 0.875rem;
  opacity: 0.6;
  font-style: italic;
}

.feed__empty {
  text-align: center;
  padding: 5rem 0;
  opacity: 0.6;
}

.feed__empty-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feed__empty-subtitle {
  font-size: 0.875rem;
}

.feed__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .feed__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 2rem;
}

.pagination__item {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background-color: #FFFFFF;
  border: 1px solid #e5e7eb;
}
.pagination__item:hover {
  border-color: #1B365D;
}
.pagination__item--active {
  background-color: #1B365D;
  color: #FFFFFF;
  border-color: #1B365D;
}

.btn--full {
  width: 100%;
}

.profile-content {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.profile-content h2 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.profile-empty {
  text-align: center;
  padding: 4rem 0;
}

.profile-empty__text {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.profile-edit {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.profile-edit__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.profile-edit__form {
  display: flex;
  flex-direction: column;
}
.profile-edit__image-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.profile-edit__avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
}
.profile-edit__cover {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
  max-width: 200px;
}

.page-travel-detail {
  background-color: #FFFFFF;
}
.page-travel-detail .blockquote-accent {
  border-left: 4px solid #C05746;
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin: 2.5rem 0;
  font-style: italic;
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  opacity: 0.8;
}

.travel-content {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #FFFFFF;
}

.travel-section {
  margin-bottom: 2.5rem;
}
.travel-section__title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", serif;
}
.travel-section__icon {
  font-size: 1.25rem;
}

.comments {
  border-top: 1px solid #f3f4f6;
  padding-top: 4rem;
}
.comments__title {
  font-size: 1.875rem;
  margin-bottom: 2.5rem;
  font-family: "Playfair Display", serif;
}
.comments__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.comments__login-prompt {
  text-align: center;
  opacity: 0.5;
  font-size: 0.875rem;
}
.comments__login-prompt a {
  font-weight: 700;
  text-decoration: underline;
}

.comment {
  display: flex;
  gap: 1rem;
}
.comment__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.comment__body {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 1.5rem;
  flex-grow: 1;
}
.comment__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.comment__author {
  font-weight: 700;
}
.comment__date {
  font-size: 0.75rem;
  opacity: 0.4;
}
.comment__text {
  font-size: 0.875rem;
  line-height: 1.6;
  opacity: 0.8;
}

.travel-share {
  padding: 1.5rem;
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.travel-share .share-title {
  margin-bottom: 0;
  font-size: 1.25rem;
  display: flex;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.share-buttons .share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.share-buttons .share-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}
.share-buttons .share-btn--whatsapp {
  background-color: #25D366;
}
.share-buttons .share-btn--whatsapp:hover {
  background-color: rgb(75.4798387097, 223.5201612903, 130.7822580645);
  transform: translateY(-2px);
}
.share-buttons .share-btn--telegram {
  background-color: #0088cc;
}
.share-buttons .share-btn--telegram:hover {
  background-color: #00aaff;
  transform: translateY(-2px);
}
.share-buttons .share-btn--facebook {
  background-color: #1877F2;
}
.share-buttons .share-btn--facebook:hover {
  background-color: rgb(72.2827868852, 147.4262295082, 244.7172131148);
  transform: translateY(-2px);
}
.share-buttons .share-btn--twitter {
  background-color: #000000;
}
.share-buttons .share-btn--twitter:hover {
  background-color: #333333;
  transform: translateY(-2px);
}
.share-buttons button.share-btn {
  cursor: pointer;
  color: #1B365D;
  background-color: #FFFFFF;
  border: 1px solid #e5e7eb;
}
.share-buttons button.share-btn svg {
  stroke: currentColor;
  fill: none;
  width: 18px;
  height: 18px;
}
.share-buttons button.share-btn:hover {
  background-color: #f9fafb;
  border-color: #1B365D;
  transform: translateY(-2px);
}

.page-create-travel {
  font-family: "Inter", sans-serif;
  background-color: #F5F2ED;
  color: #1B365D;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wizard-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wizard-nav {
  background-color: #FFFFFF;
  border-bottom: 1px solid #f3f4f6;
  z-index: 40;
}
.wizard-nav__container {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
}

.step-indicator {
  padding: 1rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.step-indicator.active {
  color: #C05746;
  border-bottom-color: #C05746;
  opacity: 1;
}
.step-indicator:not(.active) {
  opacity: 0.3;
}

.wizard-body {
  flex-grow: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 2rem;
  overflow-y: auto;
  width: 100%;
}

.wizard-content {
  max-width: 42rem;
  width: 100%;
  margin: 0 auto;
}

.wizard-step__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.wizard-step__header h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #1B365D;
}
.wizard-step__header p {
  opacity: 0.6;
  color: #1B365D;
}
.wizard-step__fields {
  display: flex;
  flex-direction: column;
}
.wizard-step__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.wizard-step__actions--end {
  justify-content: flex-end;
}
.wizard-step__actions--between {
  justify-content: space-between;
}
.wizard-step__actions--bordered {
  border-top: 1px solid #f3f4f6;
  padding-top: 2rem;
}
.wizard-step__back {
  cursor: pointer;
  font-weight: 700;
  color: #1B365D;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.wizard-step__back:hover {
  opacity: 1;
}
.wizard-step__add-stage {
  text-align: center;
  padding: 1rem 0;
}

.tappa-card {
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  transition: box-shadow 0.2s ease;
  margin-bottom: 2rem;
}
.tappa-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.tappa-card__remove {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #d1d5db;
  transition: color 0.2s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0.5rem;
  border-radius: 50%;
}
.tappa-card__remove:hover {
  color: #ef4444;
  background-color: #f9fafb;
}
.tappa-card__fields {
  display: flex;
  flex-direction: column;
}

.stages-list {
  display: flex;
  flex-direction: column;
}

.type-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.type-card {
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #f3f4f6;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.type-card:hover {
  border-color: #C05746;
}
.type-card.selected {
  border-color: #C05746;
  background-color: #fffafa;
}
.type-card__icon {
  font-size: 1.5rem;
}
.type-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1B365D;
}

.tag-luogo {
  background: #F5F2ED;
  color: #1B365D;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.tag-luogo button {
  opacity: 0.5;
}
.tag-luogo button:hover {
  opacity: 1;
}

.image-upload-box {
  border: 2px dashed #e5e7eb;
  border-radius: 0.75rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f9fafb;
}
.image-upload-box:hover {
  border-color: #C05746;
  background: #fffafa;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.editor-toolbar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.25rem;
  background: #FFFFFF;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  width: fit-content;
}
.editor-toolbar .editor-btn {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: #1B365D;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.editor-toolbar .editor-btn:hover {
  background-color: #f3f4f6;
}
.editor-toolbar .editor-btn strong {
  font-weight: 800;
}
.editor-toolbar .editor-btn em {
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.page-stage-detail {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #FFFFFF;
}

.stage-hero-section {
  position: relative;
  height: 60vh;
  width: 100%;
  margin-bottom: 0;
}
.stage-hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.stage-hero-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem;
}
.stage-hero-section__content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  color: #FFFFFF;
}
.stage-hero-section__breadcrumb {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
.stage-hero-section__breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.stage-hero-section__breadcrumb a:hover {
  opacity: 0.8;
}
.stage-hero-section__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .stage-hero-section__title {
    font-size: 3.5rem;
  }
}
.stage-hero-section__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  max-width: 800px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.stage-places {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 2rem;
}
.stage-places__label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(49.95, 99.9, 172.05);
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.stage-places__tag {
  background-color: #F5F2ED;
  color: #1B365D;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
}

.stage-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgb(38.475, 76.95, 132.525);
  margin-bottom: 3rem;
  max-width: 100%;
}
.stage-body p {
  margin-bottom: 1.5rem;
}

.stage-gallery-section {
  border-top: 1px solid #f3f4f6;
  padding-top: 3rem;
  margin-top: 3rem;
}
.stage-gallery-section__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1B365D;
  margin-bottom: 2rem;
  text-align: center;
}

.stage-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .stage-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stage-gallery__item {
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.stage-gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.stage-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-footer {
  width: 100%;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.stage-footer__prev, .stage-footer__next {
  flex: 1;
  display: flex;
  align-items: center;
}
.stage-footer__prev {
  justify-content: flex-start;
}
.stage-footer__next {
  justify-content: flex-end;
}
.stage-footer__center {
  flex: 0 0 auto;
  text-align: center;
}
.stage-footer__center .btn {
  white-space: nowrap;
}
.stage-footer .btn--text {
  font-size: 1rem;
  color: #1B365D;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  transition: 0.3s ease;
}
.stage-footer .btn--text:hover {
  background-color: #f9fafb;
  border-color: #1B365D;
}

.page-auth {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background-color: #F5F2ED;
}
.page-auth__card {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 3rem;
  width: 100%;
  max-width: 28rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.page-auth__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.page-auth__header h1 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}
.page-auth__header p {
  opacity: 0.6;
  font-size: 0.875rem;
}
.page-auth__footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  opacity: 0.6;
}
.page-auth__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 0.75rem;
  opacity: 0.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.page-auth__divider::before, .page-auth__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #e5e7eb;
}
.page-auth__social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.page-auth__social-btn:hover {
  background-color: #f9fafb;
}
