@import url('/css/wt-fonts.css');

.editorial-page {
    --editorial-ivory: #f8f3eb;
    --editorial-paper: #fffdf9;
    --editorial-ink: #211a18;
    --editorial-muted: #6f625d;
    --editorial-berry: #8d2f4d;
    --editorial-berry-dark: #692039;
    --editorial-blush: #ead4d8;
    --editorial-line: rgba(52, 35, 30, 0.14);
    --editorial-shadow: 0 28px 70px rgba(54, 35, 28, 0.13);
    margin: 0;
    overflow-x: hidden;
    background: var(--editorial-paper);
    color: var(--editorial-ink);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

.editorial-page *,
.editorial-page *::before,
.editorial-page *::after {
    box-sizing: border-box;
}

.editorial-page a {
    color: inherit;
}

.editorial-page img {
    display: block;
    max-width: 100%;
}

.editorial-page main section[id] {
    scroll-margin-top: 90px;
}

.editorial-container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.editorial-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 10px 14px;
    transform: translateY(-160%);
    border-radius: 4px;
    background: var(--editorial-ink);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
}

.editorial-skip-link:focus {
    transform: translateY(0);
}

.editorial-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 82px;
    border-bottom: 1px solid transparent;
    background: rgba(248, 243, 235, 0.92);
    backdrop-filter: blur(18px);
    transition: height 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.editorial-nav.is-scrolled {
    height: 72px;
    border-color: var(--editorial-line);
    box-shadow: 0 12px 34px rgba(48, 31, 25, 0.06);
}

.editorial-nav__inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
}

.editorial-nav__brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.editorial-nav__brand img {
    width: 170px;
    height: auto;
}

.editorial-nav__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    margin-left: auto;
}

.editorial-nav__links a,
.editorial-nav__login {
    position: relative;
    color: #4d423e;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
}

.editorial-nav__links a::after,
.editorial-nav__login::after {
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--editorial-berry);
    content: '';
    transition: transform 180ms ease;
}

.editorial-nav__links a:hover::after,
.editorial-nav__links a:focus-visible::after,
.editorial-nav__login:hover::after,
.editorial-nav__login:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.editorial-nav__actions {
    display: flex;
    align-items: center;
    gap: 17px;
}

.editorial-nav__actions .locale-switcher summary {
    display: flex;
    min-width: 28px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    color: var(--editorial-muted);
    font-size: 0;
}

.editorial-nav__actions .locale-switcher summary img {
    width: 20px;
    height: 14px;
    margin: 0;
}

.editorial-nav__actions .locale-switcher summary span {
    display: none;
}

.editorial-page .locale-switcher-dropdown {
    right: 0;
    left: auto;
    overflow: hidden;
    margin-top: 8px;
    padding: 6px;
    border-color: var(--editorial-line);
    border-radius: 10px;
    box-shadow: 0 18px 44px rgba(44, 30, 25, 0.14);
}

.editorial-page .locale-switcher-dropdown button {
    border-radius: 6px;
    font-family: 'Inter', Arial, sans-serif;
}

.editorial-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 13px 23px;
    border: 1px solid var(--editorial-berry);
    border-radius: 5px;
    background: var(--editorial-berry);
    box-shadow: 0 10px 24px rgba(141, 47, 77, 0.18);
    color: #fff !important;
    font-size: 0.91rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.editorial-button:hover,
.editorial-button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--editorial-berry-dark);
    background: var(--editorial-berry-dark);
    box-shadow: 0 14px 30px rgba(105, 32, 57, 0.24);
}

.editorial-button:focus-visible,
.editorial-page a:focus-visible,
.editorial-page button:focus-visible,
.editorial-page summary:focus-visible {
    outline: 3px solid rgba(141, 47, 77, 0.28);
    outline-offset: 3px;
}

.editorial-button--small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 0.78rem;
}

.editorial-nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--editorial-ink);
    cursor: pointer;
}

.editorial-nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: currentColor;
}

.editorial-nav__overlay,
.editorial-mobile-menu {
    display: none;
}

