/* =========================================================================
   K-9 Cart LP v2 — "Quiet Trust" Design System
   Color: Deep Green × Ivory × Gold
   Font: Noto Serif JP (headings) + Noto Sans JP (body)
   ========================================================================= */

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

:root {
    --green-deep:   #1B3A2D;
    --green-mid:    #2D5A45;
    --green-light:  #3D7A5F;
    --green-pale:   #E8F0EC;
    --ivory:        #FAF8F2;
    --ivory-dark:   #F0EDE4;
    --gold:         #C9A84C;
    --gold-light:   #E4D18A;
    --gold-dark:    #9E8233;
    --text-primary: #2A2A2A;
    --text-body:    #4A4A4A;
    --text-muted:   #8A8A8A;
    --white:        #FFFFFF;
    --shadow-sm:    0 2px 8px rgba(27, 58, 45, 0.06);
    --shadow-md:    0 8px 30px rgba(27, 58, 45, 0.10);
    --shadow-lg:    0 16px 50px rgba(27, 58, 45, 0.14);
    --radius:       12px;
    --radius-lg:    20px;
    --transition:   all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    --font-serif:   'Noto Serif JP', serif;
    --font-sans:    'Noto Sans JP', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--ivory);
    line-height: 1.9;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* --- Animations --- */
.anim-fade,
.anim-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade.is-visible,
.anim-slide-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.03em;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-deep);
    padding: 18px 42px;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.45);
}

.btn-gold svg {
    flex-shrink: 0;
}

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(250, 248, 242, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.header.scrolled .logo { color: var(--green-deep); }

.logo span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.gnav {
    display: flex;
    gap: 32px;
}

.gnav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    transition: color 0.3s;
    position: relative;
}

.gnav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.gnav a:hover::after { width: 100%; }

.header.scrolled .gnav a { color: var(--text-body); }
.header.scrolled .gnav a:hover { color: var(--green-deep); }

.header-cta {
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--gold);
    color: var(--green-deep);
    padding: 10px 24px;
    border-radius: 40px;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.header.scrolled .hamburger span { background: var(--green-deep); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
    .gnav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--green-deep);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 24px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    }
    .gnav.open { right: 0; }
    .gnav a { color: rgba(255,255,255,0.85) !important; font-size: 1rem; }
    .header-cta { display: none; }
    .hamburger { display: flex; }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(27, 58, 45, 0.15) 0%,
        rgba(27, 58, 45, 0.35) 40%,
        rgba(27, 58, 45, 0.85) 100%
    );
}

.hero-body {
    position: relative;
    padding-bottom: 80px;
    padding-top: 200px;
    color: var(--white);
}

.hero-lead {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.hero-desc {
    font-size: 1rem;
    line-height: 2;
    opacity: 0.9;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-note {
    font-size: 0.8rem;
    opacity: 0.7;
    padding-left: 4px;
}

@media (max-width: 768px) {
    .hero-body { padding-bottom: 50px; padding-top: 150px; }
    .hero-desc br { display: none; }
}

/* =========================================================================
   SECTIONS — Common
   ========================================================================= */
.section {
    padding: 120px 0;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.5;
    margin-bottom: 20px;
}

.section-sub {
    color: var(--text-muted);
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
}

/* =========================================================================
   STORY
   ========================================================================= */
.story {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-eyebrow {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.story-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.7;
    margin-bottom: 28px;
}

.story-body {
    line-height: 2.2;
    color: var(--text-body);
}

.story-body em {
    font-style: normal;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
}

.concerns-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--green-deep);
    margin-bottom: 20px;
}

.concerns-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.concerns-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--ivory);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

.concerns-list li:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.concern-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--green-pale);
    color: var(--green-mid);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.concerns-answer {
    background: var(--green-deep);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
}

.concerns-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.concerns-answer strong {
    color: var(--gold-light);
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================================================
   TIMELINE (Before / After)
   ========================================================================= */
.timeline-section {
    background: var(--ivory);
}

.timeline {
    max-width: 700px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--green-pale) 0%, var(--green-mid) 50%, var(--gold) 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
}

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

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 3px solid var(--green-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.timeline-marker.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 36px;
    height: 36px;
    left: -42px;
}

.timeline-day {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--green-deep);
}

.timeline-marker.active .timeline-day {
    color: var(--white);
}

.timeline-content {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
}

.timeline-content.highlight {
    background: var(--green-deep);
    color: var(--white);
}

.timeline-content h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.timeline-content.highlight h3 {
    color: var(--gold-light);
}

.timeline-content p {
    font-size: 0.9rem;
    line-height: 1.8;
}

/* =========================================================================
   FEATURES
   ========================================================================= */
