@font-face {
    font-family: 'Fraunces';
    src:url('{{ asset(' fonts/fraunces-400.woff2') }}') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src:url('{{ asset(' fonts/fraunces-500.woff2') }}') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src:url('{{ asset(' fonts/fraunces-600.woff2') }}') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src:url('{{ asset(' fonts/fraunces-700.woff2') }}') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Fraunces';
    src:url('{{ asset(' fonts/fraunces-900.woff2') }}') format('woff2');
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src:url('{{ asset(' fonts/inter-400.woff2') }}') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src:url('{{ asset(' fonts/inter-500.woff2') }}') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src:url('{{ asset(' fonts/inter-600.woff2') }}') format('woff2');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src:url('{{ asset(' fonts/inter-700.woff2') }}') format('woff2');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src:url('{{ asset(' fonts/inter-800.woff2') }}') format('woff2');
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: 'Plex Mono';
    src:url('{{ asset(' fonts/plexmono-400.woff2') }}') format('woff2');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Plex Mono';
    src:url('{{ asset(' fonts/plexmono-500.woff2') }}') format('woff2');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Plex Mono';
    src:url('{{ asset(' fonts/plexmono-600.woff2') }}') format('woff2');
    font-weight: 600;
    font-display: swap;
}

:root {
    --chalk: #F7F4EE;
    --paper: #FCFAF6;
    --ink: #1E332C;
    --pine: #2A5347;
    --sage: #3E7C68;
    --sage-light: #DCEBE3;
    --sand: #ECE3D2;
    --coral: #FF6B45;
    --coral-dark: #E2532F;
    --line: rgba(30, 51, 44, 0.14);
    --mono: 'Plex Mono', monospace;
    --serif: 'Fraunces', serif;
    --sans: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background: var(--chalk);
    color: var(--ink);
    font-family: var(--sans);
    width: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.stitch {
    width: 100%;
    height: 1px;
    position: relative;
    background-image: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 20px);
}

.tick {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}

.tick svg {
    width: 10px;
    height: 10px;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--sage);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-weight: 500;
}

.eyebrow::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--sage);
    display: block;
}

.eyebrow.center {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    padding: 14px 26px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

.btn-coral {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 10px 24px -10px rgba(255, 107, 69, .65);
}

.btn-ink {
    background: var(--ink);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}

.btn-line-w {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .55);
}

/* ================= TOP BAR + HEADER (shared) ================= */
.topbar {
    background: var(--ink);
    color: rgba(255, 255, 255, .72);
    font-family: var(--mono);
    font-size: 12.5px;
}

.topbar .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 42px;
    letter-spacing: .02em;
}

.topbar .segs {
    display: flex;
    gap: 28px;
}

.topbar .segs span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
}

.topbar a {
    color: #fff;
}

header.site {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    position: relative;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo .mark {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo .word {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.01em;
    line-height: 1;
}

.logo .word span {
    color: var(--sage);
}

.logo .tag {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: .55;
    margin-top: 3px;
}

nav.main {
    display: flex;
    gap: 40px;
}

nav.main a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
}

nav.main a.active {
    color: var(--sage);
}

nav.main a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--coral);
    border-radius: 2px;
}

/* ================= PAGE HERO ================= */
.page-hero {
    padding: 90px 0 60px;
    background: var(--paper);
    text-align: center;
}

.page-hero .eyebrow {
    margin-bottom: 22px;
}

.page-hero h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 52px;
    letter-spacing: -.015em;
    max-width: 720px;
    margin: 0 auto 22px;
}

.page-hero p {
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(30, 51, 44, .68);
    max-width: 600px;
    margin: 0 auto;
}

/* ================= ABOUT FEATURE ================= */
.about-feature {
    padding: 64px 0 110px;
    background: var(--paper);
}

.feature-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 64px;
    align-items: center;
    background: var(--sand);
    border-radius: 28px;
    padding: 0;
    overflow: hidden;
}

