/* =================================================
   和紙シール・和紙ラベル LP
   ================================================= */

:root {
    --washi-ink: #2d2923;
    --washi-brown: #765d3f;
    --washi-brown-dark: #55412c;
    --washi-gold: #b69754;
    --washi-paper: #f7f3eb;
    --washi-paper-deep: #ebe3d5;
    --washi-green: #526957;
    --washi-border: rgba(85, 65, 44, 0.18);
}

/* Hero
   ------------------------------------------------- */
.washi-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--washi-ink);
    background: #e6e0d4;
}

.washi-hero__image,
.washi-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.washi-hero__image {
    object-fit: cover;
    object-position: 56% center;
}

.washi-hero__shade {
    background: linear-gradient(90deg, rgba(249, 247, 241, 0.82) 0%, rgba(249, 247, 241, 0.68) 34%, rgba(249, 247, 241, 0.34) 52%, rgba(249, 247, 241, 0.06) 73%);
}

.washi-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.washi-hero__eyebrow,
.washi-section-heading__eyebrow,
.washi-bottom-cta__eyebrow {
    font-size: var(--font-sm);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--washi-brown);
    margin-bottom: 1rem;
}

.washi-hero__title {
    max-width: 760px;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(3.6rem, 5.4vw, 6.4rem);
    font-weight: 700;
    line-height: 1.34;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.4);
}

.washi-hero__lead {
    max-width: 700px;
    font-size: var(--font-lg);
    line-height: 1.9;
    margin-bottom: 2.6rem;
}

.washi-hero__actions,
.washi-lot__actions,
.washi-bottom-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.washi-hero .btn--primary,
.washi-lot .btn--primary,
.washi-bottom-cta .btn--primary {
    background: var(--washi-brown-dark);
    border-color: var(--washi-brown-dark);
}

.washi-hero .btn--primary:hover,
.washi-lot .btn--primary:hover,
.washi-bottom-cta .btn--primary:hover {
    background: #3d2f20;
    border-color: #3d2f20;
}

.washi-hero .btn--outline {
    background: rgba(255, 255, 255, 0.72);
    border-color: var(--washi-brown-dark);
    color: var(--washi-brown-dark);
}

.washi-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.4rem;
}

.washi-hero__chips li {
    padding: 0.55rem 1.15rem;
    border: 1px solid rgba(85, 65, 44, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    font-size: var(--font-sm);
    font-weight: 700;
}

.breadcrumb-container {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: var(--space-md) 0;
}

.breadcrumb--dark {
    display: flex;
    justify-content: flex-start;
    margin: 0;
}

.breadcrumb--dark .breadcrumb__item {
    color: var(--color-secondary);
    padding: 0 1.5rem;
    position: relative;
}

.breadcrumb--dark .breadcrumb__item:not(:last-child)::after {
    content: "\203A";
    position: absolute;
    right: 0;
    color: var(--color-secondary);
}

.breadcrumb--dark .breadcrumb__item a {
    color: var(--color-primary);
    text-decoration: none;
}

/* Shared heading
   ------------------------------------------------- */
.washi-section-heading {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.washi-section-heading .section-title,
.washi-printing__intro .section-title,
.washi-intro h2,
.washi-materials h2,
.washi-lot h2,
.washi-bottom-cta h2 {
    font-family: "Noto Serif JP", serif;
    color: var(--washi-ink);
    letter-spacing: 0.02em;
}

.washi-section-heading .section-subtitle {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.9;
}

/* Intro
   ------------------------------------------------- */
.washi-intro {
    padding: var(--space-3xl) 0;
    background: #fff;
}

.washi-intro__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(3rem, 5vw, 5.6rem);
    border: 1px solid var(--washi-border);
    border-radius: 4px;
    background-color: var(--washi-paper);
    background-image: radial-gradient(rgba(93, 74, 53, 0.08) 0.7px, transparent 0.7px);
    background-size: 7px 7px;
    box-shadow: 0 18px 50px rgba(71, 56, 38, 0.08);
}

.washi-intro__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(3rem, 5vw, 6rem);
    align-items: center;
}

.washi-intro__kicker {
    color: var(--washi-brown);
    font-weight: 700;
    margin-bottom: 1rem;
}

