/* ==========================================================================
   Chester Dance Centre — dance-classes-page.css
   Shared styles for individual dance class pages (commercial, salsa, etc.).
   ========================================================================== */

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.class-hero {
    position: relative;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 90vh;
    padding: var(--sp-9) 0;
    overflow: hidden;
}

.class-hero__kanji {
    position: absolute;
    right: clamp(1rem, 4vw, 5rem);
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-family: 'Yuji Boku', serif;
    font-size: clamp(8rem, 20vw, 18rem);
    color: var(--black);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.class-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    letter-spacing: -0.04em;
    line-height: 1.0;
}

.class-hero__tagline {
    position: relative;
    display: inline-block;
    background: var(--mustard-bright);
    padding: var(--sp-3) var(--sp-5);
    margin: var(--sp-5) auto var(--sp-4);
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.class-hero__tagline-tape {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(2deg);
    width: 50px;
    height: 18px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 1px;
    pointer-events: none;
}

.class-hero__tagline-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #1a3c7a;
    line-height: 1.3;
}

@keyframes postit-drop {
    0%   { opacity: 0; transform: translateY(-50vh) rotate(-6deg); }
    55%  { opacity: 1; transform: translateY(8px) rotate(2deg); }
    75%  { transform: translateY(-3px) rotate(-1.5deg); }
    100% { opacity: 1; transform: translateY(0) rotate(-1.2deg); }
}

.class-hero__actions {
    position: absolute;
    bottom: var(--sp-7);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--sp-5);
    flex-wrap: wrap;
    justify-content: center;
}

.class-hero__note {
    position: relative;
    display: inline-block;
    background: var(--mustard-bright);
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-sm);
    padding: var(--sp-4) var(--sp-5);
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
    animation: postit-drop 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.class-hero__note .arrow {
    font-size: 1.1rem;
    transition: transform var(--transition);
}

.class-hero__note:hover .arrow {
    transform: translateX(4px);
}

.class-hero__note--1 { transform: rotate(-2deg); animation-delay: 0.7s; }
.class-hero__note--2 { transform: rotate(1.5deg); animation-delay: 0.9s; }

.class-hero__note:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: 3px 6px 16px rgba(0, 0, 0, 0.15);
}

.class-hero__note-tape {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 50px;
    height: 18px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 1px;
    pointer-events: none;
}

.class-hero__note--1 .class-hero__note-tape { transform: translateX(-50%) rotate(3deg); }
.class-hero__note--2 .class-hero__note-tape { transform: translateX(-50%) rotate(-2deg); left: 45%; }

/* --------------------------------------------------------------------------
   BREADCRUMB
   -------------------------------------------------------------------------- */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: var(--sp-3) 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    color: var(--text-faint);
}

.breadcrumb__list li + li::before {
    content: "/";
    margin-right: var(--sp-2);
    color: var(--text-faint);
}

.breadcrumb__list a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb__list a:hover { color: var(--black); }
.breadcrumb__list [aria-current="page"] { color: var(--black); font-weight: 600; }

/* --------------------------------------------------------------------------
   SECTION HELPERS
   -------------------------------------------------------------------------- */
.keyline {
    border: none;
    border-top: 3px solid var(--black);
    width: 50px;
    margin: 0 0 var(--sp-4);
}

.marker {
    background: linear-gradient(180deg, transparent 55%, var(--mustard-bright) 55%);
    padding: 0 4px;
}

/* --------------------------------------------------------------------------
   CLASS DETAILS — CORKBOARD  (dc = dance class)
   -------------------------------------------------------------------------- */
.dc { padding: 0; }

.dc__board {
    background: var(--surface);
    padding: var(--sp-8) 0;
}

.dc__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
    align-items: start;
}

/* --- Shared pin & tape --- */
.dc__pin {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #e84040, #b91c1c);
    box-shadow: 0 2px 4px rgba(0,0,0,0.35), inset 0 1px 2px rgba(255,255,255,0.3);
    z-index: 2;
}

.dc__tape {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    width: 50px;
    height: 18px;
    background: rgba(255,255,255,0.45);
    border-radius: 1px;
    pointer-events: none;
    z-index: 2;
}