.feature-visual {
    position: relative;
    align-self: stretch;
    min-height: 480px;
}

.feature-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.feature-copy {
    padding: 56px 56px 56px 0;
}

.feature-copy h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin-bottom: 20px;
    max-width: 460px;
}

.feature-copy p {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(30, 51, 44, .68);
    margin-bottom: 16px;
    max-width: 480px;
}

.stat-chip-row {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.stat-chip {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 20px;
}

.stat-chip b {
    display: block;
    font-family: var(--mono);
    font-size: 22px;
    color: var(--pine);
}

.stat-chip span {
    font-size: 11px;
    color: rgba(30, 51, 44, .6);
}

/* ================= MISSION / VISION ================= */
.mission-vision {
    padding: 0 0 100px;
    background: var(--paper);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    background: var(--chalk);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 44px 40px;
}

.mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mv-icon svg {
    width: 26px;
    height: 26px;
    color: var(--pine);
}

.mv-card h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 23px;
    margin-bottom: 14px;
}

.mv-card p {
    font-size: 14.5px;
    line-height: 1.75;
    color: rgba(30, 51, 44, .68);
    margin-bottom: 22px;
}

.mv-link {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--sage);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mv-link svg {
    width: 12px;
    height: 12px;
}

/* ================= CTA BANNER (shared) ================= */
.cta-banner {
    background: var(--pine);
    position: relative;
    overflow: hidden;
}

.cta-banner .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 44px 40px;
    position: relative;
    z-index: 2;
}

.cta-banner h3 {
    font-family: var(--serif);
    font-size: 27px;
    color: #fff;
    font-weight: 600;
}

.cta-banner h3 b {
    color: var(--coral);
    font-weight: 600;
    font-style: italic;
}

.cta-banner .stitch-row {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 10px, transparent 10px 22px);
}

/* ================= VALUES ================= */
.values {
    padding: 110px 0 100px;
    background: var(--chalk);
}

.section-head-c {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
}

.section-head-c h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 38px;
    letter-spacing: -.01em;
    margin-bottom: 16px;
}

.section-head-c p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(30, 51, 44, .65);
}

.values-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.values-visual {
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    aspect-ratio: .95/1;
}

.values-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: flex;
    gap: 18px;
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon svg {
    width: 22px;
    height: 22px;
    color: var(--sage);
}

.value-item h4 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
}

.value-item p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(30, 51, 44, .65);
}

/* ================= STORY ================= */
.story {
    padding: 100px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.story .wrap {
    max-width: 760px;
    text-align: center;
}

.story h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: var(--pine);
    margin-bottom: 26px;
}

.story p {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(30, 51, 44, .68);
    margin-bottom: 16px;
}

/* ================= GUARANTEE BANNER ================= */
.guarantee {
    padding: 110px 0;
    background: var(--chalk);
}

.guarantee-panel {
    background: var(--pine);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    position: relative;
}