.editorial-nav__overlay[hidden],
.editorial-mobile-menu[hidden] {
    display: none !important;
}

.editorial-eyebrow {
    margin: 0 0 18px;
    color: var(--editorial-berry);
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.35;
    text-transform: uppercase;
}

.editorial-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    isolation: isolate;
    background: var(--editorial-ivory);
}

.editorial-hero__media,
.editorial-hero__wash {
    position: absolute;
    inset: 0;
}

.editorial-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: editorial-image-in 900ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.editorial-hero__wash {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(248, 243, 235, 1) 0%, rgba(248, 243, 235, 0.98) 28%, rgba(248, 243, 235, 0.86) 44%, rgba(248, 243, 235, 0.2) 69%, rgba(248, 243, 235, 0) 86%),
        linear-gradient(0deg, rgba(248, 243, 235, 0.68) 0%, rgba(248, 243, 235, 0) 24%);
}

.editorial-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 650px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 100px;
}

.editorial-hero__content {
    width: min(590px, 50%);
    animation: editorial-copy-in 760ms 90ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.editorial-hero h1,
.editorial-proof h2,
.editorial-section-heading h2,
.editorial-pricing h2,
.editorial-faq h2,
.editorial-final h2 {
    margin: 0;
    color: var(--editorial-ink);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.editorial-hero h1 {
    max-width: 620px;
    font-size: clamp(3.4rem, 5.25vw, 5.15rem);
    line-height: 0.98;
}

.editorial-hero__subtitle {
    max-width: 555px;
    margin: 27px 0 0;
    color: #574a46;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.7;
}

.editorial-hero__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.editorial-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--editorial-ink);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.editorial-text-link i {
    color: var(--editorial-berry);
    font-size: 0.76rem;
    transition: transform 180ms ease;
}

.editorial-text-link:hover i {
    transform: translateY(3px);
}

.editorial-hero__assurance,
.editorial-hero__privacy {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 20px 0 0;
    color: #554945;
    font-size: 0.79rem;
    font-weight: 650;
}

.editorial-hero__privacy {
    margin-top: 7px;
    color: #776963;
    font-weight: 500;
}

.editorial-hero__assurance i {
    color: var(--editorial-berry);
}

.editorial-hero__privacy i {
    font-size: 0.72rem;
}

.editorial-proof {
    position: relative;
    z-index: 4;
    margin-top: -170px;
    padding-bottom: 132px;
}

.editorial-proof__grid {
    display: grid;
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 2.1fr);
    align-items: start;
    gap: 44px;
}

.editorial-proof__copy {
    padding-top: 145px;
}

.editorial-proof__copy h2 {
    font-size: clamp(2.3rem, 3.4vw, 3.55rem);
    line-height: 1.05;
}

.editorial-proof__copy > p:last-child {
    margin: 24px 0 0;
    color: var(--editorial-muted);
    font-size: 0.98rem;
}

.product-window {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(58, 40, 34, 0.12);
    border-radius: 13px;
    background: #fff;
    box-shadow: var(--editorial-shadow);
}

.product-window__chrome {
    display: flex;
    height: 39px;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    border-bottom: 1px solid #eee8e5;
    background: #f8f5f3;
}

.product-window__chrome > span:not(.product-window__address) {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d7cbc7;
}

.product-window__chrome > span:first-child {
    background: #d998a9;
}

.product-window__address {
    width: 39%;
    margin-left: 13px;
    padding: 3px 10px;
    border-radius: 4px;
    background: #fff;
    color: #a69a96;
    font-size: 0.54rem;
    line-height: 1.3;
}

.product-window__body {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    min-height: 370px;
}

.product-window__sidebar {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 12px;
    border-right: 1px solid #eee8e5;
    background: #fcfaf8;
}

.product-window__sidebar .product-window__mark {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    place-items: center;
    margin: 2px 6px 20px;
    border: 1px solid #ead8dc;
    border-radius: 50%;
    color: var(--editorial-berry);
    font-size: 0.78rem;
}

.product-window__sidebar span {
    display: flex;
    min-height: 32px;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 5px;
    color: #786c67;
    font-size: 0.62rem;
    font-weight: 600;
}

