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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #2c2c2c;
    background: #faf9f7;
    font-size: 16px;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== Typography ===== */
h1, h2, h3 {
    font-family: 'beloved-sans', 'Cormorant Garamond', sans-serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ===== Navigation ===== */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #faf9f7;
    border-bottom: 1px solid #e8e4de;
    z-index: 100;
    padding: 0 2rem;
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand-img {
    height: 28px;
    width: auto;
    display: block;
}

/* ===== Burger ===== */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 28px;
    height: 28px;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #2c2c2c;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform-origin: center;
}

.nav-burger--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger--open span:nth-child(2) { opacity: 0; }
.nav-burger--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.75rem;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #8a7a6a;
}

/* ===== Hero Photo ===== */
.hero-photo {
    margin-top: 56px;
    width: 100%;
    height: 65vh;
    min-height: 300px;
    overflow: hidden;
}

.hero-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== Hero Text ===== */
.section--hero {
    padding: 4rem 2rem 5rem;
    text-align: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8a7a6a;
    margin-bottom: 1.25rem;
}

.hero-names-svg {
    display: block;
    width: min(520px, 85vw);
    height: auto;
    margin: 0 auto 0.75rem;
}

.hero-date {
    font-size: 0.78rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8a7a6a;
    margin-bottom: 3rem;
}

/* ===== Countdown ===== */
.countdown {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.countdown-item span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1;
}

.countdown-item label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a7a6a;
}

.countdown-done {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #8a7a6a;
}

/* ===== Sections ===== */
.section {
    padding: 6rem 2rem;
}

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

