/* PAWRIKO – Warm, organic (sage + cream) */
:root {
    --pw-serif: 'Lora', 'Yu Mincho', serif;
    --pw-sans: 'Noto Sans JP', sans-serif;
    --pw-bg: #f5f0e8;
    --pw-bg-alt: #ebe5dc;
    --pw-surface: #fff;
    --pw-text: #3d3730;
    --pw-muted: #6b6359;
    --pw-sage: #5c7c6f;
    --pw-sage-light: #7a9b8d;
    --pw-border: rgba(92, 124, 111, 0.25);
    --pw-radius: 16px;
    --pw-radius-sm: 10px;
    --pw-ease: 0.3s ease;
    --pw-container: min(92vw, 1000px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pw-body { margin: 0; font-family: var(--pw-sans); font-size: 15px; line-height: 1.75; color: var(--pw-text); background: var(--pw-bg); -webkit-font-smoothing: antialiased; }
.pw-main { min-height: 60vh; }

/* Header – light, rounded */
.pw-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(245, 240, 232, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--pw-border); }
.pw-header__inner { max-width: var(--pw-container); margin: 0 auto; padding: 0.85rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.pw-logo { font-family: var(--pw-serif); font-weight: 600; font-size: 1.4rem; color: var(--pw-sage); text-decoration: none; transition: color var(--pw-ease); }
.pw-logo:hover { color: var(--pw-sage-light); }
.pw-nav__list { display: flex; flex-wrap: wrap; align-items: center; gap: 0 1rem; list-style: none; margin: 0; padding: 0; }
.pw-nav__link { font-size: 0.88rem; font-weight: 500; color: var(--pw-muted); text-decoration: none; padding: 0.5rem 0.75rem; border-radius: var(--pw-radius-sm); transition: color var(--pw-ease), background var(--pw-ease); }
.pw-nav__link:hover, .pw-nav__link.active { color: var(--pw-sage); }
.pw-nav__link.pw-cta { background: var(--pw-sage); color: #fff !important; }
.pw-nav__link.pw-cta:hover { background: var(--pw-sage-light); color: #fff !important; }
.pw-nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; padding: 0; border: 1px solid var(--pw-border); border-radius: var(--pw-radius-sm); background: var(--pw-surface); cursor: pointer; }
.pw-nav-toggle span { display: block; height: 2px; background: var(--pw-sage); border-radius: 1px; }
@media (max-width: 768px) {
    .pw-nav-toggle { display: flex; }
    .pw-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--pw-bg-alt); border-bottom: 1px solid var(--pw-border); padding: 1rem 1.5rem; max-height: 0; overflow: hidden; transition: max-height var(--pw-ease); }
    .pw-nav.open { max-height: 320px; }
    .pw-nav__list { flex-direction: column; align-items: flex-start; }
}

/* Hero – centered, soft overlay */
.pw-hero { position: relative; min-height: 75vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pw-hero__bg { position: absolute; inset: 0; }
.pw-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.pw-hero__overlay { position: relative; z-index: 1; width: 100%; min-height: 75vh; display: flex; align-items: center; justify-content: center; background: rgba(92, 124, 111, 0.35); }
.pw-hero__content { text-align: center; padding: 5rem 1.5rem 3rem; max-width: 560px; }
.pw-hero__label { display: inline-block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 0.75rem; }
.pw-hero__title { font-family: var(--pw-serif); font-weight: 600; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.3; color: #fff; margin: 0 0 0.75rem; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.pw-hero__sub { font-size: 0.95rem; color: rgba(255,255,255,0.95); margin: 0 0 1.5rem; line-height: 1.7; }
.pw-btn { display: inline-block; font-size: 0.9rem; font-weight: 500; padding: 0.75rem 1.5rem; border-radius: var(--pw-radius-sm); text-decoration: none; transition: background var(--pw-ease), color var(--pw-ease); border: none; cursor: pointer; }
.pw-btn--primary { background: #fff; color: var(--pw-sage); }
.pw-btn--primary:hover { background: var(--pw-bg); color: var(--pw-text); }
.pw-btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.9); }
.pw-btn--outline:hover { background: rgba(255,255,255,0.2); }
.pw-link { color: var(--pw-sage); font-weight: 500; text-decoration: none; }
.pw-link:hover { color: var(--pw-sage-light); text-decoration: underline; }

/* Sections */
.pw-section { padding: 4rem 0; }
.pw-section--alt { background: var(--pw-bg-alt); }
.pw-container { max-width: var(--pw-container); margin: 0 auto; padding: 0 1.5rem; }
.pw-container--narrow { max-width: min(92vw, 640px); margin: 0 auto; padding: 0 1.5rem; }
.pw-label { display: inline-block; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--pw-sage); margin-bottom: 0.5rem; }
.pw-title { font-family: var(--pw-serif); font-weight: 600; font-size: clamp(1.25rem, 2.2vw, 1.6rem); margin: 0 0 0.75rem; color: var(--pw-text); }
.pw-title--center { text-align: center; }
.pw-sub { color: var(--pw-muted); margin: 0 0 1.5rem; font-size: 0.92rem; }
.pw-sub--center { text-align: center; }

/* Intro – text above, image below (stacked) */
.pw-intro-stack { text-align: center; }
.pw-intro-stack__text { max-width: 580px; margin: 0 auto 2rem; }
.pw-intro-stack__img { border-radius: var(--pw-radius); overflow: hidden; max-width: 720px; margin: 0 auto; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pw-intro-stack__img img { width: 100%; height: auto; max-height: 380px; object-fit: cover; display: block; }

/* Services grid 2x2 – large cards */
.pw-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.pw-service-card { display: block; text-decoration: none; color: inherit; background: var(--pw-surface); border-radius: var(--pw-radius); overflow: hidden; border: 1px solid var(--pw-border); transition: transform var(--pw-ease), box-shadow var(--pw-ease); }
.pw-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.pw-service-card__img { display: block; aspect-ratio: 4/3; overflow: hidden; }
.pw-service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.pw-service-card__title { display: block; padding: 1.25rem; font-family: var(--pw-serif); font-weight: 600; font-size: 1.05rem; color: var(--pw-text); text-align: center; }
@media (max-width: 600px) { .pw-services-grid { grid-template-columns: 1fr; } }

/* Why us – 3 horizontal rounded cards */
.pw-why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem; }
.pw-why-card { background: var(--pw-surface); border-radius: var(--pw-radius); padding: 1.75rem 1.5rem; text-align: center; border: 1px solid var(--pw-border); }
.pw-why-card h3 { font-family: var(--pw-serif); font-size: 1rem; margin: 0 0 0.5rem; color: var(--pw-sage); }
.pw-why-card p { margin: 0; font-size: 0.88rem; color: var(--pw-muted); line-height: 1.65; }
@media (max-width: 768px) { .pw-why-cards { grid-template-columns: 1fr; } }

/* Testimonial – single quote block */
.pw-quote-block { margin: 0; padding: 3rem 1.5rem; text-align: center; background: var(--pw-surface); border-radius: var(--pw-radius); margin: 0 1.5rem; border: 1px solid var(--pw-border); }
.pw-quote-block p { font-family: var(--pw-serif); font-size: 1.15rem; font-style: italic; color: var(--pw-text); margin: 0 0 0.5rem; line-height: 1.7; }
.pw-quote-block cite { font-size: 0.85rem; color: var(--pw-muted); font-style: normal; }

/* Steps – numbered row */
.pw-steps-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem 2rem; margin-top: 1.5rem; }
.pw-step { flex: 1 1 200px; max-width: 240px; text-align: center; }
.pw-step__num { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--pw-sage); color: #fff; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; }
.pw-step strong { display: block; font-size: 0.9rem; margin-bottom: 0.25rem; }
.pw-step span { font-size: 0.82rem; color: var(--pw-muted); }

