/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #F27623;
  --orange-light: #FF9A4D;
  --orange-dark: #D4600E;
  --cream: #FFF8F2;
  --cream-dark: #FFF0E3;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

select {
  font-family: inherit;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.header__search {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.header__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--orange);
  pointer-events: none;
}

.header__search-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border: 2px solid var(--orange);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
}

.header__search-input::placeholder {
  color: var(--gray-400);
}

.header__search-input:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 118, 35, 0.1);
}

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

.header__nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__nav-link:hover {
  color: var(--orange-dark);
  background: var(--cream);
}

.header__nav-chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
  color: var(--orange);
}

.header__nav-dropdown {
  position: relative;
}

.header__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px;
  z-index: 200;
}

.header__dropdown.open {
  display: block;
  animation: dropdownIn 0.15s ease;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.header__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--orange);
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.header__dropdown-item:hover {
  background: var(--cream);
  color: var(--orange-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.header__action-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: var(--transition);
  color: var(--orange);
}

.header__action-btn svg {
  width: 20px;
  height: 20px;
}

.header__action-btn:hover {
  background: var(--cream);
  color: var(--orange-dark);
}

.header__login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.header__login-btn svg {
  width: 18px;
  height: 18px;
}

.header__login-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__video-bg {
  position: absolute;
  inset: -2px;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110vw;
  height: 61.875vw; /* 110vw * 9/16 */
  min-height: 110%;
  min-width: 195.56vh; /* 110 * (16/9) */
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 24px 0 80px;
  max-width: 750px;
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: 3.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  font-weight: 300;
  text-align: left;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--orange);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: var(--cream);
}

/* ===== HERO FILTER CARD ===== */
.hero__filter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin-top: 8px;
}

.hero__filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
}

.hero__filter-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gray-400);
}

.hero__filter-select {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-800);
  background: transparent;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.hero__filter-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0 20px;
}

.hero__filter-btn {
  display: block;
  width: calc(100% - 40px);
  margin: 4px 20px 16px;
  padding: 14px 0;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-align: center;
  transition: var(--transition);
}

.hero__filter-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== CATEGORIES STRIP ===== */
.categories {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}

.categories__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 32px 48px;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.categories__inner::-webkit-scrollbar {
  display: none;
}

.category-link {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.2rem, 1.55vw, 1.85rem);
  font-weight: 400;
  color: var(--orange);
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
  padding: 10px 0;
  margin: 0 clamp(12px, 1.8vw, 30px);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.category-link:hover {
  color: var(--orange-light);
}

.category-link--active {
  border-bottom-color: var(--orange);
}

/* ===== FILTERS ===== */
.filters {
  background: var(--cream);
  padding: 40px 0;
}

.filters__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.filters__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.filters__row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.filters__group {
  flex: 1;
  min-width: 200px;
}

.filters__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.filters__select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filters__select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 118, 35, 0.1);
}

.filters__btn {
  padding: 12px 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.filters__btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== EXPERIENCES ===== */
.experiences {
  padding: 60px 0 80px;
  background: var(--white);
}

.experiences__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.experiences__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.experiences__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gray-800);
}

.experiences__count {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}

.experiences__empty {
  text-align: center;
  padding: 60px 0;
  font-size: 1.1rem;
  color: var(--gray-500);
}

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

.experiences__ver-mais {
  text-align: center;
  padding: 32px 0 0;
}

.experiences__ver-mais-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.experiences__ver-mais-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.experiences__ver-mais-btn svg {
  transition: transform 0.2s ease;
}

.experiences__ver-mais-btn:hover svg {
  transform: translateX(4px);
}

/* ===== CARD ===== */
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__image-photo {
  transform: scale(1.05);
}

.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.4s ease;
}

.card:hover .card__image-placeholder {
  transform: scale(1.05);
}

.card__favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-full);
  color: var(--gray-600);
  transition: var(--transition);
}

.card__favorite svg {
  width: 18px;
  height: 18px;
}

.card__favorite:hover {
  color: #e74c3c;
  background: var(--white);
  transform: scale(1.1);
}

