* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f7f5f0;
  color: #1a1918;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px;
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f7f5f0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.preloader-brand-title {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    #1a1918 0%,
    #7a7063 25%,
    #c5ac8e 50%,
    #7a7063 75%,
    #1a1918 100%
  );
  background-size: 250% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shineGradient 2.5s ease-in-out infinite;
}

.preloader-brand-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #7a7063;
  margin-top: 4px;
}

.preloader-bar-track {
  width: 180px;
  height: 2px;
  background-color: rgba(26, 25, 24, 0.08);
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  border-radius: 2px;
}

.preloader-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    #c5ac8e,
    #1a1918,
    #c5ac8e,
    transparent
  );
  background-size: 200% 100%;
  transform: translateX(-100%);
  animation: preloaderProgress 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes shineGradient {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes preloaderProgress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.reveal-init {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

.express-cards-row .express-card:nth-child(2) {
  transition-delay: 0.08s;
}
.express-cards-row .express-card:nth-child(3) {
  transition-delay: 0.16s;
}
.express-cards-row .express-card:nth-child(4) {
  transition-delay: 0.24s;
}

.site-container {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.border-top-line {
  border-top: 1px solid rgba(26, 25, 24, 0.12);
}

.editorial-split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  width: 100%;
}

.editorial-meta-col {
  display: flex;
  flex-direction: column;
}

.logo-img {
  width: 24px;
  height: auto;
}

.editorial-content-col {
  width: 100%;
  min-width: 0;
}

.section-tag {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #7a7063;
  margin-bottom: 12px;
}

.section-head-title {
  font-family: "Lora", serif;
  font-size: 2.1rem;
  font-weight: 500;
  color: #1a1918;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  word-wrap: break-word;
}

.section-head-desc,
.section-subtitle-sm {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #6b6255;
  line-height: 1.55;
}

.btn-editorial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1918;
  color: #f7f5f0;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  border: 1px solid #1a1918;
  cursor: pointer;
}

.btn-editorial:hover {
  background-color: #6b6255;
  border-color: #6b6255;
  color: #ffffff;
}

.btn-editorial-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f5f0;
  color: #1a1918;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
  border: 1px solid #f7f5f0;
  cursor: pointer;
}

.btn-editorial-light:hover {
  background-color: #e5e0d8;
  border-color: #e5e0d8;
}

.btn-editorial-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #1a1918;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(26, 25, 24, 0.3);
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.btn-editorial-outline-dark:hover {
  background-color: #1a1918;
  color: #f7f5f0;
  border-color: #1a1918;
}

.btn-editorial-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #f7f5f0;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(247, 245, 240, 0.3);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.btn-editorial-outline:hover {
  border-color: #f7f5f0;
  background-color: rgba(247, 245, 240, 0.08);
}

.btn-full {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background-color: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 25, 24, 0.08);
  z-index: 1000;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-svg {
  flex-shrink: 0;
}

.brand-title {
  font-family: "Lora", serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a1918;
  letter-spacing: -0.01em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #524b42;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1a1918;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta-btn {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  background-color: #1a1918;
  color: #f7f5f0;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease,
    background-color 0.2s ease;
}

.header-cta-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta-btn:hover {
  background-color: #6b6255;
}

.lang-switch {
  display: flex;
  gap: 2px;
  border: 1px solid rgba(26, 25, 24, 0.15);
  padding: 2px;
  border-radius: 4px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: #7a7063;
  padding: 4px 8px;
  cursor: pointer;
  border-radius: 2px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.lang-btn.active {
  background-color: #1a1918;
  color: #f7f5f0;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: #1a1918;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background-color: rgba(247, 245, 240, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
  overflow: hidden;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  font-family: "Lora", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #1a1918;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26, 25, 24, 0.08);
  transition:
    color 0.25s ease,
    padding 0.25s ease;
  display: block;
}

.mobile-nav-link:first-child {
  border-top: 1px solid rgba(26, 25, 24, 0.08);
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
  color: #6b6255;
  padding-left: 6px;
}

.mobile-menu-footer {
  flex-shrink: 0;
  padding-top: 16px;
  background-color: rgba(247, 245, 240, 0.98);
}

.hero-section {
  padding: 32px 0 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.editorial-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6b6255;
  margin-bottom: 12px;
}

.hero-main-title {
  font-family: "Lora", serif;
  font-size: 3.1rem;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #1a1918;
  margin-bottom: 16px;
  word-wrap: break-word;
}

.hero-lead-text {
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #524b42;
  line-height: 1.55;
  max-width: 580px;
  margin-bottom: 24px;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-express-note {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #6b6255;
  text-decoration: none;
  border-bottom: 1px solid rgba(107, 98, 85, 0.3);
  padding: 4px 0 2px 0;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.hero-express-note:hover {
  border-color: #1a1918;
  color: #1a1918;
}

.hero-metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 25, 24, 0.12);
}

.metric-unit {
  display: flex;
  flex-direction: column;
}

.metric-num {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1a1918;
  line-height: 1;
  margin-bottom: 4px;
}

.metric-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #7a7063;
}