.guarantee-visual {
    position: relative;
    background: linear-gradient(165deg, #3E7C68, #1E332C);
    min-height: 380px;
}

.guarantee-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.guarantee-copy {
    padding: 56px 60px 56px 20px;
}

.guarantee-copy h2 {
    font-family: var(--serif);
    color: #fff;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
}

.guarantee-copy p {
    color: rgba(255, 255, 255, .75);
    font-size: 14.5px;
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 520px;
}

/* ================= WHY CHOOSE US ================= */
.why-choose {
    padding: 110px 0 120px;
    background: var(--paper);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}

.wc-card {
    background: var(--chalk);
    padding: 40px 34px;
}

.wc-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.wc-icon svg {
    width: 24px;
    height: 24px;
    color: var(--pine);
}

.wc-card h4 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 18.5px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.wc-card p {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(30, 51, 44, .65);
}

/* ================= FOOTER (shared) ================= */
footer.site {
    background: var(--ink);
    color: rgba(255, 255, 255, .68);
    padding-top: 90px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand .logo .word {
    color: #fff;
}

.footer-brand .logo .tag {
    color: rgba(255, 255, 255, .5);
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    margin: 20px 0 24px;
    max-width: 280px;
    color: rgba(255, 255, 255, .55);
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-row svg {
    width: 15px;
    height: 15px;
}

.fcol h6 {
    font-family: var(--mono);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    margin-bottom: 22px;
}

.fcol li {
    margin-bottom: 13px;
    font-size: 13.5px;
}

.fcol.contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fcol.contact svg {
    width: 15px;
    height: 15px;
    color: var(--coral);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
    margin-left: 22px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
    .page-hero h1 {
        font-size: 44px;
    }

    .feature-grid,
    .values-grid,
    .guarantee-panel {
        gap: 0;
    }

    .feature-copy {
        padding: 44px 36px 44px 28px;
    }

    .guarantee-copy {
        padding: 44px 36px 44px 28px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .wrap {
        padding: 0 24px;
    }

    .page-hero {
        padding: 56px 0 36px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .about-feature {
        padding: 24px 0 72px;
    }

    .feature-grid,
    .mv-grid,
    .values-grid,
    .guarantee-panel {
        grid-template-columns: 1fr;
    }

    .feature-visual {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .feature-copy {
        padding: 32px 28px 36px;
    }

    .feature-copy h2 {
        font-size: 28px;
        max-width: none;
    }

    .stat-chip-row {
        flex-wrap: wrap;
    }

    .stat-chip {
        flex: 1 1 140px;
    }

    .mission-vision {
        padding-bottom: 72px;
    }

    .mv-card {
        padding: 32px 28px;
    }

    .cta-banner .wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
        padding: 36px 28px;
        text-align: left;
    }

    .cta-banner h3 {
        font-size: 24px;
    }

    .values,
    .guarantee,
    .story,
    .why-choose {
        padding: 72px 0;
    }

    .section-head-c {
        margin-bottom: 36px;
    }

    .section-head-c h2 {
        font-size: 32px;
    }

    .values-visual {
        aspect-ratio: 4 / 3;
        max-height: 420px;
    }

    .guarantee-visual {
        min-height: 280px;
        aspect-ratio: 16 / 10;
    }

    .guarantee-copy {
        padding: 32px 28px 36px;
    }

    .guarantee-copy h2 {
        font-size: 28px;
    }

    .story h2 {
        font-size: 26px;
    }
}

@media (max-width: 620px) {
    .wrap {
        padding: 0 18px;
    }

    .page-hero {
        padding: 40px 0 28px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .about-feature {
        padding-bottom: 56px;
    }

    .feature-grid,
    .guarantee-panel {
        border-radius: 20px;
    }

    .feature-visual {
        aspect-ratio: 5 / 4;
    }

    .feature-copy {
        padding: 26px 20px 28px;
    }

    .feature-copy h2 {
        font-size: 24px;
    }

    .stat-chip-row {
        gap: 10px;
    }

    .stat-chip {
        padding: 12px 14px;
    }

    .mv-card {
        padding: 26px 22px;
    }

    .cta-banner .wrap {
        padding: 28px 8px;
    }

    .cta-banner h3 {
        font-size: 22px;
    }

    .cta-banner .btn {
        width: 100%;
        justify-content: center;
        white-space: normal;
    }

    .values,
    .guarantee,
    .story,
    .why-choose {
        padding: 56px 0;
    }

    .section-head-c h2 {
        font-size: 28px;
    }

    .values-visual,
    .guarantee-visual {
        aspect-ratio: 5 / 4;
        max-height: none;
        min-height: 0;
    }

    .guarantee-copy {
        padding: 26px 22px 30px;
    }

    .guarantee-copy h2 {
        font-size: 24px;
    }

    .story .wrap {
        padding: 0 18px;
    }

    .story h2 {
        font-size: 22px;
    }

    .why-choose {
        padding-bottom: 72px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .wc-card {
        padding: 28px 22px;
    }
}