.product-window__sidebar span i {
    width: 13px;
    color: #aaa09c;
    text-align: center;
}

.product-window__sidebar span.is-current {
    background: #f4e7ea;
    color: var(--editorial-berry-dark);
}

.product-window__sidebar span.is-current i {
    color: var(--editorial-berry);
}

.product-window__content {
    min-width: 0;
    padding: 26px 28px;
    background: #fff;
}

.product-window__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.product-window__topline > div {
    display: flex;
    flex-direction: column;
}

.product-window__context {
    margin-bottom: 3px;
    color: #9c8f89;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-window__topline strong {
    color: #332925;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.28rem;
    font-weight: 600;
}

.product-window__date,
.product-window__action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid #eee6e3;
    border-radius: 5px;
    color: #786c67;
    font-size: 0.57rem;
    font-weight: 650;
}

.product-window__action {
    border-color: var(--editorial-berry);
    background: var(--editorial-berry);
    color: #fff;
}

.preview-recommendation {
    padding: 18px 20px;
    border: 1px solid #ecdadd;
    border-radius: 8px;
    background: linear-gradient(135deg, #fcf4f5, #fffaf8);
}

.preview-recommendation > span {
    display: block;
    margin-bottom: 7px;
    color: var(--editorial-berry);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.preview-recommendation > span i {
    margin-right: 6px;
}

.preview-recommendation > strong {
    display: block;
    color: #342925;
    font-size: 0.92rem;
}

.preview-progress {
    height: 5px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: #eadfdb;
}

.preview-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--editorial-berry);
}

.preview-recommendation small {
    display: block;
    margin-top: 6px;
    color: #8b7f79;
    font-size: 0.54rem;
}

.preview-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
    margin-top: 12px;
}

.preview-stat-grid > div {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 11px;
    border: 1px solid #eee8e5;
    border-radius: 7px;
}

.preview-stat-grid i {
    grid-row: 1 / 3;
    align-self: center;
    margin-right: 8px;
    color: var(--editorial-berry);
    font-size: 0.74rem;
}

.preview-stat-grid strong {
    color: #3a302c;
    font-size: 0.74rem;
}

.preview-stat-grid span {
    color: #968a84;
    font-size: 0.48rem;
    line-height: 1.25;
}

.preview-planning-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.preview-planning-row span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px;
    border-radius: 6px;
    background: #f8f5f2;
    color: #766a65;
    font-size: 0.52rem;
    font-weight: 650;
}

.preview-planning-row i {
    color: var(--editorial-berry);
}

.preview-guest-summary,
.preview-vendor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 11px;
    margin-bottom: 15px;
}

.preview-guest-summary > div,
.preview-vendor-stats > div {
    display: flex;
    flex-direction: column;
    padding: 13px 14px;
    border: 1px solid #eee8e5;
    border-radius: 7px;
    background: #fcfaf8;
}

.preview-guest-summary strong,
.preview-vendor-stats strong {
    color: #382d29;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1;
}

.preview-guest-summary span,
.preview-vendor-stats span,
.preview-vendor-stats small {
    margin-top: 5px;
    color: #938781;
    font-size: 0.52rem;
}

.preview-table {
    overflow: hidden;
    border: 1px solid #eee8e5;
    border-radius: 7px;
}

.preview-table > div {
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.45fr 0.9fr;
    min-height: 52px;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-top: 1px solid #f0ebe8;
    color: #655a55;
    font-size: 0.56rem;
}

.preview-table > div:first-child {
    border-top: 0;
}