.hero-image-frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background-color: #e5e0d8;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.catalog-tabs-container {
  position: relative;
  margin-bottom: 32px;
  width: 100%;
}

.mobile-tabs-toggle {
  display: none;
  width: 100%;
  background-color: #efece6;
  border: 1px solid rgba(26, 25, 24, 0.2);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: "Inter", sans-serif;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.toggle-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toggle-hint {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #7a7063;
}

#selected-tab-label {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1918;
}

.mobile-tabs-toggle .toggle-icon {
  font-size: 1rem;
  color: #1a1918;
  transition: transform 0.25s ease;
  padding-left: 12px;
}

.mobile-tabs-toggle.open .toggle-icon {
  transform: rotate(180deg);
}

.editorial-tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid rgba(26, 25, 24, 0.12);
  padding-bottom: 2px;
  width: 100%;
}

.editorial-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 16px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #7a7063;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.editorial-tab-btn:hover {
  color: #1a1918;
}

.editorial-tab-btn.active {
  color: #1a1918;
  font-weight: 600;
  border-bottom-color: #1a1918;
}

.editorial-tab-content {
  display: none;
}

.editorial-tab-content.active {
  display: block;
}

.express-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
  width: 100%;
}

.express-card {
  background-color: #efece6;
  border: 1px solid rgba(26, 25, 24, 0.12);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.express-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 25, 24, 0.05);
}

.express-card.featured-dark {
  background-color: #342e28;
  color: #f7f5f0;
  border: 1px solid rgba(197, 172, 142, 0.25);
  box-shadow: 0 10px 28px rgba(52, 46, 40, 0.12);
}

.express-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.badge-express {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #6b6255;
}

.badge-express.light {
  color: #c5ac8e;
}

.express-card h3 {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1a1918;
  word-wrap: break-word;
}

.express-card.featured-dark h3 {
  color: #f7f5f0;
}

.price-tag-wrap {
  margin-top: 4px;
}

.express-price {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #1a1918;
  line-height: 1;
}

.express-card.featured-dark .express-price {
  color: #f7f5f0;
}

.express-format {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: #7a7063;
  font-weight: 500;
  margin-bottom: 16px;
}

.express-format.light {
  color: rgba(247, 245, 240, 0.65);
}

.express-text {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #524b42;
  line-height: 1.6;
  margin-bottom: 28px;
  flex: 1;
}

.express-text.light {
  color: rgba(247, 245, 240, 0.85);
}

.currency-disclaimer {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: #8c8275;
}

.catalog-back-top-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn-catalog-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #524b42;
  background-color: #efece6;
  border: 1px solid rgba(26, 25, 24, 0.15);
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-catalog-back:hover,
.btn-catalog-back:active {
  background-color: #1a1918;
  color: #f7f5f0;
  border-color: #1a1918;
}

.pain-editorial-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.pain-editorial-item {
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 25, 24, 0.08);
}

.pain-index {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a7063;
  flex-shrink: 0;
  width: 28px;
  padding-top: 2px;
}

.pain-body h4 {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1918;
  margin-bottom: 6px;
}

.pain-body p {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #524b42;
  line-height: 1.55;
}

.editorial-quote {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: #1a1918;
  border-left: 2px solid #1a1918;
  padding-left: 24px;
}

.editorial-lead-paragraph {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1a1918;
  margin-bottom: 32px;
}

.deliverables-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.deliverables-checklist li {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #2a2826;
  padding-left: 28px;
  position: relative;
}

.deliverables-checklist li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #6b6255;
  font-weight: bold;
}

.privacy-note {
  border-top: 1px solid rgba(26, 25, 24, 0.12);
  padding-top: 20px;
}

.privacy-note strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: #1a1918;
  margin-bottom: 4px;
}

.privacy-note p {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #7a7063;
}

.about-portrait-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 2px;
  background-color: #e5e0d8;
}

.about-portrait-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}

.about-quote-title {
  font-family: "Lora", serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.35;
  color: #1a1918;
  margin-bottom: 36px;
  word-wrap: break-word;
}

.bio-narrative {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

.bio-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 20px;
  border-left: 2px solid rgba(26, 25, 24, 0.15);
}

.bio-year {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1918;
}

.bio-block p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: #524b42;
  line-height: 1.65;
}

.about-principles-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(26, 25, 24, 0.12);
}

.principle-unit strong {
  display: block;
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1918;
  margin-bottom: 4px;
}

.principle-unit span {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #6b6255;
}

.bio-footer-link {
  padding-top: 8px;
}

.social-link-editorial {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1918;
  text-decoration: none;
  border-bottom: 1px solid #1a1918;
  padding-bottom: 4px;
  word-break: break-word;
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.package-card {
  background-color: #efece6;
  border: 1px solid rgba(26, 25, 24, 0.12);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.package-card:hover {
  transform: translateY(-2px);
}

.package-card.featured-dark-card {
  background-color: #342e28;
  color: #f7f5f0;
  border: 1px solid rgba(197, 172, 142, 0.25);
  box-shadow: 0 10px 28px rgba(52, 46, 40, 0.12);
}

.package-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 25, 24, 0.1);
  width: 100%;
}