.washi-intro h2 {
    font-size: clamp(2.7rem, 4vw, 4.2rem);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.washi-intro__content > p:not(.washi-intro__kicker) {
    font-size: var(--font-lg);
    line-height: 2;
}

.washi-intro-case {
    display: block;
    color: inherit;
    text-decoration: none;
}

.washi-intro-case figure {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(85, 65, 44, 0.16);
    box-shadow: 0 18px 42px rgba(71, 56, 38, 0.13);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.washi-intro-case:hover figure {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(71, 56, 38, 0.17);
}

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

.washi-intro-case figcaption {
    display: grid;
    gap: 0.55rem;
    padding: 1.8rem 2rem 2rem;
}

.washi-intro-case figcaption > span {
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: var(--washi-paper-deep);
    color: var(--washi-brown-dark);
    font-size: var(--font-xs);
    font-weight: 700;
}

.washi-intro-case figcaption > strong {
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-xl);
    line-height: 1.55;
}

.washi-intro-case figcaption > small {
    font-size: var(--font-sm);
    line-height: 1.75;
    color: var(--color-secondary);
}

.washi-intro-case figcaption > em {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.5rem;
    color: var(--washi-brown-dark);
    font-size: var(--font-sm);
    font-style: normal;
    font-weight: 700;
}

.washi-intro__facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 3.4rem;
    border-top: 1px solid var(--washi-border);
    border-bottom: 1px solid var(--washi-border);
}

.washi-intro__facts div {
    padding: 2rem 1rem;
    text-align: center;
}

.washi-intro__facts div + div {
    border-left: 1px solid var(--washi-border);
}

.washi-intro__facts strong,
.washi-intro__facts span {
    display: block;
}

.washi-intro__facts strong {
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-2xl);
    color: var(--washi-brown-dark);
}

.washi-intro__facts span {
    margin-top: 0.4rem;
    font-size: var(--font-sm);
}

/* Examples
   ------------------------------------------------- */
.washi-examples {
    padding: var(--space-3xl) 0;
    background: #f5f2ec;
}

.washi-example-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.washi-example-card {
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    border: 1px solid rgba(85, 65, 44, 0.12);
    box-shadow: 0 12px 32px rgba(55, 43, 30, 0.08);
}

.washi-example-card img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.washi-example-card__body {
    padding: 2rem;
}

.washi-example-card__body > span {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: var(--washi-paper-deep);
    color: var(--washi-brown-dark);
    font-size: var(--font-xs);
    font-weight: 700;
}

.washi-example-card h3 {
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-xl);
    line-height: 1.55;
    margin-bottom: 0.8rem;
}

.washi-example-card p {
    line-height: 1.8;
    color: var(--color-text);
}

.washi-examples__note {
    margin-top: 1.6rem;
    font-size: var(--font-sm);
    color: var(--color-secondary);
}

/* Printing
   ------------------------------------------------- */
.washi-printing {
    padding: var(--space-3xl) 0;
    background: #f1ede5;
    color: var(--washi-ink);
}

.washi-printing__intro {
    max-width: 980px;
    margin-bottom: var(--space-2xl);
}

.washi-printing__intro .section-title {
    color: var(--washi-ink);
    text-align: left;
    max-width: 900px;
    margin-bottom: 1.6rem;
}

.washi-printing__intro > p:last-child {
    max-width: 800px;
    line-height: 1.9;
    color: var(--color-text);
}

.washi-printing .washi-section-heading__eyebrow {
    color: var(--washi-brown);
}

.washi-printing__examples,
.washi-order-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
    margin-bottom: 2.4rem;
}

.washi-printing__examples figure,
.washi-order-visual figure {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--washi-border);
    box-shadow: 0 10px 28px rgba(71, 56, 38, 0.07);
}

.washi-printing__examples img,
.washi-order-visual img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.washi-printing__examples figcaption,
.washi-order-visual figcaption {
    display: grid;
    gap: 0.55rem;
    padding: 1.8rem 2rem 2rem;
}

.washi-printing__examples figcaption strong,
.washi-order-visual figcaption strong {
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-lg);
    line-height: 1.6;
}

.washi-printing__examples figcaption span,
.washi-order-visual figcaption span {
    line-height: 1.8;
    color: var(--color-secondary);
}

.washi-printing__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
}

.washi-print-card {
    position: relative;
    min-height: 230px;
    padding: 3rem;
    border: 1px solid var(--washi-border);
    background: rgba(255, 255, 255, 0.78);
}

.washi-print-card--recommended {
    border-color: rgba(182, 151, 84, 0.58);
    background: #fbf7ec;
}