.card__favorite.active {
  color: #e74c3c;
}

.card__favorite.active svg {
  fill: #e74c3c;
}

.card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 4px;
}

.card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.card__detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.card__detail svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gray-400);
}

.card__detail--address {
  padding-left: 20px;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.card__detail--includes {
  color: var(--orange);
  font-weight: 500;
}

.card__detail--includes svg {
  color: var(--orange);
}

.card__horarios {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 2px 20px;
}

.card__horario-btn {
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.card__horario-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.card__horario-btn--active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.card__horario-btn--active:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

.card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card__price {
  font-size: 1rem;
  color: var(--gray-800);
}

.card__price strong {
  font-weight: 700;
  color: var(--gray-900);
}

.card__reserve-btn {
  appearance: none;
  border: none;
  background: var(--orange, #f0a05e);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.02em;
}

.card__reserve-btn:hover {
  background: #e88f47;
}

.card__reserve-btn:active {
  transform: scale(0.97);
}

.card__reserve-btn:disabled {
  background: #d8b89a;
  cursor: not-allowed;
  transform: none;
}

/* ===== GIFT SECTION ===== */
.gift-section {
  padding: 80px 0;
  background: #3D1A2E;
  overflow: hidden;
}

.gift-section__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.gift-section__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.gift-section__subtitle {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.5;
}

.gift-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.gift-section__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.45;
}

.gift-section__list li svg {
  flex-shrink: 0;
  color: var(--orange-light);
}

.gift-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(242, 118, 35, 0.35);
}

.gift-section__btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 118, 35, 0.4);
}

.gift-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-section__card-stack {
  position: relative;
  width: 440px;
  height: 310px;
}

.gift-section__card-back,
.gift-section__card-front {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gift-section__card-back {
  width: 280px;
  height: 180px;
  background: #f7f3ef;
  top: 20px;
  left: 40px;
  transform: rotate(-9deg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px;
}

.gift-section__card-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--orange);
}

.gift-section__card-logo--white {
  color: #fff;
}

.gift-section__card-front {
  width: 320px;
  height: 210px;
  background: var(--orange);
  bottom: 0;
  right: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gift-section__card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.gift-section__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gift-section__card-site {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  opacity: 0.9;
}

.gift-section__card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

/* ===== ELARAH ORIGINALS ===== */
.originals {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, #FFF6EF 100%);
}

.originals__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.originals__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-full);
  padding: 5px 16px;
  margin-bottom: 16px;
}

.originals__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.originals__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 300;
}

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

.originals__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.originals__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.originals__card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

.originals__card-date {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.04em;
}

.originals__card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.originals__card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.35;
}

.originals__card-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.originals__card-detail {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.45;
}

.originals__card-detail svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gray-400);
}

.originals__card-detail--highlight {
  color: var(--gray-600);
  font-style: italic;
}

.originals__card-detail--highlight svg {
  color: var(--orange);
}

.originals__card-detail--soon {
  font-weight: 600;
  color: var(--orange);
  font-size: 0.8rem;
}

.originals__card-btn {
  margin-top: auto;
  display: block;
  width: 100%;
  padding: 13px 0;
  background: var(--orange);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid var(--orange);
}

.originals__card-btn:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.originals__card-btn--outline {
  background: transparent;
  color: var(--orange);
}

.originals__card-btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}

.originals__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.originals__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.originals__card-date:empty {
  display: none;
}

/* ===== ORIGINALS MODAL ===== */
.originals-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.originals-modal.open {
  display: flex;
}

.originals-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.originals-modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 460px;
  width: 92%;
  padding: 40px 36px;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.originals-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--gray-500);
  transition: var(--transition);
}

.originals-modal__close:hover {
  background: var(--gray-100);
  color: var(--gray-800);
}

.originals-modal__title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 6px;
  padding-right: 28px;
}

.originals-modal__desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

.originals-modal__field {
  margin-bottom: 16px;
}

.originals-modal__field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.originals-modal__field input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-800);
  transition: var(--transition);
}

.originals-modal__field input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 118, 35, 0.1);
}

.originals-modal__field input::placeholder {
  color: var(--gray-400);
}

