:root {
    --color-bg: #ffffff;
    --color-text: #333333;
    --color-accent-blue: #1540b0;
    --color-accent-red: #cc0000;
    --font-heading: 'Inter', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-family: var(--font-heading);
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    box-shadow: none;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-list {
    display: flex;
    gap: 20px;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.lang-switch {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.lang-item.active {
    font-weight: bold;
    text-decoration: underline;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
}

.hero-left,
.hero-right {
    width: 50%;
    position: relative;
    height: 100%;
}

.hero-left {
    overflow: hidden;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-svg-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-svg {
    width: 90%;
    height: auto;
    max-height: 80%;
}

/* Remove old hero-title styles if no longer used, or keep for fallback */
/* .hero-title { ... } */

.hero-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Profile (Vertical Layout: Text Top + Marquee Bottom) */
.profile-section {
    background-color: #fafafa;
    padding: 100px 0 0;
    overflow: hidden;
}

.profile-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.left-content {
    width: 100%;
    max-width: 720px;
    position: static;
    padding-right: 0;
    max-height: none;
    overflow-y: visible;
}

.left-content::-webkit-scrollbar {
    display: none;
}

.sticky-wrapper {
    padding-bottom: 40px;
}

.profile-subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-accent-blue);
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: 0.05em;
}

.profile-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 2;
    color: #444;
    font-family: var(--font-body);
    font-weight: 300;
}

.profile-text h4 {
    font-size: 1.1rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-family: var(--font-serif);
    font-weight: 400;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    letter-spacing: 0.05em;
}

.history-list li,
.current-list li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.history-list li strong {
    color: #222;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 8px;
    letter-spacing: 0.02em;
    display: inline-block;
    background: linear-gradient(135deg, #0077cc15, #0077cc08);
    padding: 2px 8px;
    border-radius: 3px;
    border-left: 2px solid var(--color-accent-blue);
}

.profile-message {
    margin-top: 50px;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-style: italic;
    color: #222;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 30px;
    letter-spacing: 0.02em;
}

/* Marquee Infinite Loop Slider */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 60s linear infinite;
    width: max-content;
    will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 280px;
}

.marquee-item img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.marquee-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.media-list h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    font-size: 1.1rem;
}

.media-list ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    position: relative;
    padding-left: 15px;
}

.media-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-accent-blue);
}

/* Work */
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.work-item h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    text-align: center;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.book-intro {
    text-align: center;
}

.book-intro img {
    max-width: 200px;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Appearances */
.media-section {
    background-color: #fff;
    padding: 100px 0;
}

.media-lead {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #888;
    margin-top: -25px;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.media-list-modern {
    max-width: 800px;
    margin: 0 auto;
}

.media-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 20px;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.media-card:first-child {
    border-top: 1px solid #e8e8e8;
}

.media-card::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-blue), #00aaff);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.media-card:hover::after {
    width: 100%;
}

.media-card:hover {
    opacity: 1;
    padding-left: 30px;
    background-color: #fafbfd;
}

.media-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    color: #c0c8d0;
    min-width: 40px;
    letter-spacing: 0.05em;
    transition: color 0.4s ease;
}

.media-card:hover .media-number {
    color: var(--color-accent-blue);
}

.media-name {
    flex: 1;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.media-arrow {
    font-size: 1.1rem;
    color: #ccc;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-shrink: 0;
}

.media-card:hover .media-arrow {
    color: var(--color-accent-blue);
    transform: translateX(5px);
}

/* ============================================
   Farm Haven - 精神リトリート
   ============================================ */

/* Shared Section Styles */
.fh-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.fh-section {
    padding: 150px 0;
}

.fh-section--light {
    background-color: #fff;
}

.fh-section--gray {
    background-color: #f7f8fa;
}

.fh-section--dark {
    background-color: #0E232E;
    color: #e0e8ed;
}

.fh-section-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-accent-blue);
    margin-bottom: 12px;
}

.fh-section-subtitle {
    font-family: var(--font-body);
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    color: #0d0d0d;
}

.fh-section-subtitle--light {
    color: #ffffff;
}

.fh-intro-text {
    max-width: 640px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1rem;
    line-height: 2;
    color: #555;
}