.package-card.featured-dark-card .package-card-header {
  border-bottom-color: rgba(247, 245, 240, 0.15);
}

.package-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.featured-tag-pill {
  display: inline-block;
  align-self: flex-start;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1a1918;
  background-color: #c5ac8e;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}

.package-title {
  font-family: "Lora", serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: #1a1918;
  word-wrap: break-word;
}

.package-title.light {
  color: #f7f5f0;
}

.package-term {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6b6255;
}

.package-term.light {
  color: #c5ac8e;
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.package-price {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1a1918;
  line-height: 1;
}

.package-price.light {
  color: #f7f5f0;
}

.package-subprice {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #7a7063;
  margin-top: 4px;
  text-align: right;
  white-space: nowrap;
}

.package-subprice.light {
  color: rgba(247, 245, 240, 0.6);
}

.package-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #524b42;
  line-height: 1.6;
  margin-bottom: 24px;
}

.package-desc.light {
  color: rgba(247, 245, 240, 0.85);
}

.package-action {
  display: flex;
  justify-content: flex-start;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step-timeline-item {
  display: flex;
  gap: 32px;
  align-items: start;
}

.step-num {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7a7063;
  width: 40px;
  flex-shrink: 0;
  padding-top: 4px;
}

.step-content h4 {
  font-family: "Lora", serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1918;
  margin-bottom: 6px;
}

.step-content p {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #524b42;
  line-height: 1.55;
}

.faq-editorial-list {
  display: flex;
  flex-direction: column;
}

.faq-editorial-item {
  border-bottom: 1px solid rgba(26, 25, 24, 0.12);
  padding: 20px 0;
}

.faq-editorial-item summary {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: #1a1918;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-editorial-item summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #7a7063;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-editorial-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-editorial-answer {
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #524b42;
  line-height: 1.6;
  margin-top: 14px;
}

.final-cta-section {
  padding: 100px 0;
  background-color: #1a1918;
  color: #f7f5f0;
}

.final-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.final-headline {
  font-family: "Lora", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  word-wrap: break-word;
}

.final-subtext {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(247, 245, 240, 0.75);
  line-height: 1.6;
  margin-bottom: 40px;
}

.final-actions-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .editorial-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-section {
    padding: 24px 0 32px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-photo-col {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-main-title {
    font-size: 2.1rem;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .hero-lead-text {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  .hero-actions-row {
    margin-bottom: 24px;
  }

  .express-cards-row {
    grid-template-columns: 1fr;
  }

  .about-principles-row {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 700px) and (max-width: 992px) {
  .hero-section {
    padding: 12px 0 16px 0;
  }

  .hero-main-title {
    font-size: 1.85rem;
    margin-bottom: 8px;
  }

  .hero-lead-text {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .hero-actions-row {
    margin-bottom: 16px;
    gap: 12px;
  }

  .hero-metrics-row {
    padding-top: 10px;
    gap: 10px 16px;
  }
}

@media (max-width: 768px) {
  .header-cta-btn,
  .header-cta-btn.visible {
    display: none !important;
  }

  .mobile-tabs-toggle {
    display: flex;
  }

  .editorial-tabs-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    background-color: #efece6;
    border: 1px solid rgba(26, 25, 24, 0.15);
    border-radius: 6px;
    padding: 8px;
    margin-top: 8px;
    border-bottom: none;
  }

  .editorial-tabs-nav.open {
    display: flex;
  }

  .editorial-tab-btn {
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-bottom: none;
    border-radius: 4px;
    font-size: 0.9rem;
  }

  .editorial-tab-btn.active {
    background-color: #1a1918;
    color: #f7f5f0;
  }

  .package-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .package-price-wrap {
    align-items: flex-start;
  }

  .package-subprice {
    text-align: left;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 64px;
  }

  .site-container {
    padding: 0 16px;
  }

  .section-padding {
    padding: 40px 0;
  }

  .hero-section {
    padding: 20px 0 24px 0;
  }

  .hero-main-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .hero-lead-text {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 28px;
  }

  .hero-express-note {
    display: inline-block;
    align-self: center;
    text-align: center;
    padding: 6px 12px;
    line-height: 1.45;
  }

  .hero-metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding-top: 16px;
    margin-bottom: 0;
  }

  .metric-unit {
    align-items: flex-start;
    text-align: left;
  }

  .metric-num {
    font-size: 1.7rem;
    margin-bottom: 2px;
  }

  .metric-label {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .express-card,
  .package-card {
    padding: 20px 16px;
    border-radius: 6px;
  }

  .express-price,
  .package-price {
    font-size: 1.6rem;
  }

  .step-timeline-item {
    gap: 16px;
  }

  .step-num {
    width: 28px;
  }

  .final-headline {
    font-size: 1.8rem;
  }

  .final-actions-row {
    flex-direction: column;
    gap: 12px;
  }

  .btn-editorial,
  .btn-editorial-light,
  .btn-editorial-outline,
  .btn-editorial-outline-dark {
    width: 100%;
  }
}