/* --- Title post-it --- */
.dc__title-postit {
    position: relative;
    background: var(--mustard-bright);
    padding: var(--sp-5) var(--sp-6);
    box-shadow: 2px 3px 10px rgba(0,0,0,0.18);
    transform: rotate(-1.5deg);
    margin-bottom: var(--sp-6);
}

.dc__title-postit .dc__tape { transform: translateX(-50%) rotate(3deg); }

.dc__title-postit h2 {
    font-size: var(--fs-lg);
    color: var(--black);
    margin: 0;
}

/* --- Mini corkboard --- */
.dc__cork {
    background: #a0856b;
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(0,0,0,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
    padding: var(--sp-7);
    box-shadow: inset 0 2px 12px rgba(0,0,0,0.2);
    border: 8px solid #8b7256;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    margin-bottom: var(--sp-6);
}

/* --- Polaroid --- */
.dc__polaroid {
    position: relative;
    background: var(--white);
    padding: 8px 8px 40px;
    box-shadow: 3px 5px 16px rgba(0,0,0,0.22);
    transform: rotate(1.5deg);
    grid-column: 1 / -1;
    justify-self: center;
}

.dc__polaroid img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.dc__polaroid-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3c7a;
}

/* --- Class details post-it --- */
.dc__details-postit {
    position: relative;
    background: var(--mustard-bright);
    padding: var(--sp-7) var(--sp-7);
    box-shadow: 2px 3px 10px rgba(0,0,0,0.18);
    transform: rotate(-1.2deg);
    aspect-ratio: 1 / 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Coming soon flip post-it --- */
.dc__flip-postit {
    perspective: 600px;
    grid-column: 1 / -1;
    justify-self: center;
    cursor: pointer;
}

.dc__flip-inner {
    position: relative;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    transform: rotate(2deg);
}

.dc__flip-postit:hover .dc__flip-inner {
    transform: rotate(2deg) rotateY(180deg);
}

.dc__flip-front,
.dc__flip-back {
    position: relative;
    background: var(--mustard-bright);
    padding: var(--sp-4) var(--sp-5);
    box-shadow: 2px 3px 8px rgba(0,0,0,0.15);
    text-align: center;
    backface-visibility: hidden;
}

.dc__flip-back {
    position: absolute;
    inset: 0;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dc__flip-front .dc__tape { transform: translateX(-50%) rotate(-2deg); }
.dc__flip-back .dc__tape { transform: translateX(-50%) rotate(2deg); }

.dc__coming-soon-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #1a3c7a;
    line-height: 1.3;
}

.dc__details-postit .dc__tape { transform: translateX(-50%) rotate(2deg); }

.dc__details-title {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.4rem, 2.5vw, 1.7rem);
    font-weight: 700;
    color: #c0392b;
    margin-bottom: var(--sp-3);
    line-height: 1.2;
}

.dc__details-line {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: var(--sp-1);
}

.dc__details-line:last-child { margin-bottom: 0; }

.dc__details-line strong {
    font-weight: 700;
}

/* --- Receipt (pricing) --- */
.dc__receipt {
    position: relative;
    background: #faf8f2;
    padding: var(--sp-5);
    box-shadow: 2px 3px 10px rgba(0,0,0,0.15);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #111;
    max-width: 240px;
    transform: rotate(1.5deg);
    align-self: start;
}

.dc__receipt-header {
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-3);
    color: #000;
}

.dc__receipt-line {
    border-top: 1px dashed rgba(0,0,0,0.3);
    margin: var(--sp-3) 0;
}

.dc__receipt-row {
    display: flex;
    justify-content: space-between;
    padding: var(--sp-1) 0;
    font-weight: 700;
    color: #000;
}

.dc__receipt-note {
    text-align: center;
    font-size: 0.75rem;
    color: #666;
}