.fh-intro-text--left {
    text-align: left;
    margin: 0 0 40px;
    max-width: none;
}

.fh-body-text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
}

.fh-two-col .fh-body-text {
    max-width: none;
    margin: 0;
}

.fh-body-text p {
    margin-bottom: 16px;
}

.fh-body-text--light {
    color: #c0cdd5;
}

.fh-body-text--light p {
    color: #c0cdd5;
}

.fh-divider {
    width: 60px;
    height: 1px;
    background: #ddd;
    margin: 60px auto;
}

.fh-divider--light {
    background: rgba(255, 255, 255, 0.2);
}

.fh-emphasis {
    font-weight: 500;
    color: #222;
    margin-top: 20px;
    font-size: 1.05rem;
}

.fh-callout {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: #222;
    margin-top: 50px;
    padding: 30px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.03em;
    line-height: 1.8;
}

/* ① Farm Haven Hero */
.fh-hero-section {
    background-color: #0E232E;
    color: #e0e8ed;
    padding: 140px 0 120px;
}

.fh-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Two Column Layout */
.fh-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.fh-two-col--dark {
    margin-top: 20px;
}

.fh-two-col__left,
.fh-two-col__right {
    min-width: 0;
}

/* Highlight text left-aligned variant */
.fh-highlight-text--left {
    text-align: left;
}

/* Stat grid vertical variant (for 2-col right side) */
.fh-stat-grid--vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fh-stat-grid--vertical .fh-stat-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.fh-stat-grid--vertical .fh-stat-number {
    font-size: 2.2rem;
    margin-bottom: 0;
    min-width: auto;
}

.fh-stat-grid--vertical .fh-stat-label {
    font-size: 0.85rem;
}

/* Founder Story side variant */
.fh-founder-story--side {
    text-align: left;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    padding-left: 40px;
    margin: 0;
    max-width: none;
}

.fh-founder-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 30px !important;
}

.fh-hero-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.fh-hero-headline {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 0.04em;
}

.fh-hero-headline strong {
    font-weight: 400;
}

.fh-hero-body {
    font-size: 1rem;
    line-height: 2;
    color: #b0c0ca;
    margin-bottom: 40px;
}

.fh-hero-body p {
    margin-bottom: 16px;
}

.fh-hero-body strong {
    color: #fff;
    font-weight: 500;
}

.fh-hero-infrainvest {
    padding: 40px 30px;
    margin: 0 auto 50px;
    max-width: 600px;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #90a8b8;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fh-hero-infrainvest::before,
.fh-hero-infrainvest::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    font-family: var(--font-serif);
    color: var(--color-accent-blue);
    opacity: 0.3;
    line-height: 1;
}

.fh-hero-infrainvest::before {
    top: 10px;
    left: 20px;
}

.fh-hero-infrainvest::after {
    bottom: -20px;
    right: 20px;
}

.fh-hero-quote strong {
    color: #fff;
    font-style: normal;
}

.fh-hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-fh-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-fh-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    opacity: 1;
    transform: translateY(-2px);
}

/* ② 統計カードグリッド */
.fh-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 720px;
    margin: 0 auto 50px;
}

.fh-stat-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e8edf0;
    border-radius: 20px;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fh-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.fh-stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-accent-blue);
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.fh-stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.05em;
}

/* ③ ❌ グリッド */
.fh-deny-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 640px;
    margin: 0 auto 40px;
}

.fh-deny-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.fh-text-center .fh-deny-grid {
    justify-content: center;
}

.fh-deny-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Bullet lists */
.fh-bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.fh-bullet-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.fh-bullet-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--color-accent-blue);
    font-size: 1.4rem;
    line-height: 1.4;
}

.fh-bullet-list--light li {
    color: #b0c0ca;
}

.fh-bullet-list--light li::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ④ Feature Grid */
.fh-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 20px;
}

.fh-feature-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 32px 28px;
    border: 1px solid #e8edf0;
    border-radius: 20px;
    background: #fafbfc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fh-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.fh-feature-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: #c0c8d0;
    margin-bottom: 16px;
}

.fh-feature-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    flex: 1;
}

/* Dark card variant */
.fh-feature-card--dark {
    background: #0E232E;
    border-color: transparent;
}