.washi-print-card--foil {
    background: linear-gradient(135deg, #f6eedc, rgba(255, 255, 255, 0.82));
}

.washi-print-card__number {
    display: block;
    margin-bottom: 1.2rem;
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-3xl);
    color: var(--washi-gold);
}

.washi-print-card__badge {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    padding: 0.35rem 0.8rem;
    background: #d8bd80;
    color: var(--washi-ink);
    font-size: var(--font-xs);
    font-weight: 700;
}

.washi-print-card h3 {
    font-size: var(--font-xl);
    margin-bottom: 1rem;
}

.washi-print-card p {
    line-height: 1.85;
    color: var(--color-text);
}

.washi-print-card a {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    margin-top: 1.4rem;
    color: var(--washi-brown-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Materials
   ------------------------------------------------- */
.washi-materials {
    padding: var(--space-3xl) 0;
    background: #fff;
}

.washi-materials__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
    align-items: center;
    gap: clamp(4rem, 7vw, 8rem);
}

.washi-materials h2,
.washi-lot h2 {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.55;
    margin-bottom: 1.8rem;
}

.washi-materials__content > p:not(.washi-section-heading__eyebrow),
.washi-lot__content > p {
    line-height: 1.95;
}

.washi-check-list {
    display: grid;
    gap: 1rem;
    margin: 2.4rem 0;
}

.washi-check-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.washi-check-list i {
    margin-top: 0.35rem;
    color: var(--washi-green);
}

.washi-materials__visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.4rem;
    padding: 3rem;
    background: var(--washi-paper);
    border: 1px solid var(--washi-border);
    box-shadow: 0 20px 50px rgba(71, 56, 38, 0.1);
    transform: none;
}

.washi-material-slot {
    min-width: 0;
}

.washi-material-slot__placeholder,
.washi-material-slot img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #fff;
}

.washi-material-slot__placeholder {
    border: 1px dashed rgba(85, 65, 44, 0.32);
    display: grid;
    place-content: center;
    gap: 0.65rem;
    text-align: center;
    color: #968774;
}

.washi-material-slot img {
    border: 1px solid var(--washi-border);
}

.washi-material-slot__placeholder i {
    font-size: var(--font-2xl);
}

.washi-material-slot__placeholder span {
    font-size: var(--font-sm);
}

.washi-material-slot figcaption {
    padding-top: 0.8rem;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    color: var(--washi-brown-dark);
}

.washi-materials__visual > p {
    grid-column: 1 / -1;
    text-align: center;
    font-size: var(--font-sm);
    color: var(--washi-brown-dark);
}

/* Water resistance
   ------------------------------------------------- */
.washi-waterproof {
    padding: var(--space-3xl) 0;
    background: #eef2ef;
}

.washi-water-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.washi-water-card {
    padding: 2.8rem;
    border-top: 5px solid #a7967b;
    background: #fff;
    box-shadow: 0 12px 32px rgba(40, 63, 48, 0.07);
}

.washi-water-card--semi {
    border-color: #688075;
}

.washi-water-card--full {
    border-color: #315d65;
}

.washi-water-card__level {
    display: inline-block;
    margin-bottom: 1.2rem;
    color: var(--washi-green);
    font-size: var(--font-sm);
    font-weight: 700;
}

.washi-water-card h3 {
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-2xl);
    margin-bottom: 1.1rem;
}

.washi-water-card > p {
    min-height: 9.2rem;
    line-height: 1.85;
}

.washi-water-card dl {
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(50, 76, 59, 0.14);
}

.washi-water-card dl {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.8rem;
}

.washi-water-card dt,
.washi-water-card dd {
    padding: 0.55rem 0;
}

.washi-water-card dt {
    font-weight: 700;
    color: var(--washi-green);
}

.washi-waterproof__note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.6rem;
    align-items: start;
    margin-top: 2.4rem;
    padding: 2.4rem;
    background: #fff;
    border: 1px solid rgba(49, 93, 101, 0.2);
}

.washi-waterproof__note i {
    font-size: var(--font-2xl);
    color: #315d65;
    padding-top: 0.2rem;
}

.washi-waterproof__note p {
    line-height: 1.9;
}

.washi-waterproof__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2.4rem;
    margin-top: 1.8rem;
}

.washi-waterproof__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--washi-green);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Lot and estimate
   ------------------------------------------------- */
.washi-lot {
    padding: var(--space-3xl) 0;
    background: #fff;
}

.washi-lot__layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(4rem, 7vw, 8rem);
}

.washi-lot__visual {
    overflow: hidden;
    border: 1px solid var(--washi-border);
    background: var(--washi-paper);
}