/* CTA */
.pw-cta-strip { padding: 3rem 1.5rem; text-align: center; background: var(--pw-sage); color: #fff; }
.pw-cta-strip h2 { font-family: var(--pw-serif); font-size: clamp(1.2rem, 2vw, 1.5rem); margin: 0 0 0.5rem; color: #fff; }
.pw-cta-strip p { margin: 0 0 1.25rem; font-size: 0.92rem; opacity: 0.95; }
.pw-cta-strip .pw-btn--outline { border-color: #fff; color: #fff; }
.pw-cta-strip .pw-btn--outline:hover { background: rgba(255,255,255,0.2); }

/* Page hero (inner pages) */
.pw-page-hero { padding: 4rem 0 2.5rem; background: var(--pw-bg-alt); border-radius: 0 0 var(--pw-radius) var(--pw-radius); }
.pw-page-hero__title { font-family: var(--pw-serif); font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 600; margin: 0 0 0.25rem; color: var(--pw-text); }
.pw-page-hero__sub { margin: 0; color: var(--pw-muted); font-size: 0.9rem; }
.pw-breadcrumb { padding: 0.6rem 0; font-size: 0.82rem; color: var(--pw-muted); }
.pw-breadcrumb a { color: var(--pw-sage); text-decoration: none; }
.pw-breadcrumb a:hover { text-decoration: underline; }

/* About – side by side */
.pw-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.pw-about-grid__img { border-radius: var(--pw-radius); overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pw-about-grid__img img { width: 100%; height: auto; max-height: 320px; object-fit: cover; display: block; }
.pw-values-list { list-style: none; margin: 0; padding: 0; }
.pw-values-list li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.75rem 0; border-bottom: 1px solid var(--pw-border); }
.pw-values-list li:last-child { border-bottom: 0; }
.pw-values-list .pw-bullet { color: var(--pw-sage); font-weight: 600; }
@media (max-width: 768px) { .pw-about-grid { grid-template-columns: 1fr; } }

/* Services page – alternating image left/right */
.pw-service-row { display: grid; grid-template-columns: 280px 1fr; gap: 2rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--pw-border); }
.pw-service-row:last-child { border-bottom: 0; }
.pw-service-row--rev { direction: rtl; }
.pw-service-row--rev > * { direction: ltr; }
.pw-service-row__img { border-radius: var(--pw-radius-sm); overflow: hidden; }
.pw-service-row__img img { width: 100%; height: auto; max-height: 220px; object-fit: cover; display: block; }
@media (max-width: 768px) { .pw-service-row, .pw-service-row--rev { grid-template-columns: 1fr; direction: ltr; } }

/* Contact – centered form */
.pw-contact-wrap { max-width: 520px; margin: 0 auto; }
.pw-contact-intro { text-align: center; color: var(--pw-muted); margin-bottom: 2rem; }
.pw-contact-form { background: var(--pw-surface); border-radius: var(--pw-radius); padding: 2rem; border: 1px solid var(--pw-border); }
.pw-contact-form label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--pw-text); margin-bottom: 0.35rem; }
.pw-contact-form input, .pw-contact-form textarea { width: 100%; padding: 0.65rem 0.85rem; border: 1px solid var(--pw-border); border-radius: var(--pw-radius-sm); background: var(--pw-bg); font-family: var(--pw-sans); font-size: 0.9rem; }
.pw-contact-form p { margin: 0 0 1rem; }
.pw-contact-info { margin-top: 2rem; text-align: center; font-size: 0.9rem; color: var(--pw-muted); }
.pw-contact-info a { color: var(--pw-sage); }