.fh-feature-card--dark .fh-feature-num {
    color: rgba(255, 255, 255, 0.2);
}

.fh-feature-card--dark p {
    color: rgba(255, 255, 255, 0.85);
}

.fh-feature-card--dark:hover {
    box-shadow: 0 16px 40px rgba(14, 35, 46, 0.25);
}

/* Circle arrow button */
.fh-arrow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dde0e8;
    color: #888;
    font-size: 1rem;
    margin-top: 24px;
    align-self: flex-end;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.fh-feature-card:hover .fh-arrow-btn {
    background: #edf0f8;
    border-color: #c0c8d8;
    color: var(--color-accent-blue);
}

.fh-feature-card--dark .fh-arrow-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.fh-feature-card--dark:hover .fh-arrow-btn {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Folio-inspired layout */
.fh-folio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.fh-folio-left {
    position: relative;
}

.fh-section-lead {
    font-family: var(--font-body);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.75;
    color: #0d0d0d;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
    text-align: left;
}

.fh-folio-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 2;
    text-align: left;
    margin-bottom: 0;
}

/* Constellation SVG decoration */
.fh-constellation-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-top: 32px;
    display: block;
}

/* Feature grid 2-col for folio layout */
.fh-feature-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 0;
}

/* ⑤ Dark section highlights */
.fh-highlight-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
    margin: 30px 0;
    letter-spacing: 0.03em;
}

.fh-highlight-text strong {
    font-weight: 400;
}

.fh-section--dark .fh-highlight-text {
    color: #fff;
}

.fh-section--dark .fh-highlight-text strong {
    color: #fff;
}

/* Dark section 2-column layout */
.fh-dark-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
    position: relative;
}

.fh-dark-col--left {
    padding-right: 80px;
}

.fh-dark-col--right {
    padding-left: 80px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.fh-section-lead--light {
    color: #ffffff;
}

.fh-dark-reason-list {
    margin: 40px 0 36px;
}

.fh-dark-reason-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    line-height: 1.6;
}

.fh-dark-reason-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.fh-dark-reason-icon {
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    font-size: 1.1rem;
    width: 16px;
    flex-shrink: 0;
}

.fh-dark-closing {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 2.1;
}

/* Founder's Story */
.fh-founder-quote {
    margin-top: 8px;
}

.fh-founder-quote p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 2.2;
    margin-bottom: 20px;
}

.fh-founder-highlight {
    font-family: var(--font-serif);
    font-size: 1.45rem !important;
    color: #ffffff !important;
    font-weight: 400;
    line-height: 1.75 !important;
    margin: 36px 0 !important;
    letter-spacing: 0.02em;
}

/* ⑥ Vision */
.fh-vision-list {
    max-width: 500px;
    margin: 0 auto 40px;
}

.fh-vision-list--center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fh-vision-list--center .fh-vision-item {
    width: 100%;
    justify-content: center;
    border-left: none;
    border-right: none;
}

.fh-vision-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #333;
}

.fh-vision-item:first-child {
    border-top: 1px solid #eee;
}