.washi-lot__visual > img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.washi-lot__visual > p {
    padding: 1.4rem 2rem 0;
    line-height: 1.75;
    color: var(--color-secondary);
}

.washi-lot__numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    padding: 3.4rem 2rem;
    background: var(--washi-paper);
    border: 0;
}

.washi-lot__numbers > div {
    flex: 1;
    text-align: center;
}

.washi-lot__numbers strong,
.washi-lot__numbers span {
    display: block;
}

.washi-lot__numbers strong {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(4.2rem, 5vw, 6.4rem);
    line-height: 1;
    color: var(--washi-brown-dark);
}

.washi-lot__numbers span {
    margin-top: 1rem;
    font-size: var(--font-sm);
}

.washi-lot__numbers > i {
    color: var(--washi-gold);
}

.washi-lot__recommended strong {
    color: var(--washi-green);
}

.washi-lot__price-note {
    margin-top: 1.8rem;
    padding: 1.5rem 1.8rem;
    background: var(--washi-paper);
    border-left: 4px solid var(--washi-gold);
}

.washi-lot__actions {
    margin-top: 2.4rem;
}

/* Order checklist
   ------------------------------------------------- */
.washi-checklist {
    padding: var(--space-3xl) 0;
    background: #f6f4ef;
}

.washi-order-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.washi-order-grid li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    align-items: start;
    padding: 2.4rem;
    background: #fff;
    border: 1px solid rgba(85, 65, 44, 0.1);
}

.washi-order-grid li > span {
    display: grid;
    place-items: center;
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 50%;
    background: var(--washi-brown-dark);
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}

.washi-order-grid h3 {
    font-size: var(--font-lg);
    margin-bottom: 0.6rem;
}

.washi-order-grid p {
    line-height: 1.75;
    color: var(--color-secondary);
}

.washi-order-visual {
    margin-top: 2.4rem;
    margin-bottom: 0;
}

.washi-order-visual img {
    height: 260px;
}

/* Related
   ------------------------------------------------- */
.washi-related {
    padding: var(--space-3xl) 0;
    background: #fff;
}

.washi-related__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.washi-related-card {
    position: relative;
    display: block;
    min-height: 250px;
    padding: 2.4rem 2.4rem 5rem;
    border: 1px solid var(--washi-border);
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.washi-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(85, 65, 44, 0.4);
    box-shadow: 0 16px 38px rgba(55, 43, 30, 0.09);
}

.washi-related-card > span {
    color: var(--washi-brown);
    font-size: var(--font-sm);
    font-weight: 700;
}

.washi-related-card h3 {
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-xl);
    line-height: 1.55;
    margin: 1rem 0;
}

.washi-related-card p {
    line-height: 1.75;
    color: var(--color-secondary);
}

.washi-related-card > i {
    position: absolute;
    left: 2.4rem;
    bottom: 2.2rem;
    color: var(--washi-gold);
}

/* FAQ
   ------------------------------------------------- */
.washi-faq {
    padding: var(--space-3xl) 0;
    background: var(--washi-paper);
}

.washi-faq__items {
    max-width: 980px;
    margin: 0 auto;
    border-top: 1px solid var(--washi-border);
}

.washi-faq__items article {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 3rem;
    padding: 2.6rem 0;
    border-bottom: 1px solid var(--washi-border);
}

.washi-faq__items h3 {
    position: relative;
    padding-left: 3.2rem;
    font-size: var(--font-lg);
    line-height: 1.65;
}

.washi-faq__items h3::before {
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Noto Serif JP", serif;
    font-size: var(--font-2xl);
    color: var(--washi-gold);
}

.washi-faq__items p {
    line-height: 1.9;
}

/* Bottom CTA
   ------------------------------------------------- */
main > section.washi-bottom-cta {
    padding: var(--space-3xl) 0;
    background: #eee7dc;
    background-color: #eee7dc;
    color: var(--washi-ink);
    border-top: 1px solid var(--washi-border);
}

.washi-bottom-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 5rem;
}

.washi-bottom-cta__eyebrow {
    color: var(--washi-brown);
}

.washi-bottom-cta h2 {
    color: var(--washi-ink);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.5;
    margin-bottom: 1.6rem;
}

.washi-bottom-cta p:last-child {
    line-height: 1.9;
    color: var(--color-text);
}

.washi-bottom-cta__actions {
    flex-direction: column;
}

.washi-bottom-cta .btn {
    width: 100%;
    text-align: center;
}