.dc__receipt-footer {
    text-align: center;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

/* --- Cork heading --- */
.dc__cork-heading {
    grid-column: 1 / -1;
    font-size: var(--fs-base);
    color: var(--white);
    text-align: center;
    margin: 0;
}

/* --- Venue post-its --- */
.dc__venue-postit {
    position: relative;
    background: var(--mustard-bright);
    padding: var(--sp-4) var(--sp-5);
    box-shadow: 2px 3px 8px rgba(0,0,0,0.15);
}

.dc__venue-postit--1 { transform: rotate(-2deg); }
.dc__venue-postit--1 .dc__tape { transform: translateX(-50%) rotate(2deg); }
.dc__venue-postit--2 { transform: rotate(1.5deg); }
.dc__venue-postit--2 .dc__tape { transform: translateX(-60%) rotate(-3deg); }

.dc__biro-label {
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(26, 60, 122, 0.6);
    margin-bottom: 2px;
}

.dc__biro-label i { font-size: 0.75em; margin-right: 4px; }

.dc__biro-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #1a3c7a;
    line-height: 1.4;
}

/* --- Class structure --- */
.dc__structure {
    position: relative;
    background: var(--white);
    padding: var(--sp-6);
    box-shadow: 2px 3px 10px rgba(0,0,0,0.15);
    transform: rotate(0.3deg);
    margin-bottom: var(--sp-6);
}

.dc__structure .dc__tape { transform: translateX(-50%) rotate(-2deg); }

.dc__structure h3 {
    font-size: var(--fs-md);
    color: var(--black);
    margin-bottom: var(--sp-2);
}

.dc__structure-sub {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--sp-5);
}

.dc__timeline {
    position: relative;
    padding-left: var(--sp-6);
}

.dc__timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--mustard);
}

.dc__timeline-item {
    position: relative;
    padding-bottom: var(--sp-5);
}

.dc__timeline-item:last-child { padding-bottom: 0; }

.dc__timeline-item::before {
    content: "";
    position: absolute;
    left: calc(-1 * var(--sp-6) - 4px);
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--mustard);
    border: 2px solid var(--white);
}

.dc__timeline-time {
    display: inline-block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--mustard-deep);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--sp-1);
}

.dc__timeline-content h4 {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--sp-1);
}

.dc__timeline-content p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Description card --- */
.dc__desc-card {
    position: relative;
    background: var(--white);
    padding: var(--sp-6);
    box-shadow: 2px 3px 10px rgba(0,0,0,0.15);
    transform: rotate(0.3deg);
}

.dc__desc-card .dc__tape { transform: translateX(-50%) rotate(-2deg); }

.dc__desc-card h3 {
    font-size: var(--fs-md);
    color: var(--black);
    margin-bottom: var(--sp-3);
}

.dc__desc-card p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-4);
}

.dc__desc-card p:last-child { margin-bottom: 0; }

.dc__desc-card a {
    color: var(--mustard-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.dc__desc-card a:hover { color: var(--black); }

/* --- Form card (right column) --- */
.dc__right {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

.dc__form-card {
    position: relative;
    background: var(--white);
    padding: var(--sp-7) var(--sp-6);
    box-shadow: 3px 5px 18px rgba(0,0,0,0.2);
    scroll-margin-top: var(--sp-9);
}

.dc__form-title-postit {
    position: relative;
    background: var(--mustard-bright);
    padding: var(--sp-3) var(--sp-5);
    margin-bottom: var(--sp-4);
    box-shadow: 2px 3px 8px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    display: inline-block;
}

.dc__form-title-postit .dc__tape {
    top: -6px;
    width: 48px;
    height: 14px;
    transform: translateX(-50%) rotate(2deg);
}

.dc__form-title-postit h3 {
    font-size: var(--fs-lg);
    color: var(--black);
    margin: 0;
    font-weight: 700;
}

.dc__form-sub {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-6);
}

.dc__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.dc__field { margin-bottom: var(--sp-4); }

.dc__field label {
    display: block;
    font-family: var(--font-display);
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--sp-2);
}

.dc__field .req { color: var(--red); }

.dc__field input,
.dc__field select,
.dc__field textarea {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--text);
    background: var(--ink);
    border: 1px solid var(--line);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.dc__field input:focus,
.dc__field select:focus,
.dc__field textarea:focus {
    border-color: var(--mustard);
    box-shadow: 0 0 0 3px rgba(43, 181, 160, 0.15);
}

.dc__field input::placeholder,
.dc__field textarea::placeholder { color: var(--text-faint); }

.dc__field textarea { resize: vertical; min-height: 80px; }

.dc__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.dc__submit {
    width: 100%;
    padding: var(--sp-4) var(--sp-6);
    background: var(--black);
    color: var(--white);
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 2px solid var(--black);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    transition: background var(--transition), color var(--transition);
}

.dc__submit:hover {
    background: transparent;
    color: var(--black);
}

/* --- Why choose / benefits card --- */
.dc__benefits-card {
    position: relative;
    background: var(--white);
    padding: var(--sp-6);
    box-shadow: 2px 3px 10px rgba(0,0,0,0.15);
}

.dc__benefits-card .dc__tape { transform: translateX(-50%) rotate(1deg); }

.dc__benefits-card h3 {
    font-size: var(--fs-md);
    color: var(--black);
    margin-bottom: var(--sp-5);
}

.dc__benefit {
    display: flex;
    gap: var(--sp-4);
    padding: var(--sp-4) 0;
    border-bottom: 1px solid var(--line);
}

.dc__benefit:last-child { border-bottom: none; }

.dc__benefit > i {
    font-size: 1.2rem;
    color: var(--mustard-deep);
    margin-top: 2px;
    flex-shrink: 0;
}

.dc__benefit h4 {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--black);
    margin-bottom: var(--sp-1);
}