/* FAQ – simple grouped list */
.pw-faq-group { margin-bottom: 2rem; }
.pw-faq-group__title { font-family: var(--pw-serif); font-size: 1.05rem; color: var(--pw-sage); margin: 0 0 0.75rem; }
.pw-faq dl { margin: 0; padding: 0; }
.pw-faq dt { font-weight: 600; padding: 0.75rem 0 0.25rem; color: var(--pw-text); font-size: 0.95rem; }
.pw-faq dd { margin: 0 0 0.5rem; padding-bottom: 0.75rem; color: var(--pw-muted); font-size: 0.9rem; line-height: 1.65; border-bottom: 1px solid var(--pw-border); }
.pw-faq dd:last-of-type { border-bottom: 0; }
.pw-faq-cta { text-align: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--pw-border); }

/* Footer */
.pw-footer { background: var(--pw-text); color: rgba(255,255,255,0.9); border-top: 1px solid var(--pw-border); }
.pw-footer__top { padding: 2.5rem 1.5rem 1.5rem; }
.pw-footer__inner { max-width: var(--pw-container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.pw-footer__logo { font-family: var(--pw-serif); font-size: 1.15rem; font-weight: 600; margin: 0 0 0.5rem; }
.pw-footer__logo a { color: var(--pw-sage-light); text-decoration: none; }
.pw-footer__desc { font-size: 0.85rem; margin: 0; line-height: 1.6; opacity: 0.9; }
.pw-footer__heading { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pw-sage-light); margin: 0 0 0.75rem; }
.pw-footer ul { list-style: none; margin: 0; padding: 0; }
.pw-footer ul li { margin-bottom: 0.35rem; }
.pw-footer a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.88rem; }
.pw-footer a:hover { color: var(--pw-sage-light); }
.pw-footer__address { font-size: 0.82rem; line-height: 1.6; margin: 0; }
.pw-footer__legal { border-top: 1px solid rgba(255,255,255,0.12); padding: 1rem 1.5rem; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.pw-footer__legal-inner { max-width: var(--pw-container); margin: 0 auto; }
.pw-footer__copy { padding: 0.75rem 1.5rem; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.6); border-top: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 768px) { .pw-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pw-footer__inner { grid-template-columns: 1fr; } }

.pw-back-top { position: fixed; bottom: 1.25rem; right: 1.25rem; width: 42px; height: 42px; background: var(--pw-sage); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 1.1rem; opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; z-index: 50; }
.pw-back-top.visible { opacity: 1; visibility: visible; }
.pw-back-top:hover { background: var(--pw-sage-light); color: #fff; }