.preview-table .preview-table__head {
    min-height: 32px;
    background: #f8f5f2;
    color: #9a8e88;
    font-size: 0.48rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.preview-table > div > span {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.preview-avatar {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #dce4dc;
    color: #506052;
    font-size: 0.45rem;
    font-style: normal;
    font-weight: 800;
}

.preview-avatar--rose {
    background: #f1dfe3;
    color: #7c3850;
}

.preview-avatar--gold {
    background: #eee5cc;
    color: #74622d;
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
}

.status-dot--yes {
    background: #6d8c70;
}

.status-dot--wait {
    background: #d19a4d;
}

.preview-project-list,
.preview-ad-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-project {
    display: grid;
    grid-template-columns: 45px minmax(100px, 1.4fr) minmax(100px, 0.8fr) auto;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid #eee8e5;
    border-radius: 8px;
    background: #fff;
}

.preview-project__mark {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #f2e3e6;
    color: var(--editorial-berry-dark);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.72rem;
    font-weight: 700;
}

.preview-project__name {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.preview-project__name strong {
    color: #3b302c;
    font-size: 0.65rem;
}

.preview-project__name span,
.preview-project__progress small {
    color: #978b85;
    font-size: 0.5rem;
}

.preview-project__progress {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px;
}

.preview-project__progress > span {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #ede6e2;
}

.preview-project__progress i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--editorial-berry);
}

.preview-project > i {
    color: #b5aba6;
    font-size: 0.58rem;
}

.preview-vendor-stats > div {
    position: relative;
}

.preview-vendor-stats strong {
    margin-top: 5px;
}

.preview-vendor-stats strong .status-dot {
    width: 12px;
    height: 12px;
}

.preview-ad {
    display: grid;
    grid-template-columns: 47px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 10px 13px;
    border: 1px solid #eee8e5;
    border-radius: 8px;
}

.preview-ad__image {
    display: flex;
    width: 43px;
    height: 43px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #eee2df;
    color: var(--editorial-berry);
}

.preview-ad > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.preview-ad strong {
    color: #3b302c;
    font-size: 0.63rem;
}

.preview-ad span,
.preview-ad > div span {
    color: #988c86;
    font-size: 0.48rem;
}

.preview-ad > b {
    padding: 3px 7px;
    border-radius: 999px;
    background: #e8f0e8;
    color: #557159;
    font-size: 0.45rem;
    font-weight: 700;
}

.preview-ad > i {
    color: #aca19c;
    font-size: 0.58rem;
}

.editorial-features {
    padding: 125px 0 135px;
    background: var(--editorial-ivory);
}

.editorial-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
    align-items: end;
    gap: 70px;
    max-width: 1040px;
}

.editorial-section-heading .editorial-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -48px;
}

.editorial-section-heading h2,
.editorial-pricing h2,
.editorial-faq h2 {
    font-size: clamp(2.7rem, 4.4vw, 4.45rem);
    line-height: 1.02;
}

.editorial-section-heading > p:last-child,
.editorial-pricing__copy > p:last-child {
    margin: 0 0 7px;
    color: var(--editorial-muted);
    font-size: 1rem;
}

.editorial-feature-list {
    margin-top: 82px;
    border-top: 1px solid var(--editorial-line);
}

.editorial-feature {
    display: grid;
    grid-template-columns: 76px 62px minmax(230px, 0.85fr) minmax(280px, 1.15fr);
    align-items: center;
    gap: 28px;
    min-height: 155px;
    border-bottom: 1px solid var(--editorial-line);
}

.editorial-feature__number {
    color: #9e8e87;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
}

.editorial-feature__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfc9cd;
    border-radius: 50%;
    color: var(--editorial-berry);
}

.editorial-feature h3 {
    margin: 0;
    color: var(--editorial-ink);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.52rem;
    font-weight: 600;
    line-height: 1.2;
}

.editorial-feature p {
    max-width: 570px;
    margin: 0;
    color: var(--editorial-muted);
}

.editorial-steps {
    position: relative;
    overflow: hidden;
    padding: 132px 0 140px;
    background: var(--editorial-berry-dark);
    color: #fff;
}

.editorial-steps::after {
    position: absolute;
    top: -230px;
    right: -170px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 85px rgba(255, 255, 255, 0.025), 0 0 0 170px rgba(255, 255, 255, 0.018);
    content: '';
}

.editorial-section-heading--light {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 760px;
}

.editorial-section-heading--light .editorial-eyebrow {
    margin-bottom: 20px;
    color: #e7b8c4;
}

.editorial-section-heading--light h2 {
    color: #fffaf7;
}

.editorial-step-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 82px 0 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    list-style: none;
}