.section-inner {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

/* ===== Divider ===== */
.divider {
    max-width: 200px;
    margin: 0 auto;
    height: 1px;
    background: #e8e4de;
}

/* ===== Section Title ===== */
.section-title {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: #8a7a6a;
    margin: 0.75rem auto 0;
}

/* ===== Timeline ===== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 380px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2.5rem;
    align-items: baseline;
    border-bottom: 1px solid #f0ece6;
    padding: 1.25rem 0;
}

.timeline-item:first-child {
    padding-top: 0;
}

.timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-event-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.timeline-subitems {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.timeline-subitems li {
    font-size: 0.8rem;
    color: #8a8a8a;
    padding-left: 0.75rem;
    position: relative;
}

.timeline-subitems li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #c8c4be;
}

.timeline-time {
    font-family: 'beloved-sans', 'Cormorant Garamond', sans-serif;
    font-size: .8rem;
    color: #8a7a6a;
    min-width: 55px;
}

.timeline-event {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

/* ===== Venue ===== */
.venue {
    text-align: center;
    margin-bottom: 4rem;
}

.venue-name {
    font-family: 'beloved-sans', 'Cormorant Garamond', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.venue-subtitle {
    font-family: 'beloved-sans', 'Cormorant Garamond', sans-serif;
    font-style: italic;
    color: #8a7a6a;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.venue-address {
    color: #6a6a6a;
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
}

.venue-description {
    font-size: 0.9rem;
    color: #5a5a5a;
    max-width: 500px;
    margin: 0 auto 1.75rem;
    line-height: 1.8;
}

/* ===== Transport ===== */
.transport {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.transport-title {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    letter-spacing: 0.05em;
}


/* ===== Links ===== */
.btn-link {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2c2c2c;
    text-decoration: none;
    border-bottom: 1px solid #2c2c2c;
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-link--spaced {
    margin-top: 1.5rem;
}

.btn-link:hover {
    color: #8a7a6a;
    border-color: #8a7a6a;
}

.text-link {
    color: #2c2c2c;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.text-link:hover {
    color: #8a7a6a;
}

/* ===== Info Blocks ===== */
.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem 4rem;
}

.info-block-title {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.info-block p {
    font-size: 0.88rem;
    color: #5a5a5a;
    margin-bottom: 0.5rem;
}

.info-block .btn-link {
    margin-top: 0.75rem;
}

.info-note {
    font-size: 0.78rem;
    color: #6a6a6a;
    border-left: 2px solid #c8b8a8;
    padding-left: 0.75rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0ece6;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

.faq-answer {
    font-size: 0.88rem;
    color: #5a5a5a;
}

/* ===== Illustration Footer ===== */
/* ===== Footer ===== */
.site-footer {
    text-align: center;
    padding: 0 2rem 2rem;
}

.illustration-footer-img {
    display: block;
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 0 auto;
}

.site-footer p {
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* ===== Flash Messages ===== */
.flash {
    padding: 0.9rem 2rem;
    text-align: center;
    font-size: 0.85rem;
}

.flash--error   { background: #f9eaea; color: #8b2020; }
.flash--success { background: #eaf0ea; color: #2a5c2a; }

/* ===== Login Page ===== */
.login-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}
.login-admin-link {
    position: absolute;
    bottom: 1rem;
    right: 1.25rem;
    font-size: 0.65rem;
    color: #ccc;
    text-decoration: none;
    letter-spacing: 0.05em;
}
.login-admin-link:hover { color: #999; }

.login-box {
    text-align: center;
    max-width: 340px;
    width: 100%;
}

.login-names {
    font-family: 'beloved-script', 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
}

.login-names-svg {
    display: block;
    width: min(280px, 75vw);
    height: auto;
    margin: 0 auto 0.5rem;
}

.login-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: #8a7a6a;
    margin-bottom: 3rem;
}

.form-input {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #c8c4be;
    background: transparent;
    padding: 0.75rem 0;

    font-size: 0.9rem;
    font-weight: 300;
    color: #2c2c2c;
    outline: none;
    text-align: center;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    transition: border-color 0.2s;
}

.form-input::placeholder {
    color: #b0aca6;
    letter-spacing: 0.15em;
}

.form-input:focus {
    border-bottom-color: #2c2c2c;
}

.btn-login {

    font-weight: 300;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2c2c2c;
    background: transparent;
    border: 1px solid #2c2c2c;
    padding: 0.85rem 2.5rem;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.btn-login:hover {
    background: #2c2c2c;
    color: #faf9f7;
}

/* ===== Section Illustration ===== */
.section-illustration {
    display: block;
    width: min(140px, 30vw);
    height: auto;
    margin: 3rem auto 0;
}

.section-illustration--landscape {
    width: 100%;
    max-width: 700px;
}

/* ===== Hotels ===== */
.hotel-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f0ece6;
}

.hotel-item:last-child {
    border-bottom: none;
}

.hotel-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 400;
}

.hotel-detail {
    font-size: 0.8rem;
    color: #8a8a8a;
}

.hotel-note {
    font-size: 0.78rem;
    color: #6a6a6a;
    border-left: 2px solid #c8b8a8;
    padding-left: 0.75rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ===== Toggle Button ===== */
.btn-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;

    font-weight: 300;
    font-size: 0.82rem;
    color: #5a5a5a;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

.btn-toggle:hover {
    color: #2c2c2c;
}

.btn-toggle-icon {
    font-size: 0.6rem;
    color: #8a7a6a;
    display: inline-block;
    transition: transform 0.25s ease;
    line-height: 1;
}

.btn-toggle-icon--open {
    transform: rotate(90deg);
}

/* ===== Map ===== */
.map-wrapper {
    margin-top: 1rem;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    max-height: 340px;
    opacity: 1;
}

.map-wrapper--hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

/* ===== VBB Widget ===== */
.vbb-widget-wrapper {
    margin-top: 1.25rem;
    border: 1px solid #e8e4de;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 800px;
    opacity: 1;
}

.vbb-widget-wrapper--hidden {
    max-height: 0;
    opacity: 0;
    border-color: transparent;
}

/* ===== Wunschliste ===== */
.wl-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.wl-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wl-title {
    font-size: 2.8rem;
    letter-spacing: 0.05em;
    margin: 0.5rem 0 1.25rem;
}

.wl-intro {
    font-size: 0.9rem;
    color: #5a5a5a;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.wl-spacer {
    height: 1.5rem;
}

.wl-category {
    margin-bottom: 3.5rem;
}

.wl-category-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a7a6a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e4de;
}

.wl-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0ece6;
}

.wl-item:last-child {
    border-bottom: none;
}

.wl-item--claimed .wl-item-name {
    color: #aaa;
    text-decoration: line-through;
    text-decoration-color: #ccc;
}

.wl-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wl-item-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wl-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
}

.wl-product-link {
    display: inline-block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a7a6a;
    text-decoration: none;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.wl-product-link:hover {
    color: #2c2c2c;
    border-color: #2c2c2c;
}

.wl-item-desc {
    font-size: 0.82rem;
    color: #8a8a8a;
}

.wl-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    min-width: 200px;
}

.wl-item-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #4a4a4a;
    white-space: nowrap;
}

.wl-item-qty {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: #8a7a6a;
    text-transform: uppercase;
}

.wl-claimers {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3rem;
    width: 100%;
}

.wl-claimer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #4a4a4a;
}

.wl-unclaim-form {
    display: inline;
}

.wl-unclaim-btn {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.wl-unclaim-btn:hover {
    color: #8b2020;
}

.wl-claim-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.wl-name-input {
    border: none;
    border-bottom: 1px solid #c8c4be;
    background: transparent;
    padding: 0.4rem 0;

    font-size: 0.82rem;
    font-weight: 300;
    color: #2c2c2c;
    outline: none;
    width: 140px;
    text-align: right;
    transition: border-color 0.2s;
}

.wl-name-input::placeholder {
    color: #b0aca6;
}

.wl-name-input:focus {
    border-bottom-color: #2c2c2c;
}

.wl-claim-btn {

    font-weight: 300;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2c2c2c;
    background: transparent;
    border: 1px solid #2c2c2c;
    padding: 0.4rem 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.wl-claim-btn:hover {
    background: #2c2c2c;
    color: #faf9f7;
}

/* ===== Personal Plan ===== */
.plan-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.plan-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.plan-name {
    font-family: 'beloved-sans', 'Cormorant Garamond', sans-serif;
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin: 0.5rem 0 0.5rem;
}

.plan-date {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8a7a6a;
}

.plan-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.plan-day-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a7a6a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e8e4de;
    margin-top: 1rem;
}

.plan-item {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0ece6;
}

.plan-item:last-child { border-bottom: none; }

.plan-item--personal {
    background: #faf8f4;
    margin: 0 -0.75rem;
    padding: 0.75rem;
    border-radius: 4px;
    border-bottom: none;
    margin-bottom: 0.25rem;
}

.plan-item-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    color: #8a7a6a;
    min-width: 50px;
    padding-top: 0.1rem;
}

.plan-item-body { flex: 1; }

.plan-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.plan-item-location {
    font-size: 0.78rem;
    color: #8a7a6a;
    white-space: nowrap;
    flex-shrink: 0;
}

.plan-item-name {
    font-weight: 400;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.plan-item-meta {
    font-size: 0.78rem;
    color: #8a8a8a;
}

.plan-item-desc {
    font-size: 0.82rem;
    color: #6a6a6a;
    margin-top: 0.2rem;
}

.plan-item-note {
    font-size: 0.82rem;
    font-style: italic;
    color: #8a7a6a;
    margin-top: 0.3rem;
    border-left: 2px solid #c8b8a8;
    padding-left: 0.6rem;
}

.plan-contributions {
    margin-bottom: 3rem;
}

.plan-contribution-item {
    background: #faf8f4;
    border-left: 3px solid #c8b8a8;
    border-radius: 0 4px 4px 0;
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
}

.plan-contribution-msg {
    font-size: 0.92rem;
    color: #2c2c2c;
}

.plan-contribution-detail {
    font-size: 0.82rem;
    color: #8a7a6a;
    font-style: italic;
    margin-top: 0.2rem;
}

.plan-section-title {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a7a6a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    padding-top: 3rem;
    border-bottom: 1px solid #e8e4de;
}

.plan-equipment {
    margin-bottom: 3rem;
}

.plan-equipment-intro {
    font-size: 0.82rem;
    color: #6a6a6a;
    margin-bottom: 1rem;
}

.plan-equipment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.plan-equipment-table th {
    text-align: left;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a7a6a;
    padding: 0.4rem 0.75rem 0.4rem 0;
    border-bottom: 1px solid #e8e4de;
    font-weight: 400;
}

.plan-equipment-table td {
    padding: 0.6rem 0.75rem 0.6rem 0;
    border-bottom: 1px solid #f0ece6;
    vertical-align: top;
    color: #4a4a4a;
}

.plan-equipment-table tr:last-child td {
    border-bottom: none;
}

.plan-equipment-name {
    font-size: 0.9rem;
    color: #2c2c2c;
}

.plan-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0ece6;
    display: flex;
    justify-content: flex-end;
}

.plan-print-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b0aca6;
    transition: color 0.2s;
    padding: 0;
}

.plan-print-btn:hover {
    color: #8a7a6a;
}

.plan-empty {
    text-align: center;
    color: #aaa;
    font-style: italic;
    margin-top: 3rem;
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
    .nav-burger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #faf9f7;
        border-bottom: 1px solid #e8e4de;
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    .nav-links--open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.85rem 2rem;
        font-size: 0.78rem;
    }

    .hero-photo {
        height: 45vh;
    }

    .countdown {
        gap: 1.75rem;
    }

    .countdown-item span {
        font-size: 2.2rem;
    }

    .info-blocks {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .wl-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .wl-item-right {
        align-items: flex-start;
        min-width: 0;
        width: 100%;
    }

    .wl-claim-form {
        justify-content: flex-start;
    }

    .wl-name-input {
        text-align: left;
        width: 100%;
    }
}

/* ===== Print ===== */
@media print {
    .no-print,
    .site-nav,
    .site-footer,
    .illustration-footer-img {
        display: none !important;
    }

    body {
        background: #fff;
        font-size: 11pt;
        color: #000;
    }

    .plan-page {
        padding: 0;
        max-width: 100%;
    }

    .plan-header {
        margin-bottom: 1.5rem;
        border-bottom: 1pt solid #ccc;
        padding-bottom: 1rem;
    }

    .plan-name {
        font-size: 22pt;
    }

    .plan-section-title,
    .plan-day-title {
        font-size: 8pt;
        margin-top: 1.5rem;
        border-bottom-color: #ccc;
    }

    .plan-item {
        padding: 0.4rem 0;
        break-inside: avoid;
    }

    .plan-item--personal {
        background: #f5f5f5;
        margin: 0;
    }

    .plan-item-note {
        border-left-color: #999;
    }

    .plan-equipment-table {
        font-size: 10pt;
    }

    .plan-equipment-table th,
    .plan-equipment-table td {
        padding: 0.3rem 0.5rem 0.3rem 0;
    }

    a { color: #000; text-decoration: none; }
}