.fh-vision-check {
    font-size: 1.1rem;
    color: var(--color-accent-blue);
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

/* Support Grid */
.fh-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.fh-support-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e8edf0;
    border-radius: 20px;
    background: #fafbfc;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fh-support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.fh-qr-placeholder {
    display: inline-block;
    margin-top: 20px;
    padding: 40px 60px;
    border: 2px dashed #ccc;
    border-radius: 12px;
    color: #999;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* ⑦ Final CTA */
.fh-cta-section {
    background: linear-gradient(135deg, #0066b3 0%, #0088dd 100%);
    padding: 80px 0;
}

.fh-cta-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fh-cta-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.03em;
}

.fh-cta-message {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.fh-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-fh-cta {
    display: inline-block;
    padding: 14px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent;
}

.btn-fh-cta:hover {
    background-color: #fff;
    color: #0066b3;
    border-color: #fff;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Center utility */
.fh-text-center {
    text-align: center !important;
}

.fh-text-center p,
.fh-text-center ul,
.fh-text-center li {
    text-align: center !important;
}

.fh-highlight-text--center {
    text-align: center !important;
}

.fh-bullet-list--center {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.fh-bullet-list--center li {
    text-align: left !important;
}

/* If the user wants the text INSIDE lists centered too */
.fh-bullet-list--text-center li {
    text-align: center !important;
    padding-left: 0;
}

.fh-bullet-list--text-center li::before {
    display: none;
    /* Hide bullets if text is centered for better look */
}

.fh-mb-large {
    margin-bottom: 60px !important;
}

/* Farm Haven Responsive */
@media (max-width: 768px) {
    .fh-container-wide {
        padding: 0 20px;
    }

    .fh-section {
        padding: 80px 0;
    }

    .fh-folio-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fh-feature-grid--2col {
        grid-template-columns: 1fr;
    }

    .fh-section-lead {
        font-size: 1.6rem;
    }

    .fh-dark-two-col {
        grid-template-columns: 1fr;
    }

    .fh-dark-col--left {
        padding-right: 0;
    }

    .fh-dark-col--right {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 50px;
    }

    .fh-hero-section {
        padding: 100px 0 80px;
    }

    .fh-hero-headline {
        font-size: 1.5rem;
    }

    .fh-two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .fh-intro-text--left {
        text-align: center;
        margin: 0 auto 40px;
    }

    .fh-highlight-text--left {
        text-align: center;
    }

    .fh-stat-grid--vertical .fh-stat-card {
        flex-direction: column;
        text-align: center;
    }

    .fh-stat-grid--vertical .fh-stat-number {
        min-width: auto;
    }

    .fh-founder-story--side {
        border-left: none;
        border-top: 3px solid rgba(255, 255, 255, 0.2);
        padding-left: 0;
        padding-top: 40px;
        text-align: center;
    }

    .fh-stat-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .fh-deny-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fh-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fh-support-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }

    .fh-section-subtitle {
        font-size: 1.3rem;
    }

    .fh-highlight-text {
        font-size: 1.15rem;
    }

    .fh-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .fh-hero-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Form */
.contact-section {
    background-color: #f7f8fa;
    padding: 100px 0;
}

.contact-lead {
    text-align: center;
    font-size: 0.95rem;
    color: #666;
    line-height: 2;
    margin-bottom: 50px;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 0.03em;
}

.required {
    color: #e74c3c;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e4e8;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
    background: #fafbfc;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
    font-size: 0.85rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.08);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.8;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.error-message {
    display: block;
    font-size: 0.78rem;
    color: #e74c3c;
    margin-top: 6px;
    min-height: 18px;
    font-family: var(--font-body);
    letter-spacing: 0.02em;
}

/* Checkbox */
.form-checkbox {
    margin-bottom: 36px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 1.5px solid #d0d4d8;
    border-radius: 5px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-custom.error {
    border-color: #e74c3c;
    background: #fff5f5;
}

.checkbox-text {
    font-size: 0.88rem;
    color: #555;
}

/* Submit Button */
.form-submit {
    text-align: center;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 220px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #0066b3, #0088dd);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 179, 0.3);
}

.btn-contact-submit:active {
    transform: translateY(-1px);
}

.btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loader */
.btn-loader {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success message */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 16px;
}

.form-success p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #eee;
}

/* SNS Links - Stylish Buttons */
.sns-links {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-sns {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: #222;
    border: 1.5px solid #222;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.btn-sns::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #222 0%, #444 100%);
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.btn-sns:hover {
    color: #fff;
    border-color: #222;
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-sns:hover::before {
    left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        height: auto;
        min-height: 50px;
        padding: 10px 0;
    }

    .header-container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
    }

    .logo a {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .nav-list {
        gap: 12px;
    }

    .nav-list a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    .lang-switch {
        font-size: 0.7rem;
    }

    .hero {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        height: 50vh;
    }

    .hero-slider {
        position: relative;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }

    /* Profile Mobile */
    .profile-flex-container {
        flex-direction: column;
        gap: 30px;
    }

    .left-content {
        width: 100%;
        position: static;
    }

    .marquee-item {
        width: 200px;
    }

    .marquee-item img {
        height: 260px;
    }

    .sns-links {
        justify-content: center;
    }

    .btn-sns {
        padding: 10px 22px;
        font-size: 0.75rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}