.editorial-step-list li {
    position: relative;
    padding: 44px 45px 0 0;
}

.editorial-step-list li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    margin-right: 45px;
}

.editorial-step-list li::before {
    position: absolute;
    top: -5px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e7b8c4;
    box-shadow: 0 0 0 7px rgba(231, 184, 196, 0.12);
    content: '';
}

.editorial-step-list li > span {
    color: #e7b8c4;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
}

.editorial-step-list h3 {
    margin: 13px 0 12px;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 600;
}

.editorial-step-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.editorial-pricing {
    padding: 135px 0;
    background: var(--editorial-paper);
}

.editorial-pricing__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(370px, 0.75fr);
    align-items: center;
    gap: 120px;
    max-width: 1050px;
}

.editorial-pricing__copy > p:last-child {
    max-width: 520px;
    margin-top: 28px;
}

.editorial-price {
    position: relative;
    padding: 52px 54px;
    border: 1px solid var(--editorial-line);
    background: var(--editorial-ivory);
    box-shadow: 16px 16px 0 #ead8d8;
}

.editorial-price::before {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--editorial-berry);
    content: '';
}

.editorial-price__amount {
    color: var(--editorial-ink);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3.6rem, 6vw, 5.5rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.editorial-price__period {
    margin: 14px 0 30px;
    color: var(--editorial-muted);
    font-size: 0.88rem;
}

.editorial-price ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0 0 34px;
    padding: 25px 0 0;
    border-top: 1px solid var(--editorial-line);
    list-style: none;
}

.editorial-price li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #594d48;
    font-size: 0.88rem;
}

.editorial-price li i {
    margin-top: 5px;
    color: var(--editorial-berry);
    font-size: 0.67rem;
}

.editorial-price .editorial-button {
    width: 100%;
}

.editorial-faq {
    padding: 130px 0;
    border-top: 1px solid var(--editorial-line);
    background: #fcf8f2;
}

.editorial-faq__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.68fr) minmax(420px, 1fr);
    gap: 105px;
}

.editorial-faq__heading {
    position: sticky;
    top: 120px;
    align-self: start;
}

.editorial-faq__items {
    border-top: 1px solid var(--editorial-line);
}

.editorial-faq details {
    border-bottom: 1px solid var(--editorial-line);
}

.editorial-faq summary {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 22px 0;
    color: #3f3430;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

.editorial-faq summary::-webkit-details-marker {
    display: none;
}

.editorial-faq summary i {
    color: var(--editorial-berry);
    font-size: 0.75rem;
    transition: transform 180ms ease;
}

.editorial-faq details[open] summary i {
    transform: rotate(45deg);
}

.editorial-faq details p {
    max-width: 650px;
    margin: -4px 0 30px;
    color: var(--editorial-muted);
}

.editorial-final {
    padding: 126px 0;
    overflow: hidden;
    background: var(--editorial-berry);
    color: #fff;
    text-align: center;
}

.editorial-final__inner {
    position: relative;
    max-width: 830px;
}

.editorial-final__mark {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.045);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22rem;
    font-weight: 700;
    line-height: 0.7;
    pointer-events: none;
}

.editorial-final h2 {
    position: relative;
    color: #fff;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
}

.editorial-final__inner > p:not(.editorial-final__mark) {
    position: relative;
    max-width: 580px;
    margin: 25px auto 32px;
    color: rgba(255, 255, 255, 0.78);
}

.editorial-button--light {
    position: relative;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 12px 28px rgba(59, 16, 31, 0.2);
    color: var(--editorial-berry-dark) !important;
}

.editorial-button--light:hover,
.editorial-button--light:focus-visible {
    border-color: var(--editorial-ivory);
    background: var(--editorial-ivory);
    color: var(--editorial-berry-dark) !important;
}

.editorial-page .footer {
    padding: 78px 0 30px;
    background: #241b19;
    color: rgba(255, 255, 255, 0.68);
}

.editorial-page .footer .container {
    width: min(1240px, calc(100% - 48px));
    max-width: none;
    margin-inline: auto;
}