.originals-modal__select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.originals-modal__select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 118, 35, 0.1);
}

.originals-modal__submit {
  display: block;
  width: 100%;
  padding: 14px 0;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  margin-top: 8px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.originals-modal__submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.originals-modal__success {
  text-align: center;
  padding: 20px 0;
}

.originals-modal__success-icon {
  color: var(--orange);
  margin-bottom: 16px;
}

.originals-modal__success-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.originals-modal__success-text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
}

.originals-modal__success-btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.originals-modal__success-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== GROUP SECTION ===== */
.group-section {
  padding: 80px 0;
  background: var(--cream);
}

.group-section__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
 align-items: stretch;
}

.group-section__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.group-section__subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 32px;
}

.group-section__buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.group-section__btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.group-section__btn svg {
  color: var(--orange);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.group-section__btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.group-section__btn:hover svg {
  transform: scale(1.15);
}

.group-section__btn--active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.group-section__btn--active svg {
  color: var(--white);
}

.group-section__btn--active:hover {
  color: var(--white);
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* Form area */
.group-section__form-area {
  min-height: 300px;
}

.group-section__form-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  background: var(--white);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  color: var(--gray-400);
  gap: 16px;
}

 .group-section__right {
  height: 100%;
}

.group-section__form-placeholder p {
  font-size: 0.95rem;
  max-width: 260px;
  line-height: 1.5;
}

.group-section__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  animation: groupFormIn 0.35s ease;
}

@keyframes groupFormIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.group-section__form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.group-section__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.group-section__field {
  display: flex;
  flex-direction: column;
}

.group-section__field--full {
  grid-column: 1 / -1;
}

.group-section__field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.group-section__field input,
.group-section__field select,
.group-section__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}

.group-section__field input:focus,
.group-section__field select:focus,
.group-section__field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 118, 35, 0.1);
}

.group-section__field input::placeholder,
.group-section__field textarea::placeholder {
  color: var(--gray-400);
}

.group-section__field input[readonly] {
  background: var(--cream);
  color: var(--orange);
  font-weight: 600;
  cursor: default;
}

.group-section__field textarea {
  resize: vertical;
  min-height: 70px;
}

.group-section__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.group-section__submit {
  display: block;
  width: 100%;
  padding: 14px 0;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.group-section__submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Success state */
.group-section__success {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  animation: groupFormIn 0.35s ease;
}

.group-section__success-icon {
  color: var(--orange);
  margin-bottom: 16px;
}

.group-section__success-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.group-section__success-text {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.group-section__success-btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.group-section__success-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1B0F17, #2A1420);
  overflow: hidden;
}

.cta-section__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-light);
  border: 1.5px solid var(--orange-light);
  border-radius: var(--radius-full);
  padding: 5px 16px;
  margin-bottom: 20px;
}

.cta-section__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-section__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 440px;
}

.cta-section__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.cta-section__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.cta-section__list li svg {
  flex-shrink: 0;
  color: var(--orange-light);
}

.cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: var(--orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(242, 118, 35, 0.3);
}

.cta-section__btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 118, 35, 0.4);
}

.cta-section__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section__image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 480px;
  width: 100%;
}

.cta-section__image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}

.cta-section__image-accent {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

/* ===== STORIES SECTION ===== */
.stories {
  padding: 80px 0;
  background: var(--white);
}

.stories__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.stories__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.stories__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px auto 0;
}

.stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stories__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.stories__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(242, 118, 35, 0.12);
  border-color: var(--orange-light);
}

.stories__card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.stories__card:hover .stories__card-img {
  transform: scale(1.08);
}

.stories__card-body {
  padding: 22px 20px 24px;
}

.stories__card-author {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
  display: block;
}

.stories__card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.stories__card:hover .stories__card-title {
  color: var(--orange);
}

.stories__card-excerpt {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.55;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== STORY READER MODAL ===== */
.story-reader {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
}

.story-reader.open {
  display: block;
  animation: storyReaderFadeIn 0.35s ease;
}

@keyframes storyReaderFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.story-reader__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.story-reader__container {
  position: relative;
  max-width: 780px;
  margin: 60px auto;
  padding: 0 24px 60px;
}

.story-reader__close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  color: #fff;
  z-index: 10;
  transition: var(--transition);
}