.dc__benefit p {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   JOURNEY TIMELINE — graph-paper notebook style
   -------------------------------------------------------------------------- */
.dc-journey {
    background: var(--ink);
}

.dc-journey__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-6);
}

/* --- Graph paper card --- */
.dc-journey__stage {
    position: relative;
    background: #fff;
    background-image:
        linear-gradient(rgba(80, 130, 200, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(80, 130, 200, 0.12) 1px, transparent 1px);
    background-size: 18px 18px;
    padding: var(--sp-6) var(--sp-6) var(--sp-6) calc(var(--sp-6) + 12px);
    box-shadow: 3px 5px 14px rgba(0,0,0,0.12);
    border-left: 3px solid rgba(200, 60, 60, 0.3);
}

.dc-journey__stage:nth-child(1) { transform: rotate(-0.6deg); }
.dc-journey__stage:nth-child(2) { transform: rotate(0.4deg); }
.dc-journey__stage:nth-child(3) { transform: rotate(-0.3deg); }
.dc-journey__stage:nth-child(4) { transform: rotate(0.5deg); }

/* --- Circled time marker (hand-drawn ring) --- */
.dc-journey__marker {
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    font-weight: 700;
    color: #c0392b;
    background: none;
    padding: var(--sp-1) var(--sp-3);
    border: 2px solid #c0392b;
    border-radius: 60% 40% 50% 45% / 50% 55% 45% 50%;
    margin-bottom: var(--sp-3);
    letter-spacing: 0;
    text-transform: none;
}

/* --- Pen headings --- */
.dc-journey__stage h3 {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: var(--sp-3);
    text-decoration: underline;
    text-decoration-color: rgba(26, 60, 122, 0.3);
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    text-decoration-style: wavy;
}

.dc-journey__content h4 {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.15rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #1a3c7a;
    margin-bottom: var(--sp-2);
    margin-top: var(--sp-4);
}

.dc-journey__content h4:first-child { margin-top: 0; }

/* --- Pen body text --- */
.dc-journey__content p {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 500;
    color: #2a2a2a;
    line-height: 1.6;
}

/* --- Doodle annotations (pseudo-elements) --- */
.dc-journey__stage:nth-child(1)::after {
    content: "→";
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    color: rgba(192, 57, 43, 0.4);
    transform: rotate(-10deg);
}

.dc-journey__stage:nth-child(2)::after {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: rgba(26, 60, 122, 0.3);
    transform: rotate(8deg);
}

.dc-journey__stage:nth-child(3)::after {
    content: "★";
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 1.2rem;
    color: rgba(192, 57, 43, 0.3);
    transform: rotate(-5deg);
}

.dc-journey__stage:nth-child(4)::after {
    content: "!";
    position: absolute;
    top: 14px;
    right: 16px;
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(192, 57, 43, 0.4);
    transform: rotate(12deg);
}

/* --- Scribble connector lines between cards --- */
.dc-journey__stage:nth-child(2)::before,
.dc-journey__stage:nth-child(3)::before,
.dc-journey__stage:nth-child(4)::before {
    content: "~";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: rgba(26, 60, 122, 0.25);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.dc-faq {
    background: var(--surface);
}

.dc-faq__wrap {
    position: relative;
    max-width: 800px;
}

.dc-faq__doodle {
    position: absolute;
    width: 50px;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
}

.dc-faq__doodle--star   { top: -10px; right: -60px; }
.dc-faq__doodle--spiral { bottom: 40px; right: -50px; }
.dc-faq__doodle--arrow  { top: 50%; left: -80px; width: 70px; }

.dc-faq__item {
    border-bottom: 1px solid var(--line);
}

.dc-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) 0;
    cursor: pointer;
    list-style: none;
    gap: var(--sp-4);
}