.features {
    background: var(--white);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    flex: 0 1 calc(33.333% - 22px);
    min-width: 280px;
    padding: 40px 32px;
    border: 1px solid var(--ivory-dark);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-deep), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.feature-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--green-deep);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .feature-card {
        flex: 1 1 100%;
        min-width: auto;
    }
}

/* =========================================================================
   FAQ VIDEO Q&A
   ========================================================================= */
.faq {
    background: var(--ivory);
}

.faq-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.faq-tab-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}

.faq-tab-btn {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 22px;
    border: 2px solid var(--ivory-dark);
    border-radius: 40px;
    background: var(--white);
    color: var(--text-body);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.faq-tab-btn:hover {
    border-color: var(--green-mid);
    color: var(--green-deep);
}

.faq-tab-btn.active {
    background: var(--green-deep);
    color: var(--white);
    border-color: var(--green-deep);
}

.faq-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--green-deep);
}

.faq-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.faq-yt-link {
    text-align: center;
    margin-top: 28px;
}

.btn-text-link {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-mid);
    transition: color 0.3s;
    letter-spacing: 0.03em;
}

.btn-text-link:hover {
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .faq-tab-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
}

/* =========================================================================
   GOOGLE FORM EMBED
   ========================================================================= */
.form-section {
    background: var(--white);
}

.form-embed-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ivory-dark);
}

.form-embed-wrap iframe {
    display: block;
    width: 100%;
    min-height: 1800px;
    border: none;
}

@media (max-width: 768px) {
    .form-embed-wrap iframe {
        min-height: 2000px;
    }
}

/* =========================================================================
   MIDWAY CTA
   ========================================================================= */
.midway-cta {
    background: var(--green-deep);
    padding: 60px 0;
    text-align: center;
}

.midway-cta p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

/* =========================================================================
   VOICES / TESTIMONIALS
   ========================================================================= */
.voices {
    background: var(--ivory);
}

.voices-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.voice-item {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
}

.voice-item.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.voice-item.reverse .voice-photo-wrap {
    order: 2;
}

.voice-item.reverse .voice-body {
    order: 1;
}

.voice-photo-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.voice-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.voice-photo-wrap:hover .voice-photo {
    transform: scale(1.04);
}

.voice-quote {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.8;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    margin-bottom: 20px;
}

.voice-detail {
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--text-body);
    margin-bottom: 16px;
}

.voice-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: baseline;
}

.voice-name {
    font-weight: 700;
    color: var(--green-deep);
}

.voice-info {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .voice-item, .voice-item.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .voice-item.reverse .voice-photo-wrap { order: 0; }
    .voice-item.reverse .voice-body { order: 0; }
    .voice-photo { height: 240px; }
}

/* =========================================================================
   FLOW
   ========================================================================= */
.flow {
    background: var(--white);
}

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 60px;
}

.flow-step {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 0 16px;
}

.flow-step-num {
    width: 48px;
    height: 48px;
    background: var(--green-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.flow-step h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--green-deep);
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.flow-connector {
    width: 40px;
    height: 2px;
    background: var(--green-pale);
    margin-top: 24px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .flow-steps {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .flow-connector {
        width: 2px;
        height: 30px;
    }
    .flow-step { max-width: 100%; }
}

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing {
    background: var(--ivory);
}

.pricing-tables {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--ivory-dark);
}

.pricing-type-label {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    text-align: center;
    padding: 20px 24px 0;
    margin: 0;
}

.pricing-table-wrap {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 24px;
    text-align: center;
    font-size: 0.95rem;
}

.pricing-table thead {
    background: var(--green-deep);
    color: var(--white);
}

.pricing-table thead th {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--ivory-dark);
    transition: background 0.2s;
}

.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--green-pale); }

.pricing-table td:first-child { text-align: left; }
.pricing-table td strong { color: var(--green-deep); font-size: 1rem; }

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* =========================================================================
   CONTACT / FINAL CTA
   ========================================================================= */
.contact {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.6);
}

.contact-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 58, 45, 0.7);
}

.contact-body {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.contact-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 1rem;
    line-height: 2;
    opacity: 0.85;
    margin-bottom: 48px;
}

.contact-methods {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 260px;
}

.contact-card:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold-light);
}

.contact-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

.contact-card-sub {
    font-size: 0.75rem;
    opacity: 0.6;
}

.contact-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: 8px;
}

.contact-reassure {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact { padding: 100px 0; }
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    .contact-card { min-width: auto; width: 100%; max-width: 340px; }
    .contact-desc br { display: none; }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.6);
    padding: 60px 0 30px;
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.75rem;
    margin-top: 4px;
    margin-bottom: 12px;
}

.footer-contact {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
}

.footer-contact p {
    margin: 4px 0;
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer-links a {
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy {
    font-size: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
}

.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-sns a:hover {
    background: var(--gold);
    color: var(--green-deep);
    transform: translateY(-3px);
}
