@charset "UTF-8";

/* =========================================
   Variables & Theme
   ========================================= */
:root {
    --primary-green: #2E8B57;
    /* SeaGreen - Trust & Nature */
    --accent-orange: #F39C12;
    /* Warmth & Friendliness */
    --bg-cream: #FFFAF0;
    /* Soft Background */
    --text-dark: #333333;
    /* Readable Text */
    --text-white: #ffffff;
    --border-radius: 16px;
    /* Soft, friendly corners */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    /* High readability */
    font-size: 18px;
    /* Larger base font for seniors */
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

h1,
h2,
h3 {
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

section {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensure padding on small screens */
}

/* =========================================
   Components
   ========================================= */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-orange);
    color: var(--text-white);
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 4px 6px rgba(243, 156, 18, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

/* =========================================
   Header & Hero
   ========================================= */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('2a4e66b8-273b-47a1-9348-d62d507ab7ee.jpg') center/contain no-repeat;
    height: 80vh;
    /* Mobile height */
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 20px;
    background-color: #f0f0f0;
    /* Fallback color for empty spaces */
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--text-dark);
    max-width: 600px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 1.8rem;
    /* Mobile */
    color: var(--primary-green);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* =========================================
   Greeting (About)
   ========================================= */
.greeting {
    background-color: #fff;
}

.greeting-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.owner-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--bg-cream);
    box-shadow: var(--shadow);
}

.greeting-text {
    max-width: 600px;
}

/* =========================================
   Before / After
   ========================================= */
.works {
    background-color: var(--bg-cream);
}

.works .container {
    max-width: 98%;
    padding: 0 5px;
}

.works-grid {
    display: grid;
    gap: 10px;
    /* Minimal gap */
}

.work-card {
    background: #fff;
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ba-images {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
}

.ba-item {
    flex: 1;
    position: relative;
}

/* Label for Before/After */
.ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
}

.ba-after .ba-label {
    background: var(--accent-orange);
}

.work-desc {
    font-weight: bold;
    text-align: center;
    color: var(--primary-green);
    padding: 10px 5px;
    /* Add padding for text */
}

/* =========================================
   Reasons
   ========================================= */
.reasons {
    background-color: #fff;
}

.reasons-grid {
    display: grid;
    gap: 30px;
}

.reason-card {
    background: var(--bg-cream);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.reason-card:hover {
    border-color: var(--accent-orange);
}

.reason-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

/* =========================================
   Pricing
   ========================================= */
/* =========================================
   Pricing
   ========================================= */
.pricing {
    background-color: #FFFDE7;
    padding: 40px 20px;
    /* Reduced vertical padding */
}

.pricing-card {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    /* Increased width */
    margin: 0 auto;
    /* overflow: hidden; Removed to show badge */
    text-align: center;
    border: 3px solid var(--accent-orange);
    position: relative;
}

.pricing-header {
    background-color: var(--primary-green);
    color: #fff;
    padding: 30px 20px;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff4757;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: rotate(10deg);
    font-size: 1.1rem;
}

.pricing-header h3 {
    color: #fff;
    font-size: 2.2rem;
    /* Increased font size */
    margin-bottom: 10px;
}

.pricing-catch {
    font-size: 1.1rem;
    font-weight: bold;
    color: #FFFAF0;
}

.pricing-body {
    padding: 30px;
}

.price {
    font-size: 3.5rem;
    /* Increased font size */
    font-weight: bold;
    color: #e74c3c;
    /* Red/Orange for emphasis */
    margin-bottom: 20px;
    line-height: 1;
}

.tax {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: normal;
}

.price-list {
    text-align: left;
    display: inline-block;
    font-size: 1.3rem;
    /* Increased font size */
    line-height: 2;
}

.pricing-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
}

/* =========================================
   Contact & Footer
   ========================================= */
.contact {
    background-color: var(--primary-green);
    color: #fff;
    text-align: center;
}

.contact .section-title {
    color: #fff;
}

.contact .section-title::after {
    background-color: #fff;
}

.contact-lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    color: var(--text-dark);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.phone-link {
    display: inline-block;
    background-color: #f9f9f9;
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s;
    width: 100%;
}

.phone-link:hover {
    background-color: var(--primary-green);
    color: #fff;
}

.phone-link:hover .phone-number,
.phone-link:hover .phone-label {
    color: #fff;
}

.phone-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.phone-number {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-green);
    display: block;
    line-height: 1.2;
    margin-top: 5px;
    transition: color 0.3s;
}

.border-line {
    border-top: 6px solid #06C755;
}

.line-qr {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.line-instruction {
    font-size: 0.9rem !important;
    color: #888 !important;
    margin-bottom: 0 !important;
}

@media (min-width: 768px) {
    .contact-methods {
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
    }
}

footer {
    background-color: #1e5a38;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* =========================================
   Responsive Design (Desktop)
   ========================================= */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .greeting-content {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .works-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}