.washi-bottom-cta .btn--primary {
    background: var(--washi-brown-dark);
    border-color: var(--washi-brown-dark);
    color: #fff;
}

.washi-bottom-cta .btn--outline {
    border-color: var(--washi-brown-dark);
    color: var(--washi-brown-dark);
    background: rgba(255, 255, 255, 0.54);
}

/* Tablet
   ------------------------------------------------- */
@media (max-width: 1024px) {
    .washi-hero {
        min-height: 640px;
    }

    .washi-hero__image {
        object-position: 66% center;
    }

    .washi-hero__shade {
        background: linear-gradient(90deg, rgba(249, 247, 241, 0.80) 0%, rgba(249, 247, 241, 0.62) 52%, rgba(249, 247, 241, 0.14) 100%);
    }

    .washi-example-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .washi-materials__layout,
    .washi-lot__layout,
    .washi-bottom-cta__inner {
        grid-template-columns: 1fr;
    }

    .washi-intro__layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
        gap: 3rem;
    }

    .washi-materials__visual {
        max-width: 680px;
        width: 100%;
        margin: 0 auto;
    }

    .washi-water-grid,
    .washi-order-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .washi-water-card > p {
        min-height: auto;
    }

    .washi-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .washi-printing__examples img,
    .washi-order-visual img {
        height: 250px;
    }
}

/* Mobile
   ------------------------------------------------- */
@media (max-width: 767px) {
    .washi-hero {
        min-height: 760px;
        align-items: flex-end;
    }

    .washi-hero__image {
        height: 42%;
        top: auto;
        object-position: center;
    }

    .washi-hero__shade {
        background: linear-gradient(180deg, #f8f5ee 0%, #f8f5ee 56%, rgba(248, 245, 238, 0.68) 68%, rgba(248, 245, 238, 0.08) 100%);
    }

    .washi-hero__content {
        align-self: stretch;
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }

    .washi-hero__title {
        font-size: clamp(3rem, 9.5vw, 4.2rem);
    }

    .washi-hero__title br {
        display: none;
    }

    .washi-hero__lead {
        font-size: var(--font-md);
        line-height: 1.8;
    }

    .washi-hero__actions,
    .washi-lot__actions {
        flex-direction: column;
    }

    .washi-hero__actions .btn,
    .washi-lot__actions .btn {
        width: 100%;
        text-align: center;
    }

    .breadcrumb--dark {
        flex-wrap: wrap;
        row-gap: 0.5rem;
    }

    .washi-intro,
    .washi-examples,
    .washi-printing,
    .washi-materials,
    .washi-waterproof,
    .washi-lot,
    .washi-checklist,
    .washi-related,
    .washi-faq,
    .washi-bottom-cta {
        padding: 6rem 0;
    }

    .washi-intro__inner {
        padding: 2.6rem 2rem;
    }

    .washi-intro__layout {
        grid-template-columns: 1fr;
    }

    .washi-intro__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .washi-intro__facts div + div {
        border-left: 0;
    }

    .washi-intro__facts div:nth-child(even) {
        border-left: 1px solid var(--washi-border);
    }

    .washi-intro__facts div:nth-child(n+3) {
        border-top: 1px solid var(--washi-border);
    }

    .washi-example-grid,
    .washi-printing__grid,
    .washi-printing__examples,
    .washi-order-visual,
    .washi-water-grid,
    .washi-order-grid,
    .washi-related__grid {
        grid-template-columns: 1fr;
    }

    .washi-example-card img {
        height: 230px;
    }

    .washi-print-card {
        padding: 2.4rem 2rem;
    }

    .washi-materials__layout,
    .washi-lot__layout,
    .washi-bottom-cta__inner {
        gap: 3.5rem;
    }

    .washi-materials__visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 2rem;
        transform: none;
    }

    .washi-materials__visual > p {
        grid-column: 1 / -1;
    }

    .washi-water-card,
    .washi-order-grid li {
        padding: 2.2rem 2rem;
    }

    .washi-waterproof__note {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .washi-lot__numbers {
        flex-direction: column;
    }

    .washi-lot__visual > img,
    .washi-printing__examples img,
    .washi-order-visual img {
        height: 220px;
    }

    .washi-lot__numbers > i {
        transform: rotate(90deg);
    }

    .washi-faq__items article {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .washi-bottom-cta__actions {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .washi-hero__chips {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .washi-hero__chips li {
        text-align: center;
    }
}