.editorial-page .footer-grid {
    grid-template-columns: minmax(240px, 1.45fr) repeat(3, minmax(130px, 0.7fr));
    gap: 50px;
}

.editorial-page .footer-description {
    max-width: 34ch;
}

.editorial-page .footer h3,
.editorial-page .footer h4,
.editorial-page .footer .text-black {
    color: #fff !important;
}

.editorial-page .footer-mark {
    display: block;
    margin: 0 0 22px;
    color: #e7b8c4;
    font-size: 1.35rem;
}

.editorial-page .footer-description,
.editorial-page .footer-links a,
.editorial-page .footer-bottom {
    color: rgba(255, 255, 255, 0.62);
}

.editorial-page .footer-links a:hover,
.editorial-page .footer-links a:focus-visible {
    color: #fff;
}

.editorial-page .footer-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.editorial-page .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 20px;
}

.editorial-page .footer-legal a {
    color: inherit;
    text-decoration: none;
}

.editorial-page .footer-legal .footer-legal-action {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.editorial-page .footer-legal a:hover,
.editorial-page .footer-legal a:focus-visible {
    color: #fff;
}

[data-reveal] {
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.editorial-page.is-reveal-ready [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

.editorial-page.is-reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes editorial-copy-in {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes editorial-image-in {
    from {
        opacity: 0.3;
        transform: scale(1.025);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1160px) {
    .editorial-nav__links {
        gap: 16px;
    }

    .editorial-nav__links a:nth-last-child(1) {
        display: none;
    }

    .editorial-proof__grid {
        gap: 38px;
    }

    .editorial-pricing__grid {
        gap: 70px;
    }
}

@media (max-width: 1020px) {
    .editorial-nav__links,
    .editorial-nav__actions {
        display: none;
    }

    .editorial-nav__toggle {
        display: flex;
        margin-left: auto;
    }

    .editorial-nav__overlay {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: block;
        background: rgba(31, 23, 21, 0.38);
        backdrop-filter: blur(3px);
    }

    .editorial-mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1002;
        display: flex;
        width: min(410px, 90vw);
        height: 100dvh;
        flex-direction: column;
        padding: 25px 28px 30px;
        background: var(--editorial-paper);
        box-shadow: -20px 0 60px rgba(42, 28, 24, 0.18);
    }

    .editorial-mobile-menu__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 22px;
        border-bottom: 1px solid var(--editorial-line);
    }

    .editorial-mobile-menu__label {
        color: var(--editorial-berry);
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 1.4rem;
        font-weight: 600;
    }

    .editorial-mobile-menu__close {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: var(--editorial-ink);
        cursor: pointer;
    }

    .editorial-mobile-menu__links {
        display: flex;
        flex-direction: column;
        padding: 24px 0;
    }

    .editorial-mobile-menu__links a {
        padding: 13px 0;
        border-bottom: 1px solid rgba(52, 35, 30, 0.08);
        color: var(--editorial-ink);
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 1.25rem;
        font-weight: 600;
        text-decoration: none;
    }

    .editorial-mobile-menu__bottom {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: auto;
    }

    .editorial-mobile-menu__bottom .locale-switcher summary {
        display: flex;
        min-height: 44px;
        align-items: center;
        padding: 7px 0;
        color: var(--editorial-muted);
        font-size: 0.82rem;
    }

    .editorial-mobile-menu__bottom .locale-switcher-dropdown {
        top: auto;
        right: auto;
        bottom: calc(100% + 4px);
        left: 0;
        max-height: min(420px, 55dvh);
        overflow-y: auto;
    }

    .editorial-mobile-menu__bottom .editorial-nav__login {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--editorial-line);
        border-radius: 5px;
    }

    .editorial-proof {
        margin-top: -45px;
    }

    .editorial-proof__grid {
        grid-template-columns: 1fr;
    }

    .editorial-proof__copy {
        max-width: 680px;
        padding-top: 90px;
    }

    .editorial-section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .editorial-section-heading .editorial-eyebrow {
        margin-bottom: -5px;
    }

    .editorial-section-heading > p:last-child {
        max-width: 650px;
    }

    .editorial-feature {
        grid-template-columns: 55px 55px minmax(200px, 0.8fr) minmax(260px, 1.2fr);
        gap: 18px;
    }
}

@media (max-width: 780px) {
    .editorial-container,
    .editorial-page .footer .container {
        width: min(100% - 32px, 680px);
    }

    .editorial-page .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
    }

    .editorial-page .footer-intro {
        grid-column: 1 / -1;
    }

    .editorial-page .footer-bottom {
        display: block;
    }

    .editorial-page .footer-legal {
        justify-content: flex-start;
        margin-top: 18px;
    }

    .editorial-nav,
    .editorial-nav.is-scrolled {
        height: 68px;
    }

    .editorial-nav__brand img {
        width: 145px;
    }

    .editorial-hero {
        display: flex;
        min-height: auto;
        flex-direction: column;
        padding-bottom: 0;
    }

    .editorial-hero__media {
        position: relative;
        order: 2;
        height: min(56vw, 365px);
        min-height: 250px;
        margin-top: 6px;
    }

    .editorial-hero__media img {
        object-position: 67% center;
    }

    .editorial-page--couples .editorial-hero__media img {
        object-position: 70% center;
    }

    .editorial-page--planners .editorial-hero__media img,
    .editorial-page--vendors .editorial-hero__media img {
        object-position: 72% center;
    }

    .editorial-hero__wash {
        display: none;
    }

    .editorial-hero__inner {
        min-height: auto;
        order: 1;
        padding-top: 64px;
        padding-bottom: 34px;
    }

    .editorial-hero__content {
        width: 100%;
    }

    .editorial-hero h1 {
        max-width: 630px;
        font-size: clamp(3rem, 11vw, 4.2rem);
    }

    .editorial-hero__subtitle {
        margin-top: 21px;
        font-size: 0.98rem;
    }

    .editorial-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
        margin-top: 27px;
    }

    .editorial-hero__actions .editorial-button {
        width: 100%;
    }

    .editorial-hero__assurance {
        margin-top: 18px;
    }

    .editorial-proof {
        margin-top: 0;
        padding: 88px 0 100px;
    }

    .editorial-proof__copy {
        padding-top: 0;
    }

    .editorial-proof__copy h2 {
        font-size: clamp(2.4rem, 9vw, 3.3rem);
    }

    .product-window__body {
        grid-template-columns: 54px minmax(0, 1fr);
        min-height: 380px;
    }

    .product-window__sidebar {
        padding: 15px 7px;
    }

    .product-window__sidebar .product-window__mark {
        width: 28px;
        height: 28px;
        margin: 3px auto 17px;
    }

    .product-window__sidebar span {
        justify-content: center;
        padding: 7px 5px;
        font-size: 0;
    }

    .product-window__sidebar span i {
        width: auto;
        font-size: 0.72rem;
    }

    .product-window__content {
        padding: 20px 16px;
    }

    .product-window__topline {
        margin-bottom: 18px;
    }

    .preview-stat-grid,
    .preview-planning-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-table > div {
        grid-template-columns: 1.3fr 1fr 0.4fr;
    }

    .preview-table > div > span:last-child {
        display: none;
    }

    .preview-project {
        grid-template-columns: 42px minmax(0, 1fr) auto;
    }

    .preview-project__progress {
        display: none;
    }

    .editorial-features,
    .editorial-steps,
    .editorial-pricing,
    .editorial-faq {
        padding-top: 96px;
        padding-bottom: 100px;
    }

    .editorial-section-heading h2,
    .editorial-pricing h2,
    .editorial-faq h2 {
        font-size: clamp(2.55rem, 10vw, 3.6rem);
    }

    .editorial-feature-list {
        margin-top: 58px;
    }

    .editorial-feature {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 9px 18px;
        min-height: 0;
        padding: 29px 0;
    }

    .editorial-feature__number {
        grid-column: 1;
        grid-row: 1;
    }

    .editorial-feature__icon {
        display: none;
    }

    .editorial-feature h3 {
        grid-column: 2;
        grid-row: 1;
        font-size: 1.35rem;
    }

    .editorial-feature p {
        grid-column: 2;
        grid-row: 2;
    }

    .editorial-step-list {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 58px;
        border-top: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.22);
    }

    .editorial-step-list li {
        min-height: 0;
        padding: 0 0 40px 31px;
    }

    .editorial-step-list li:not(:last-child) {
        margin-right: 0;
        border-right: 0;
    }

    .editorial-step-list li:last-child {
        padding-bottom: 0;
    }

    .editorial-step-list li::before {
        top: 7px;
        left: -5px;
    }

    .editorial-pricing__grid,
    .editorial-faq__grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .editorial-price {
        padding: 43px 34px;
        box-shadow: 10px 10px 0 #ead8d8;
    }

    .editorial-faq__heading {
        position: static;
    }

    .editorial-faq summary {
        min-height: 82px;
        font-size: 1.12rem;
    }

    .editorial-final {
        padding: 100px 0;
    }

    .editorial-final__mark {
        font-size: 14rem;
    }
}