.dc-faq__item summary::-webkit-details-marker { display: none; }

.dc-faq__q {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
}

.dc-faq__toggle {
    font-size: 1.5rem;
    color: var(--text-faint);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.dc-faq__item[open] .dc-faq__toggle {
    transform: rotate(45deg);
}

.dc-faq__item p {
    padding: 0 var(--sp-3) var(--sp-5);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 60ch;
    position: relative;
    padding-left: var(--sp-6);
}

.dc-faq__item p::before {
    content: "";
    position: absolute;
    left: var(--sp-3);
    top: 0;
    bottom: var(--sp-5);
    width: 2px;
    background: rgba(26, 60, 122, 0.15);
}

.dc-faq__item p a {
    color: var(--mustard-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dc-faq__item p a:hover { color: var(--black); }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.dc-cta {
    background: var(--mustard-bright);
    padding: var(--sp-8) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dc-cta::before {
    content: '踊';
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-12deg);
    font-family: 'Yuji Boku', serif;
    font-size: clamp(6rem, 12vw, 10rem);
    color: rgba(0,0,0,0.04);
    pointer-events: none;
}

.dc-cta::after {
    content: '舞';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(8deg);
    font-family: 'Yuji Boku', serif;
    font-size: clamp(6rem, 12vw, 10rem);
    color: rgba(0,0,0,0.04);
    pointer-events: none;
}

.dc-cta__content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.dc-cta__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--black);
    line-height: 1.2;
    margin-bottom: var(--sp-3);
}

.dc-cta__title span { display: inline; }

.dc-cta__sub {
    color: rgba(27, 27, 27, 0.6);
    font-size: var(--fs-sm);
    margin-bottom: var(--sp-5);
}

.dc-cta__link {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-sm);
    padding: var(--sp-4) var(--sp-6);
    box-shadow: 2px 3px 8px rgba(0,0,0,0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.dc-cta__link:hover {
    transform: translateY(-3px);
    box-shadow: 3px 6px 16px rgba(0,0,0,0.4);
}

.dc-cta__link .arrow {
    transition: transform var(--transition);
}

.dc-cta__link:hover .arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .dc__layout {
        grid-template-columns: 1fr;
    }

    .dc__form-card {
        position: static;
    }

    .dc-journey__stage:nth-child(2)::before,
    .dc-journey__stage:nth-child(3)::before,
    .dc-journey__stage:nth-child(4)::before {
        display: none;
    }
}

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

    .dc__board { padding: var(--sp-6) 0; }

    .dc__cork {
        grid-template-columns: 1fr;
        padding: var(--sp-5);
        border-width: 5px;
    }

    .dc__polaroid { transform: rotate(0); }
    .dc__title-postit { transform: rotate(0); }

    .dc__form-row { grid-template-columns: 1fr; }

    .dc-faq__doodle { display: none; }
    .dc-faq__q { font-size: 1.1rem; }

    .dc-journey__grid {
        grid-template-columns: 1fr;
    }

    .dc-journey__stage {
        transform: rotate(0) !important;
    }
}

@media (max-width: 480px) {
    .class-hero__note {
        width: 100%;
        text-align: center;
    }

    .dc__form-card {
        padding: var(--sp-5) var(--sp-4);
    }
}