.story-reader__close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.story-reader__content {
  position: relative;
}

.story-reader__image {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  margin-bottom: 36px;
}

.story-reader__body {
  position: relative;
}

.story-reader__author {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  margin-bottom: 12px;
}

.story-reader__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.story-reader__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  font-weight: 300;
}

.story-reader__text p {
  margin-bottom: 20px;
}

.story-reader__text strong {
  color: #fff;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 60px 0 0;
}

.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
 grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer__brand,
.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__brand {
  margin-bottom: 0;
}

.footer__logo {
  margin-bottom: 10px;
}

.footer__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0 0 16px 0;
  font-style: italic;
  line-height: 1.4;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.2s ease;
  text-decoration: none;
}

.footer__socials a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.footer__column h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.footer__column a,
.footer__column p {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-500);
  margin: 0 0 10px 0;
  line-height: 1.5;
}

.footer__column a:hover {
  color: var(--orange);
}

.footer__bottom {
  margin-top: 40px;
  padding: 24px 24px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-700);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .experiences__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .originals__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__search {
    max-width: none;
  }

  .header__mobile-toggle {
    display: flex;
  }

  .header__actions {
    gap: 4px;
  }

  .header__login-btn span {
    display: none;
  }

  .hero {
    height: 420px;
  }

  .hero__content {
    padding: 0 24px;
  }

  .hero__title {
    font-size: 2.2rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .experiences__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .gift-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .gift-section {
    padding: 60px 0;
  }

  .gift-section__title {
    font-size: 1.8rem;
  }

  .gift-section__card-stack {
    width: 340px;
    height: 240px;
    margin: 0 auto;
  }

  .gift-section__card-back {
    width: 220px;
    height: 145px;
    left: 20px;
    top: 10px;
    padding: 18px;
  }

  .gift-section__card-front {
    width: 260px;
    height: 170px;
    padding: 20px;
  }

  .gift-section__card-title {
    font-size: 1.7rem;
  }

  .gift-section__card-value {
    font-size: 1.4rem;
  }

  .gift-section__card-logo {
    font-size: 1.3rem;
  }

  .originals__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .originals {
    padding: 60px 0;
  }

  .originals__title {
    font-size: 1.8rem;
  }

  .originals-modal__content {
    padding: 32px 24px;
  }

  .filters__row {
    flex-direction: column;
  }

  .filters__group {
    min-width: 100%;
  }

  .footer__inner {
  grid-template-columns: 1fr;
  gap: 24px;
}

  .cta-section__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-section__title {
    font-size: 1.8rem;
  }

  .cta-section__image {
    height: 280px;
  }

  .group-section {
    padding: 60px 0;
  }

  .group-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .group-section__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .group-section__btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .group-section__form-grid {
    grid-template-columns: 1fr;
  }

  .group-section__form {
    padding: 24px 20px;
  }

  .group-section__form-placeholder {
    min-height: 200px;
    padding: 32px 20px;
  }

  .stories {
    padding: 60px 0;
  }

  .stories__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stories__title {
    font-size: 1.8rem;
  }

  .story-reader__container {
    margin: 40px auto;
  }

  .story-reader__title {
    font-size: 1.6rem;
  }

  .story-reader__image {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .header__inner {
    padding: 0 16px;
    gap: 12px;
  }

  .hero {
    height: 360px;
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .experiences__grid {
    grid-template-columns: 1fr;
  }

  .originals__grid {
    grid-template-columns: 1fr;
  }

  .originals__title {
    font-size: 1.5rem;
  }

  .gift-section__title {
    font-size: 1.5rem;
  }

  .gift-section__card-stack {
    width: 280px;
    height: 200px;
  }

  .gift-section__card-back {
    width: 180px;
    height: 120px;
    left: 10px;
    top: 5px;
    padding: 14px;
  }

  .gift-section__card-front {
    width: 220px;
    height: 145px;
    padding: 16px;
  }

  .gift-section__card-title {
    font-size: 1.4rem;
  }

  .gift-section__card-value {
    font-size: 1.2rem;
  }

  .gift-section__card-logo {
    font-size: 1.1rem;
  }

  .gift-section__card-site {
    font-size: 0.75rem;
  }

  .experiences__title {
    font-size: 1.4rem;
  }

  .cta-section__title {
    font-size: 1.5rem;
  }

  .stories__title {
    font-size: 1.5rem;
  }

  .story-reader__title {
    font-size: 1.3rem;
  }

  .story-reader__image {
    max-height: 220px;
    border-radius: var(--radius-lg);
  }

  .story-reader__text {
    font-size: 0.95rem;
  }

  .story-reader__close {
    top: 12px;
    right: 12px;
  }
}

/* ===== MOBILE MENU ===== */
.header__nav.mobile-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  position: absolute;
  top: 72px;
  left: 0;
  right: 0;

  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);

  padding: 32px 24px;
  gap: 28px;
  z-index: 200;
}
.header__nav.mobile-open .header__nav-link {
  width: auto;
  justify-content: center;
  padding: 12px 14px;
}