@media (max-width: 480px) {
    .editorial-container,
    .editorial-page .footer .container {
        width: calc(100% - 28px);
    }

    .editorial-hero__inner {
        padding-top: 49px;
    }

    .editorial-hero h1 {
        font-size: clamp(2.78rem, 13.7vw, 3.7rem);
    }

    .editorial-eyebrow {
        font-size: 0.66rem;
    }

    .editorial-hero__assurance,
    .editorial-hero__privacy {
        align-items: flex-start;
        font-size: 0.74rem;
    }

    .editorial-hero__assurance i,
    .editorial-hero__privacy i {
        margin-top: 5px;
    }

    .product-window__chrome {
        height: 33px;
        padding: 0 9px;
    }

    .product-window__address {
        width: 51%;
    }

    .product-window__body {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .product-window__content {
        padding: 16px 10px;
    }

    .product-window__date {
        display: none;
    }

    .product-window__topline strong {
        font-size: 1.03rem;
    }

    .preview-recommendation {
        padding: 14px;
    }

    .preview-guest-summary,
    .preview-vendor-stats {
        gap: 6px;
    }

    .preview-guest-summary > div,
    .preview-vendor-stats > div {
        padding: 10px 8px;
    }

    .preview-guest-summary strong,
    .preview-vendor-stats strong {
        font-size: 1rem;
    }

    .preview-table > div {
        grid-template-columns: 1.2fr 1fr;
        padding-inline: 8px;
    }

    .preview-table > div > span:nth-child(3) {
        display: none;
    }

    .preview-project {
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 10px 8px;
    }

    .preview-project__mark {
        width: 36px;
        height: 36px;
    }

    .preview-ad {
        grid-template-columns: 39px minmax(0, 1fr) auto;
        gap: 8px;
        padding: 8px;
    }

    .preview-ad__image {
        width: 37px;
        height: 37px;
    }

    .preview-ad > b {
        display: none;
    }

}

@media (prefers-reduced-motion: reduce) {
    .editorial-page *,
    .editorial-page *::before,
    .editorial-page *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .editorial-page.is-reveal-ready [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Public content must remain readable before or without intersection events. */
.editorial-page.is-reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
}

.preview-stat-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.preview-simple-list {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.preview-simple-list > div {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr) minmax(80px, 0.55fr);
    align-items: center;
    gap: 11px;
    min-height: 45px;
    padding: 8px 11px;
    border: 1px solid rgba(52, 35, 30, 0.1);
    border-radius: 5px;
    background: #fff;
}

.preview-simple-list__check {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3e5e8;
    color: var(--editorial-berry);
    font-size: 0.63rem;
}

.preview-simple-list strong {
    overflow: hidden;
    color: #463b37;
    font-size: 0.71rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-simple-list__bar {
    display: block;
    height: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #eee7e2;
}

.preview-simple-list__bar i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--editorial-berry);
}

@media (max-width: 480px) {
    .preview-simple-list > div {
        grid-template-columns: 24px minmax(0, 1fr);
    }

    .preview-simple-list__bar {
        display: none;
    }
}