.header__search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__search-btn svg {
  width: 18px;
  height: 18px;
}
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: -10px auto 6px;
}
.icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.host-for__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.originals__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== FOOTER SOCIAL + AJUSTE ESPAÇAMENTO ===== */

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo {
  margin-bottom: 10px;
}

.footer__tagline {
  margin: 0 0 16px 0; /* espaço abaixo da frase */
  line-height: 1.4;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px; /* espaço entre ícones */
  margin-top: 6px;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.2s ease;
}

.footer__socials a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

/* ===== ABOUT PAGE ===== */
.about-page-hero {
  padding: 110px 0 90px;
  background: linear-gradient(135deg, #1B0F17 0%, #2A1420 100%);
  color: var(--white);
}

.about-page-hero__inner,
.about-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-page-container--narrow {
  max-width: 760px;
}

.about-page-hero__tag,
.about-page-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-light);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.about-page-kicker {
  color: var(--orange);
  border-color: rgba(242, 118, 35, 0.25);
}

.about-page-kicker--light {
  color: var(--orange-light);
  border-color: rgba(255,255,255,0.16);
}

.about-page-hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.about-page-hero__text {
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.about-page-section {
  padding: 90px 0;
  background: var(--white);
}

.about-page-section--soft {
  background: var(--cream);
}

.about-page-section--highlight {
  background: linear-gradient(135deg, #1B0F17 0%, #2A1420 100%);
}

.about-page-heading {
  margin-bottom: 34px;
}

.about-page-section__title {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.about-page-section__title--light {
  color: var(--white);
}

.about-page-section__text {
  font-size: 1.03rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-top: 18px;
}

.about-page-section__text--light {
  color: rgba(255,255,255,0.76);
}

.about-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

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

.about-page-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.about-page-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.about-page-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.about-page-cta {
  padding: 90px 0;
  background: var(--white);
}

.about-page-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-page-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.about-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.about-page-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.about-page-btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.about-page-btn--outline:hover {
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 900px) {
  .about-page-hero__title {
    font-size: 2.8rem;
  }

  .about-page-grid,
  .about-page-cards,
  .about-page-cta__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .about-page-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .about-page-hero {
    padding: 84px 0 70px;
  }

  .about-page-hero__title {
    font-size: 2.2rem;
  }

  .about-page-section {
    padding: 64px 0;
  }

  .about-page-section__title {
    font-size: 1.9rem;
  }
}

/* ===== COMO FUNCIONA ===== */

.how-hero {
  padding: 100px 20px 60px;
  text-align: center;
}

.how-container {
  max-width: 900px;
  margin: 0 auto;
}

.how-title {
  font-size: 40px;
  margin-bottom: 10px;
}

.how-subtitle {
  color: var(--gray-500);
}

.how-steps {
  padding: 60px 20px;
}

.how-step {
  margin-bottom: 50px;
}

.how-number {
  font-size: 14px;
  color: var(--orange);
  font-weight: bold;
}

.how-step h2 {
  margin: 8px 0;
}

.how-step p {
  color: var(--gray-600);
  max-width: 500px;
}

.how-section {
  padding: 80px 20px;
}

.how-section--soft {
  background: var(--cream);
}

.how-section-title {
  margin-bottom: 30px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.how-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
}

.how-cta {
  padding: 80px 20px;
}

.how-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.how-actions {
  display: flex;
  gap: 10px;
}

.how-btn {
  padding: 12px 20px;
  background: var(--orange);
  color: white;
  border-radius: 999px;
}

.how-btn--outline {
  background: transparent;
  border: 1px solid var(--orange);
  color: var(--orange);
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 768px) {
  .header,
  .hero,
  .section,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
    line-height: 1.15;
  }

  h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  h3 {
    font-size: 20px;
    line-height: 1.25;
  }
}

@media (max-width: 768px) {
  .originals__grid,
  .experiences__grid,
  .cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .filters__btn,
  .hero__cta,
  .originals__card-btn,
  .gift-section__btn,
  .cta-section__btn,
  .group-section__btn,
  .group-section__submit,
  .originals-modal__submit,
  .originals-modal__success-btn {
    width: 100%;
  }

  input,
  select,
  textarea {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .search-bar,
  .filters,
  .explorar__filters,
  .categoria__filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .container,
  .page,
  .section,
  .hero,
  .header,
  .footer {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .originals__card,
  .experience-card,
  .card {
    width: 100%;
  }

  .originals__image,
  .experience-card img,
  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .btn,
  button {
    min-height: 44px;
    font-size: 16px;
  }

  a {
    padding: 4px 0;
  }
}

@media (max-width: 768px) {
  .header__search,
  .search-btn,
  .header__icon--search {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .header__mobile-toggle {
    order: 1;
    flex: 0 0 auto;
  }

  .header__logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .header__logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
  }

  .header__actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }

  .header__nav,
  .header__search {
    display: none;
  }
}

@media (max-width: 768px) {

  /* DEIXAR MENU LARANJA */
  .header__mobile-toggle span {
    background-color: #F36C21;
  }

  /* ALINHAMENTO PERFEITO */
  .header__inner {
    height: 64px;
    align-items: center;
  }

  .header__mobile-toggle,
  .header__logo,
  .header__actions {
    display: flex;
    align-items: center;
  }

}
@media (max-width: 768px) {
  .header__mobile-toggle,
  .header__login-btn,
  .header__action-btn {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__mobile-toggle {
    width: 48px;
    padding: 0;
  }

  .header__action-btn {
    width: 48px;
    padding: 0;
  }

  .header__login-btn {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .header__nav:not(.mobile-open) {
    display: none !important;
  }

  .header__nav.mobile-open {
    display: flex !important;
  }
}

.header__nav.mobile-open {
  align-items: center;
}

@media (max-width: 768px) {
  .header__dropdown {
    position: static;
    transform: none;
    left: auto;
    width: 100%;
    margin-top: 12px;
    box-shadow: none;
    border-radius: 12px;
  }

  .header__nav-dropdown {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .header__dropdown {
    width: 100%;
    max-width: 260px;
    padding: 8px 0;
    margin-top: 10px;
  }

  .header__dropdown-item {
    display: block;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .header__dropdown {
    position: static !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 220px !important;
    margin: 10px auto 0 !important;
    padding: 4px 0 !important;
    box-shadow: none !important;
    border-radius: 12px !important;
  }

  .header__dropdown-item {
    display: block !important;
    padding: 8px 12px !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 768px) {
  .header__nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header__nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
  }

  .header__nav-dropdown .header__nav-link {
    margin: 0 auto;
  }
}

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

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .gift-section__list li:last-child svg {
    transform: translateY(6px);
  }
}
@media (max-width: 768px) {
  .gift-section__list {
    align-items: flex-start;
  }

  .gift-section__list li {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cta-section__actions {
    justify-content: center;
  }

  .cta-section__btn {
    width: auto;
  }
}

/* ===== Visually-hidden (a11y) ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
